EfemDualSimulator.csproj 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  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>{67A83804-9571-43CA-AB0C-FA28396DD12A}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>EfemDualSimulator</RootNamespace>
  10. <AssemblyName>EfemDualSimulator</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. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  16. <Deterministic>true</Deterministic>
  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. <PropertyGroup>
  38. <ApplicationIcon>Resources\MyLogoPurple.ico</ApplicationIcon>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="log4net">
  42. <HintPath>..\..\ThirdParty\dlls\log4net.dll</HintPath>
  43. </Reference>
  44. <Reference Include="System" />
  45. <Reference Include="System.Data" />
  46. <Reference Include="System.Xml" />
  47. <Reference Include="Microsoft.CSharp" />
  48. <Reference Include="System.Core" />
  49. <Reference Include="System.Xml.Linq" />
  50. <Reference Include="System.Data.DataSetExtensions" />
  51. <Reference Include="System.Net.Http" />
  52. <Reference Include="System.Xaml">
  53. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  54. </Reference>
  55. <Reference Include="WindowsBase" />
  56. <Reference Include="PresentationCore" />
  57. <Reference Include="PresentationFramework" />
  58. <Reference Include="WPFToolkit">
  59. <HintPath>..\..\ThirdParty\dlls\WPFToolkit.dll</HintPath>
  60. </Reference>
  61. <Reference Include="WPFToolkit.Extended">
  62. <HintPath>..\..\ThirdParty\dlls\WPFToolkit.Extended.dll</HintPath>
  63. </Reference>
  64. <Reference Include="Xceed.Wpf.Toolkit">
  65. <HintPath>..\..\ThirdParty\dlls\Xceed.Wpf.Toolkit.dll</HintPath>
  66. </Reference>
  67. </ItemGroup>
  68. <ItemGroup>
  69. <ApplicationDefinition Include="App.xaml">
  70. <Generator>MSBuild:Compile</Generator>
  71. <SubType>Designer</SubType>
  72. </ApplicationDefinition>
  73. <Compile Include="Devices\AdTecGeneratorMock.cs" />
  74. <Compile Include="Devices\AdTecGeneratorMockPMA.cs" />
  75. <Compile Include="Devices\AdTecGeneratorMockPMB.cs" />
  76. <Compile Include="Devices\AdTecMatchMock.cs" />
  77. <Compile Include="Devices\AdTecMatchMockPMA.cs" />
  78. <Compile Include="Devices\AdTecMatchMockPMB.cs" />
  79. <Compile Include="Devices\CometRFSocketServer.cs" />
  80. <Compile Include="Devices\EdwardsPumpMockPMA.cs" />
  81. <Compile Include="Devices\EdwardsPumpMockPMB.cs" />
  82. <Compile Include="Devices\EfemSimulator.cs" />
  83. <Compile Include="Devices\MicrowaveGeneratorMockPMA.cs" />
  84. <Compile Include="Devices\SkyPumpMock.cs" />
  85. <Compile Include="Devices\SkyPumpMockPMA.cs" />
  86. <Compile Include="Devices\SkyPumpMockPMB.cs" />
  87. <Compile Include="Devices\SMCChillerMockPMA.cs" />
  88. <Compile Include="Devices\SMCChillerMockPMB.cs" />
  89. <Compile Include="Instances\SimulatorPlcService.cs" />
  90. <Compile Include="Views\Converters\CassetteConverter.cs" />
  91. <Compile Include="Views\Converters\IoConvert.cs" />
  92. <Compile Include="Views\EfemView.xaml.cs">
  93. <DependentUpon>EfemView.xaml</DependentUpon>
  94. </Compile>
  95. <Compile Include="Views\IoButton.cs" />
  96. <Compile Include="Views\IoViewModel.cs" />
  97. <Compile Include="Views\SimuAdTecGeneratorPMAView.xaml.cs">
  98. <DependentUpon>SimuAdTecGeneratorPMAView.xaml</DependentUpon>
  99. </Compile>
  100. <Compile Include="Views\SimuAdTecGeneratorPMBView.xaml.cs">
  101. <DependentUpon>SimuAdTecGeneratorPMBView.xaml</DependentUpon>
  102. </Compile>
  103. <Compile Include="Views\SimuAdTecGeneratorView.xaml.cs">
  104. <DependentUpon>SimuAdTecGeneratorView.xaml</DependentUpon>
  105. </Compile>
  106. <Compile Include="Views\SimuAdTecMatchPMAView.xaml.cs">
  107. <DependentUpon>SimuAdTecMatchPMAView.xaml</DependentUpon>
  108. </Compile>
  109. <Compile Include="Views\SimuAdTecMatchPMBView.xaml.cs">
  110. <DependentUpon>SimuAdTecMatchPMBView.xaml</DependentUpon>
  111. </Compile>
  112. <Compile Include="Views\SimuAdTecMatchView.xaml.cs">
  113. <DependentUpon>SimuAdTecMatchView.xaml</DependentUpon>
  114. </Compile>
  115. <Compile Include="Views\SimuEdwardsPumpPMAView.xaml.cs">
  116. <DependentUpon>SimuEdwardsPumpPMAView.xaml</DependentUpon>
  117. </Compile>
  118. <Compile Include="Views\SimuEdwardsPumpPMBView.xaml.cs">
  119. <DependentUpon>SimuEdwardsPumpPMBView.xaml</DependentUpon>
  120. </Compile>
  121. <Compile Include="Views\SimulatorJelRobot.xaml.cs">
  122. <DependentUpon>SimulatorJelRobot.xaml</DependentUpon>
  123. </Compile>
  124. <Compile Include="Views\SimulatorIo1View.xaml.cs">
  125. <DependentUpon>SimulatorIo1View.xaml</DependentUpon>
  126. </Compile>
  127. <Compile Include="Views\SimulatorIo2View.xaml.cs">
  128. <DependentUpon>SimulatorIo2View.xaml</DependentUpon>
  129. </Compile>
  130. <Compile Include="Views\SimulatorIOPM1View.xaml.cs">
  131. <DependentUpon>SimulatorIOPM1View.xaml</DependentUpon>
  132. </Compile>
  133. <Compile Include="Views\SimulatorIOPM2View.xaml.cs">
  134. <DependentUpon>SimulatorIOPM2View.xaml</DependentUpon>
  135. </Compile>
  136. <Compile Include="App.xaml.cs">
  137. <DependentUpon>App.xaml</DependentUpon>
  138. <SubType>Code</SubType>
  139. </Compile>
  140. <Compile Include="Instances\SimulatorAdsPlcService.cs" />
  141. <Compile Include="Instances\SimulatorModulePlc.cs" />
  142. <Compile Include="Instances\SimulatorSystem.cs" />
  143. <Compile Include="Instances\UiInstance.cs" />
  144. <Compile Include="Views\SimulatorIOSystemView.xaml.cs">
  145. <DependentUpon>SimulatorIOSystemView.xaml</DependentUpon>
  146. </Compile>
  147. <Compile Include="Views\SimuMicrowaveGeneratorPMAView.xaml.cs">
  148. <DependentUpon>SimuMicrowaveGeneratorPMAView.xaml</DependentUpon>
  149. </Compile>
  150. <Compile Include="Views\SimuMicrowaveGeneratorPMBView.xaml.cs">
  151. <DependentUpon>SimuMicrowaveGeneratorPMBView.xaml</DependentUpon>
  152. </Compile>
  153. <Compile Include="Views\SimuSkyPumpPMAView.xaml.cs">
  154. <DependentUpon>SimuSkyPumpPMAView.xaml</DependentUpon>
  155. </Compile>
  156. <Compile Include="Views\SimuSkyPumpPMBView.xaml.cs">
  157. <DependentUpon>SimuSkyPumpPMBView.xaml</DependentUpon>
  158. </Compile>
  159. <Compile Include="Views\SimuSkyPumpView.xaml.cs">
  160. <DependentUpon>SimuSkyPumpView.xaml</DependentUpon>
  161. </Compile>
  162. <Compile Include="Views\SimuSMCChillerPMAView.xaml.cs">
  163. <DependentUpon>SimuSMCChillerPMAView.xaml</DependentUpon>
  164. </Compile>
  165. <Compile Include="Views\SimuSMCChillerPMBView.xaml.cs">
  166. <DependentUpon>SimuSMCChillerPMBView.xaml</DependentUpon>
  167. </Compile>
  168. <Compile Include="Views\Simu_CometRFView.xaml.cs">
  169. <DependentUpon>Simu_CometRFView.xaml</DependentUpon>
  170. </Compile>
  171. <Compile Include="Views\Simu_EfemView.xaml.cs">
  172. <DependentUpon>Simu_EfemView.xaml</DependentUpon>
  173. </Compile>
  174. <Page Include="Views\EfemView.xaml">
  175. <Generator>MSBuild:Compile</Generator>
  176. <SubType>Designer</SubType>
  177. </Page>
  178. <Page Include="Views\SimuAdTecGeneratorPMAView.xaml">
  179. <Generator>MSBuild:Compile</Generator>
  180. <SubType>Designer</SubType>
  181. </Page>
  182. <Page Include="Views\SimuAdTecGeneratorPMBView.xaml">
  183. <Generator>MSBuild:Compile</Generator>
  184. <SubType>Designer</SubType>
  185. </Page>
  186. <Page Include="Views\SimuAdTecGeneratorView.xaml">
  187. <Generator>MSBuild:Compile</Generator>
  188. <SubType>Designer</SubType>
  189. </Page>
  190. <Page Include="Views\SimuAdTecMatchPMAView.xaml">
  191. <Generator>MSBuild:Compile</Generator>
  192. <SubType>Designer</SubType>
  193. </Page>
  194. <Page Include="Views\SimuAdTecMatchPMBView.xaml">
  195. <Generator>MSBuild:Compile</Generator>
  196. <SubType>Designer</SubType>
  197. </Page>
  198. <Page Include="Views\SimuAdTecMatchView.xaml">
  199. <Generator>MSBuild:Compile</Generator>
  200. <SubType>Designer</SubType>
  201. </Page>
  202. <Page Include="Views\SimuEdwardsPumpPMAView.xaml">
  203. <Generator>MSBuild:Compile</Generator>
  204. <SubType>Designer</SubType>
  205. </Page>
  206. <Page Include="Views\SimuEdwardsPumpPMBView.xaml">
  207. <Generator>MSBuild:Compile</Generator>
  208. <SubType>Designer</SubType>
  209. </Page>
  210. <Page Include="Views\SimulatorJelRobot.xaml">
  211. <SubType>Designer</SubType>
  212. <Generator>MSBuild:Compile</Generator>
  213. </Page>
  214. <Page Include="Views\SimulatorIo1View.xaml">
  215. <Generator>MSBuild:Compile</Generator>
  216. <SubType>Designer</SubType>
  217. </Page>
  218. <Page Include="Views\SimulatorIo2View.xaml">
  219. <Generator>MSBuild:Compile</Generator>
  220. <SubType>Designer</SubType>
  221. </Page>
  222. <Page Include="Views\SimulatorIOPM1View.xaml">
  223. <Generator>MSBuild:Compile</Generator>
  224. <SubType>Designer</SubType>
  225. </Page>
  226. <Page Include="Views\SimulatorIOPM2View.xaml">
  227. <Generator>MSBuild:Compile</Generator>
  228. <SubType>Designer</SubType>
  229. </Page>
  230. <Page Include="Views\SimulatorIOSystemView.xaml">
  231. <Generator>MSBuild:Compile</Generator>
  232. <SubType>Designer</SubType>
  233. </Page>
  234. <Page Include="Views\SimuMicrowaveGeneratorPMAView.xaml">
  235. <SubType>Designer</SubType>
  236. <Generator>MSBuild:Compile</Generator>
  237. </Page>
  238. <Page Include="Views\SimuMicrowaveGeneratorPMBView.xaml">
  239. <SubType>Designer</SubType>
  240. <Generator>MSBuild:Compile</Generator>
  241. </Page>
  242. <Page Include="Views\SimuSkyPumpPMAView.xaml">
  243. <Generator>MSBuild:Compile</Generator>
  244. <SubType>Designer</SubType>
  245. </Page>
  246. <Page Include="Views\SimuSkyPumpPMBView.xaml">
  247. <Generator>MSBuild:Compile</Generator>
  248. <SubType>Designer</SubType>
  249. </Page>
  250. <Page Include="Views\SimuSkyPumpView.xaml">
  251. <Generator>MSBuild:Compile</Generator>
  252. <SubType>Designer</SubType>
  253. </Page>
  254. <Page Include="Views\SimuSMCChillerPMAView.xaml">
  255. <Generator>MSBuild:Compile</Generator>
  256. <SubType>Designer</SubType>
  257. </Page>
  258. <Page Include="Views\SimuSMCChillerPMBView.xaml">
  259. <Generator>MSBuild:Compile</Generator>
  260. <SubType>Designer</SubType>
  261. </Page>
  262. <Page Include="Views\Simu_CometRFView.xaml">
  263. <Generator>MSBuild:Compile</Generator>
  264. <SubType>Designer</SubType>
  265. </Page>
  266. <Page Include="Views\Simu_EfemView.xaml">
  267. <Generator>MSBuild:Compile</Generator>
  268. <SubType>Designer</SubType>
  269. </Page>
  270. </ItemGroup>
  271. <ItemGroup>
  272. <Compile Include="Properties\AssemblyInfo.cs">
  273. <SubType>Code</SubType>
  274. </Compile>
  275. <Compile Include="Properties\Resources.Designer.cs">
  276. <AutoGen>True</AutoGen>
  277. <DesignTime>True</DesignTime>
  278. <DependentUpon>Resources.resx</DependentUpon>
  279. </Compile>
  280. <Compile Include="Properties\Settings.Designer.cs">
  281. <AutoGen>True</AutoGen>
  282. <DependentUpon>Settings.settings</DependentUpon>
  283. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  284. </Compile>
  285. <EmbeddedResource Include="Properties\Resources.resx">
  286. <Generator>ResXFileCodeGenerator</Generator>
  287. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  288. </EmbeddedResource>
  289. <None Include="Properties\Settings.settings">
  290. <Generator>SettingsSingleFileGenerator</Generator>
  291. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  292. </None>
  293. </ItemGroup>
  294. <ItemGroup>
  295. <None Include="App.config" />
  296. </ItemGroup>
  297. <ItemGroup>
  298. <None Include="Config\UILayout.xml">
  299. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  300. <SubType>Designer</SubType>
  301. </None>
  302. <None Include="Config\_ioDefinePM.xml">
  303. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  304. <SubType>Designer</SubType>
  305. </None>
  306. </ItemGroup>
  307. <ItemGroup>
  308. <Resource Include="Resources\MyLogoPurple.ico" />
  309. </ItemGroup>
  310. <ItemGroup>
  311. <ProjectReference Include="..\..\FrameworkLocal\Common\Common.csproj">
  312. <Project>{9cd2a6be-1971-4e74-b49e-547982f64034}</Project>
  313. <Name>Common</Name>
  314. </ProjectReference>
  315. <ProjectReference Include="..\..\FrameworkLocal\RTCore\RTCore.csproj">
  316. <Project>{bcbd839a-c9a0-4be7-98ca-b0a88ad38e5a}</Project>
  317. <Name>RTCore</Name>
  318. </ProjectReference>
  319. <ProjectReference Include="..\..\FrameworkLocal\SimulatorCore\SimulatorCore.csproj">
  320. <Project>{ebe55e3f-6dce-47b9-ac61-54a8b9b3482a}</Project>
  321. <Name>SimulatorCore</Name>
  322. </ProjectReference>
  323. <ProjectReference Include="..\..\FrameworkLocal\UIClient\UIClient.csproj">
  324. <Project>{a40b734c-f2ec-453c-a5fb-70cd46452bf1}</Project>
  325. <Name>UIClient</Name>
  326. </ProjectReference>
  327. <ProjectReference Include="..\..\FrameworkLocal\UICore\UICore.csproj">
  328. <Project>{2c9e1df3-1aba-4972-be60-41dd9b3c47a7}</Project>
  329. <Name>UICore</Name>
  330. </ProjectReference>
  331. </ItemGroup>
  332. <ItemGroup>
  333. <None Include="Config\_ioDefineMF.xml">
  334. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  335. </None>
  336. </ItemGroup>
  337. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  338. </Project>