FurnaceSimulator.csproj 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{FDF5BB48-689B-4B88-BABC-110F3DC07C67}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>FurnaceSimulator</RootNamespace>
  10. <AssemblyName>FurnaceSimulator</AssemblyName>
  11. <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  14. <WarningLevel>4</WarningLevel>
  15. <Deterministic>true</Deterministic>
  16. <TargetFrameworkProfile />
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <PlatformTarget>AnyCPU</PlatformTarget>
  20. <DebugSymbols>true</DebugSymbols>
  21. <DebugType>full</DebugType>
  22. <Optimize>false</Optimize>
  23. <OutputPath>bin\Debug\</OutputPath>
  24. <DefineConstants>DEBUG;TRACE</DefineConstants>
  25. <ErrorReport>prompt</ErrorReport>
  26. <WarningLevel>4</WarningLevel>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <PlatformTarget>AnyCPU</PlatformTarget>
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="log4net, Version=2.0.9.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  39. <HintPath>..\packages\log4net.2.0.10\lib\net45\log4net.dll</HintPath>
  40. </Reference>
  41. <Reference Include="MECF.Framework.Common">
  42. <HintPath>..\..\FrameworkLocal\Output\MECF.Framework\MECF.Framework.Common.dll</HintPath>
  43. </Reference>
  44. <Reference Include="MECF.Framework.UI.Core">
  45. <HintPath>..\..\FrameworkLocal\Output\MECF.Framework\MECF.Framework.UI.Core.dll</HintPath>
  46. </Reference>
  47. <Reference Include="OpenSEMI.ClientBase, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  48. <SpecificVersion>False</SpecificVersion>
  49. <HintPath>..\..\ThirdParty\dlls\OpenSEMI.ClientBase.dll</HintPath>
  50. </Reference>
  51. <Reference Include="OpenSEMI.Ctrlib">
  52. <HintPath>..\..\ThirdParty\dlls\OpenSEMI.Ctrlib.dll</HintPath>
  53. </Reference>
  54. <Reference Include="PresentationFramework.Aero" />
  55. <Reference Include="System" />
  56. <Reference Include="System.Configuration" />
  57. <Reference Include="System.Data" />
  58. <Reference Include="System.ServiceModel" />
  59. <Reference Include="System.Web" />
  60. <Reference Include="System.Xml" />
  61. <Reference Include="Microsoft.CSharp" />
  62. <Reference Include="System.Core" />
  63. <Reference Include="System.Xml.Linq" />
  64. <Reference Include="System.Data.DataSetExtensions" />
  65. <Reference Include="System.Net.Http" />
  66. <Reference Include="System.Xaml">
  67. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  68. </Reference>
  69. <Reference Include="WindowsBase" />
  70. <Reference Include="PresentationCore" />
  71. <Reference Include="PresentationFramework" />
  72. <Reference Include="WPFToolkit">
  73. <HintPath>..\..\ThirdParty\dlls\WPFToolkit.dll</HintPath>
  74. </Reference>
  75. <Reference Include="Xceed.Wpf.Toolkit">
  76. <HintPath>..\..\ThirdParty\dlls\Xceed.Wpf.Toolkit.dll</HintPath>
  77. </Reference>
  78. </ItemGroup>
  79. <ItemGroup>
  80. <ApplicationDefinition Include="App.xaml">
  81. <Generator>MSBuild:Compile</Generator>
  82. <SubType>Designer</SubType>
  83. </ApplicationDefinition>
  84. <Compile Include="App.xaml.cs">
  85. <DependentUpon>App.xaml</DependentUpon>
  86. <SubType>Code</SubType>
  87. </Compile>
  88. <Compile Include="Instances\SimulatorPlcService.cs" />
  89. <Compile Include="Instances\SimulatorPlc.cs" />
  90. <Compile Include="Instances\SimulatorSystem.cs" />
  91. <Compile Include="Instances\UiInstance.cs" />
  92. <Compile Include="Properties\Annotations.cs" />
  93. <Compile Include="Views\PLCView.xaml.cs">
  94. <DependentUpon>PLCView.xaml</DependentUpon>
  95. </Compile>
  96. <Compile Include="Views\LPView.xaml.cs">
  97. <DependentUpon>LPView.xaml</DependentUpon>
  98. </Compile>
  99. <Compile Include="Views\PlcViewModelBase.cs" />
  100. <Compile Include="Views\Converters\CassetteConverter.cs" />
  101. <Compile Include="Views\Converters\IoConvert.cs" />
  102. <Compile Include="Views\SimulatorIOHeaterView.xaml.cs">
  103. <DependentUpon>SimulatorIOHeaterView.xaml</DependentUpon>
  104. </Compile>
  105. <Compile Include="Views\SimulatorPlcInt16IOView.xaml.cs">
  106. <DependentUpon>SimulatorPlcInt16IOView.xaml</DependentUpon>
  107. </Compile>
  108. <Compile Include="Views\SimulatorPMIOView.xaml.cs">
  109. <DependentUpon>SimulatorPMIOView.xaml</DependentUpon>
  110. </Compile>
  111. <Compile Include="Views\SimulatorPlcFloatIOView.xaml.cs">
  112. <DependentUpon>SimulatorPlcFloatIOView.xaml</DependentUpon>
  113. </Compile>
  114. </ItemGroup>
  115. <ItemGroup>
  116. <Compile Include="Properties\AssemblyInfo.cs">
  117. <SubType>Code</SubType>
  118. </Compile>
  119. <Compile Include="Properties\Resources.Designer.cs">
  120. <AutoGen>True</AutoGen>
  121. <DesignTime>True</DesignTime>
  122. <DependentUpon>Resources.resx</DependentUpon>
  123. </Compile>
  124. <Compile Include="Properties\Settings.Designer.cs">
  125. <AutoGen>True</AutoGen>
  126. <DependentUpon>Settings.settings</DependentUpon>
  127. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  128. </Compile>
  129. <EmbeddedResource Include="Properties\Resources.resx">
  130. <Generator>ResXFileCodeGenerator</Generator>
  131. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  132. </EmbeddedResource>
  133. <None Include="packages.config" />
  134. <None Include="Properties\Settings.settings">
  135. <Generator>SettingsSingleFileGenerator</Generator>
  136. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  137. </None>
  138. </ItemGroup>
  139. <ItemGroup>
  140. <None Include="App.config">
  141. <SubType>Designer</SubType>
  142. </None>
  143. </ItemGroup>
  144. <ItemGroup>
  145. <Page Include="Styles\Button.xaml">
  146. <SubType>Designer</SubType>
  147. <Generator>MSBuild:Compile</Generator>
  148. </Page>
  149. <Page Include="Views\PLCView.xaml">
  150. <Generator>MSBuild:Compile</Generator>
  151. <SubType>Designer</SubType>
  152. </Page>
  153. <Page Include="Views\LPView.xaml">
  154. <Generator>MSBuild:Compile</Generator>
  155. <SubType>Designer</SubType>
  156. </Page>
  157. <Page Include="Views\SimulatorIOHeaterView.xaml">
  158. <SubType>Designer</SubType>
  159. <Generator>MSBuild:Compile</Generator>
  160. </Page>
  161. <Page Include="Views\SimulatorPlcInt16IOView.xaml">
  162. <SubType>Designer</SubType>
  163. <Generator>MSBuild:Compile</Generator>
  164. </Page>
  165. <Page Include="Views\SimulatorPMIOView.xaml">
  166. <Generator>MSBuild:Compile</Generator>
  167. <SubType>Designer</SubType>
  168. </Page>
  169. <Page Include="Views\SimulatorPlcFloatIOView.xaml">
  170. <Generator>MSBuild:Compile</Generator>
  171. <SubType>Designer</SubType>
  172. </Page>
  173. </ItemGroup>
  174. <ItemGroup>
  175. <Resource Include="Resources\simulator.ico" />
  176. </ItemGroup>
  177. <ItemGroup>
  178. <ProjectReference Include="..\..\FrameworkLocal\RTCore\RTCore.csproj">
  179. <Project>{f913dfcb-9319-4fe9-98a5-2428cf6744de}</Project>
  180. <Name>RTCore</Name>
  181. </ProjectReference>
  182. <ProjectReference Include="..\..\FrameworkLocal\SimulatorCore\SimulatorCore.csproj">
  183. <Project>{be21b571-0145-447b-88da-61e621d60e0c}</Project>
  184. <Name>SimulatorCore</Name>
  185. </ProjectReference>
  186. <ProjectReference Include="..\FurnaceRT\FurnaceRT.csproj">
  187. <Project>{5eafa05f-c2c0-40b3-9c8f-46d8559148d0}</Project>
  188. <Name>FurnaceRT</Name>
  189. </ProjectReference>
  190. </ItemGroup>
  191. <ItemGroup>
  192. <None Include="Config\UILayout.xml">
  193. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  194. </None>
  195. </ItemGroup>
  196. <ItemGroup>
  197. <None Include="Config\_ioDefinePM.xml">
  198. <SubType>Designer</SubType>
  199. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  200. </None>
  201. </ItemGroup>
  202. <ItemGroup>
  203. <None Include="Config\_ioDefineHeater.xml">
  204. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  205. </None>
  206. </ItemGroup>
  207. <ItemGroup>
  208. <None Include="Config\ELK\_ioDefineGasLine.xml">
  209. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  210. </None>
  211. </ItemGroup>
  212. <ItemGroup />
  213. <ItemGroup>
  214. <None Include="Config\SiBCN\_ioDefinePM.xml">
  215. <SubType>Designer</SubType>
  216. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  217. </None>
  218. </ItemGroup>
  219. <ItemGroup>
  220. <None Include="Config\SiBCN\_ioDefineHeater.xml">
  221. <SubType>Designer</SubType>
  222. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  223. </None>
  224. </ItemGroup>
  225. <ItemGroup>
  226. <None Include="Config\ELK\_ioDefinePM.xml">
  227. <SubType>Designer</SubType>
  228. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  229. </None>
  230. </ItemGroup>
  231. <ItemGroup>
  232. <None Include="Config\ELK\_ioDefineHeater.xml">
  233. <SubType>Designer</SubType>
  234. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  235. </None>
  236. </ItemGroup>
  237. <ItemGroup>
  238. <None Include="Config\NTP\_ioDefinePM.xml">
  239. <SubType>Designer</SubType>
  240. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  241. </None>
  242. </ItemGroup>
  243. <ItemGroup>
  244. <None Include="Config\NTP\_ioDefineHeater.xml">
  245. <SubType>Designer</SubType>
  246. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  247. </None>
  248. </ItemGroup>
  249. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  250. <PropertyGroup>
  251. <PostBuildEvent>if exist "$(ProjectDir)..\FurnaceSetup\Packages\FurnaceSimulator" rd "$(ProjectDir)..\FurnaceSetup\Packages\FurnaceSimulator" /s /q
  252. md "$(ProjectDir)..\FurnaceSetup\Packages\FurnaceSimulator\"
  253. echo 复制文件到安装目录,"$(ProjectDir)..\FurnaceSetup\Packages\FurnaceSimulator\"
  254. xcopy /e "$(TargetDir)*.*" "$(ProjectDir)..\FurnaceSetup\Packages\FurnaceSimulator\" /q</PostBuildEvent>
  255. </PropertyGroup>
  256. </Project>