| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 | <?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>{7C395751-ABE6-4B5B-8F3A-BDA0FCE08F6C}</ProjectGuid>    <OutputType>Library</OutputType>    <AppDesignerFolder>Properties</AppDesignerFolder>    <RootNamespace>MECF.Framework.RT.ModuleLibrary</RootNamespace>    <AssemblyName>MECF.Framework.RT.ModuleLibrary</AssemblyName>    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>    <FileAlignment>512</FileAlignment>    <Deterministic>true</Deterministic>    <TargetFrameworkProfile />  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">    <DebugSymbols>true</DebugSymbols>    <DebugType>full</DebugType>    <Optimize>false</Optimize>    <OutputPath>bin\Debug\</OutputPath>    <DefineConstants>DEBUG;TRACE</DefineConstants>    <ErrorReport>prompt</ErrorReport>    <WarningLevel>4</WarningLevel>  </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>  </PropertyGroup>  <ItemGroup>    <Reference Include="System" />    <Reference Include="System.Core" />    <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" />  </ItemGroup>  <ItemGroup>    <Compile Include="AlignerModules\AlignerModuleBase.cs" />    <Compile Include="BufferModules\BufferModuleBase.cs" />    <Compile Include="Commons\FsmDevice.cs" />    <Compile Include="Commons\ModuleFsmDevice.cs" />    <Compile Include="EfemModules\EfemModuleBase.cs" />    <Compile Include="LLModules\LoadLockModuleBase.cs" />    <Compile Include="LPModules\LoadPortModuleBase.cs" />    <Compile Include="PMModules\PMModuleBase.cs" />    <Compile Include="Properties\AssemblyInfo.cs" />    <Compile Include="SystemModules\EquipmentManager.cs" />    <Compile Include="SystemModules\IAutoTransfer.cs" />    <Compile Include="TMModules\TMModuleBase.cs" />    <Compile Include="VceModules\VceModuleBase.cs" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\..\PunkHPX8_Core\PunkHPX8_Core.csproj">      <Project>{e40639dd-94a7-4ecd-8137-11496bd0bfa3}</Project>      <Name>PunkHPX8_Core</Name>    </ProjectReference>    <ProjectReference Include="..\Common\Common.csproj">      <Project>{9cd2a6be-1971-4e74-b49e-547982f64034}</Project>      <Name>Common</Name>    </ProjectReference>    <ProjectReference Include="..\RTCore\RTCore.csproj">      <Project>{bcbd839a-c9a0-4be7-98ca-b0a88ad38e5a}</Project>      <Name>RTCore</Name>    </ProjectReference>    <ProjectReference Include="..\RTEquipmentLibrary\RTEquipmentLibrary.csproj">      <Project>{090a1e9c-1087-4c8a-b4e0-ff074459e071}</Project>      <Name>RTEquipmentLibrary</Name>    </ProjectReference>  </ItemGroup>  <ItemGroup />  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /></Project>
 |