| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 | <?xml version="1.0" encoding="utf-8"?><Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />  <PropertyGroup>    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>    <ProjectGuid>{BCBD839A-C9A0-4BE7-98CA-B0A88AD38E5A}</ProjectGuid>    <OutputType>Library</OutputType>    <AppDesignerFolder>Properties</AppDesignerFolder>    <RootNamespace>MECF.Framework.RT.Core</RootNamespace>    <AssemblyName>MECF.Framework.RT.Core</AssemblyName>    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>    <FileAlignment>512</FileAlignment>    <TargetFrameworkProfile />    <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">    <DebugSymbols>true</DebugSymbols>    <DebugType>full</DebugType>    <Optimize>false</Optimize>    <OutputPath>..\Output\MECF.Framework\</OutputPath>    <DefineConstants>DEBUG;TRACE</DefineConstants>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>    <NoWarn>CS0168</NoWarn>  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">    <DebugType>pdbonly</DebugType>    <Optimize>true</Optimize>    <OutputPath>bin\Release\</OutputPath>    <DefineConstants>TRACE</DefineConstants>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>  </PropertyGroup>  <ItemGroup>    <Reference Include="log4net">      <HintPath>..\..\ThirdParty\log4net.dll</HintPath>    </Reference>    <Reference Include="PresentationCore" />    <Reference Include="PresentationFramework" />    <Reference Include="System" />    <Reference Include="System.Core" />    <Reference Include="System.Drawing" />    <Reference Include="System.ServiceModel" />    <Reference Include="System.Windows" />    <Reference Include="System.Windows.Forms" />    <Reference Include="System.Xaml" />    <Reference Include="System.Xml.Linq" />    <Reference Include="System.Data.DataSetExtensions" />    <Reference Include="Microsoft.CSharp" />    <Reference Include="System.Data" />    <Reference Include="System.Net.Http" />    <Reference Include="System.Xml" />    <Reference Include="WindowsBase" />  </ItemGroup>  <ItemGroup>    <Compile Include="Applications\IRtInstance.cs" />    <Compile Include="Applications\IRtLoader.cs" />    <Compile Include="Applications\RtApplication.cs" />    <Compile Include="Applications\RtSystemManager.cs" />    <Compile Include="Backend\BackendMainView.xaml.cs">      <DependentUpon>BackendMainView.xaml</DependentUpon>    </Compile>    <Compile Include="Backend\BackendSCConfigView.xaml.cs">      <DependentUpon>BackendSCConfigView.xaml</DependentUpon>    </Compile>    <Compile Include="Backend\PassWordView.xaml.cs">      <DependentUpon>PassWordView.xaml</DependentUpon>    </Compile>    <Compile Include="Equipments\DeviceBase.cs" />    <Compile Include="Equipments\ModuleBase.cs" />    <Compile Include="Equipments\IDeviceAligner.cs" />    <Compile Include="Equipments\IModule.cs" />    <Compile Include="Equipments\IDeviceLoadLock.cs" />    <Compile Include="Equipments\IDeviceLoadPort.cs" />    <Compile Include="Equipments\IDevicePm.cs" />    <Compile Include="Equipments\IDeviceRobot.cs" />    <Compile Include="Equipments\IDeviceTm.cs" />    <Compile Include="IoProviders\Contecs\CdioCs.cs" />    <Compile Include="IoProviders\Contecs\ContecIoCard.cs" />    <Compile Include="IoProviders\Mitsubishis\MCProtocolPlc.cs" />    <Compile Include="IoProviders\Mitsubishis\MCProtocol.cs" />    <Compile Include="IoProviders\Mitsubishis\MCSocket.cs" />    <Compile Include="IoProviders\Mitsubishis\MelsecElement.cs" />    <Compile Include="IoProviders\Mitsubishis\MelsecMCBin.cs" />    <Compile Include="Properties\AssemblyInfo.cs" />  </ItemGroup>  <ItemGroup>    <EmbeddedResource Include="Resources\AitexDefault.ico" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\Common\Common.csproj">      <Project>{9cd2a6be-1971-4e74-b49e-547982f64034}</Project>      <Name>Common</Name>    </ProjectReference>    <ProjectReference Include="..\UICore\UICore.csproj">      <Project>{2c9e1df3-1aba-4972-be60-41dd9b3c47a7}</Project>      <Name>UICore</Name>    </ProjectReference>  </ItemGroup>  <ItemGroup>    <Page Include="Backend\BackendMainView.xaml">      <SubType>Designer</SubType>      <Generator>MSBuild:Compile</Generator>    </Page>    <Page Include="Backend\BackendSCConfigView.xaml">      <Generator>MSBuild:Compile</Generator>      <SubType>Designer</SubType>    </Page>    <Page Include="Backend\PassWordView.xaml">      <SubType>Designer</SubType>      <Generator>MSBuild:Compile</Generator>    </Page>    <Page Include="Resources\LocalResource.xaml">      <SubType>Designer</SubType>      <Generator>MSBuild:Compile</Generator>    </Page>  </ItemGroup>  <ItemGroup>    <Resource Include="Resources\default_rt.ico" />  </ItemGroup>  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /></Project>
 |