Venus_Simulator.csproj 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692
  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>{D2AF730C-4549-4BA7-839E-9AA76B934B2D}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>Venus_Simulator</RootNamespace>
  10. <AssemblyName>Venus_Simulator</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.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. <NoWarn>
  28. </NoWarn>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  31. <PlatformTarget>AnyCPU</PlatformTarget>
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>bin\Release\</OutputPath>
  35. <DefineConstants>TRACE</DefineConstants>
  36. <ErrorReport>prompt</ErrorReport>
  37. <WarningLevel>4</WarningLevel>
  38. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="log4net">
  41. <HintPath>..\ThirdParty\log4net.dll</HintPath>
  42. </Reference>
  43. <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  44. <SpecificVersion>False</SpecificVersion>
  45. <HintPath>..\ThirdParty\Newtonsoft.Json.dll</HintPath>
  46. </Reference>
  47. <Reference Include="OpenSEMI.Ctrlib">
  48. <HintPath>..\ThirdParty\OpenSEMI.Ctrlib.dll</HintPath>
  49. </Reference>
  50. <Reference Include="PresentationFramework.Aero" />
  51. <Reference Include="System" />
  52. <Reference Include="System.Configuration" />
  53. <Reference Include="System.Data" />
  54. <Reference Include="System.ServiceModel" />
  55. <Reference Include="System.Xml" />
  56. <Reference Include="Microsoft.CSharp" />
  57. <Reference Include="System.Core" />
  58. <Reference Include="System.Xml.Linq" />
  59. <Reference Include="System.Data.DataSetExtensions" />
  60. <Reference Include="System.Net.Http" />
  61. <Reference Include="System.Xaml">
  62. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  63. </Reference>
  64. <Reference Include="WindowsBase" />
  65. <Reference Include="PresentationCore" />
  66. <Reference Include="PresentationFramework" />
  67. <Reference Include="WPFToolkit">
  68. <HintPath>..\ThirdParty\WPFToolkit.dll</HintPath>
  69. </Reference>
  70. <Reference Include="Xceed.Wpf.Toolkit">
  71. <HintPath>..\ThirdParty\Xceed.Wpf.Toolkit.dll</HintPath>
  72. </Reference>
  73. </ItemGroup>
  74. <ItemGroup>
  75. <ApplicationDefinition Include="App.xaml">
  76. <Generator>MSBuild:Compile</Generator>
  77. <SubType>Designer</SubType>
  78. </ApplicationDefinition>
  79. <Compile Include="App.xaml.cs">
  80. <DependentUpon>App.xaml</DependentUpon>
  81. <SubType>Code</SubType>
  82. </Compile>
  83. <Compile Include="Devices\EdwardsPumpMockLLB.cs" />
  84. <Compile Include="Devices\RevtechMatchMockPMC.cs" />
  85. <Compile Include="Devices\RevtechMatchMockPMB.cs" />
  86. <Compile Include="Devices\RevtechMatchMockPMA.cs" />
  87. <Compile Include="Devices\AdTecGeneratorMockPMD.cs" />
  88. <Compile Include="Devices\AdTecGeneratorMockPMC.cs" />
  89. <Compile Include="Devices\AdTecMatchMockPMD.cs" />
  90. <Compile Include="Devices\AdTecMatchMockPMC.cs" />
  91. <Compile Include="Devices\AIRSYSChillerMock.cs" />
  92. <Compile Include="Devices\EdwardsPumpMockLLA.cs" />
  93. <Compile Include="Devices\EdwardsPumpMockPMC.cs" />
  94. <Compile Include="Devices\EdwardsPumpMockTM.cs" />
  95. <Compile Include="Devices\ESCHVMockPMD.cs" />
  96. <Compile Include="Devices\ESCHVMockPMC.cs" />
  97. <Compile Include="Devices\ESCHVMockPMB.cs" />
  98. <Compile Include="Devices\ESCHVMockPMA.cs" />
  99. <Compile Include="Devices\PendulumValveMockPMD.cs" />
  100. <Compile Include="Devices\PendulumValveMockPMC.cs" />
  101. <Compile Include="Devices\PendulumValveMockPMB.cs" />
  102. <Compile Include="Devices\PendulumValveMockPMA.cs" />
  103. <Compile Include="Devices\DETMSimulatorServer.cs" />
  104. <Compile Include="Devices\SETMSimulatorServer.cs" />
  105. <Compile Include="Devices\SkyPumpMockLLB.cs" />
  106. <Compile Include="Devices\SkyPumpMockLLA.cs" />
  107. <Compile Include="Devices\SkyPumpMockPMD.cs" />
  108. <Compile Include="Devices\SkyPumpMockPMC.cs" />
  109. <Compile Include="Devices\SkyPumpMockTM.cs" />
  110. <Compile Include="Devices\TMSimulatorServer.cs" />
  111. <Compile Include="Devices\TurboPumpMockPMC.cs" />
  112. <Compile Include="Devices\TurboPumpMockPMD.cs" />
  113. <Compile Include="Devices\TurboPumpMockPMB.cs" />
  114. <Compile Include="Devices\TurboPumpMockPMA.cs" />
  115. <Compile Include="Devices\VceSimulator.cs" />
  116. <Compile Include="Devices\VPASimulator.cs" />
  117. <Compile Include="Instances\SystemConfig.cs" />
  118. <Compile Include="JetChamber.cs" />
  119. <Compile Include="JetsiuTM.cs" />
  120. <Compile Include="Views\Converters\CassetteConverter.cs" />
  121. <Compile Include="Views\Converters\IoConvert.cs" />
  122. <Compile Include="Views\HongHuVPA.xaml.cs">
  123. <DependentUpon>HongHuVPA.xaml</DependentUpon>
  124. </Compile>
  125. <Compile Include="Views\IoViewModelBase.cs" />
  126. <Compile Include="Views\SimuAdTecGeneratorPMAView.xaml.cs">
  127. <DependentUpon>SimuAdTecGeneratorPMAView.xaml</DependentUpon>
  128. </Compile>
  129. <Compile Include="Views\SimuAdTecGeneratorPMBView.xaml.cs">
  130. <DependentUpon>SimuAdTecGeneratorPMBView.xaml</DependentUpon>
  131. </Compile>
  132. <Compile Include="Views\SimuAdTecGeneratorPMDView.xaml.cs">
  133. <DependentUpon>SimuAdTecGeneratorPMDView.xaml</DependentUpon>
  134. </Compile>
  135. <Compile Include="Views\SimuAdTecGeneratorPMCView.xaml.cs">
  136. <DependentUpon>SimuAdTecGeneratorPMCView.xaml</DependentUpon>
  137. </Compile>
  138. <Compile Include="Views\SimuAdTecGeneratorView.xaml.cs">
  139. <DependentUpon>SimuAdTecGeneratorView.xaml</DependentUpon>
  140. </Compile>
  141. <Compile Include="Views\SimuAdTecMatchPMAView.xaml.cs">
  142. <DependentUpon>SimuAdTecMatchPMAView.xaml</DependentUpon>
  143. </Compile>
  144. <Compile Include="Views\SimuAdTecMatchPMDView.xaml.cs">
  145. <DependentUpon>SimuAdTecMatchPMDView.xaml</DependentUpon>
  146. </Compile>
  147. <Compile Include="Views\SimuAdTecMatchPMCView.xaml.cs">
  148. <DependentUpon>SimuAdTecMatchPMCView.xaml</DependentUpon>
  149. </Compile>
  150. <Compile Include="Views\SimuAdTecMatchPMBView.xaml.cs">
  151. <DependentUpon>SimuAdTecMatchPMBView.xaml</DependentUpon>
  152. </Compile>
  153. <Compile Include="Views\SimuAdTecMatchView.xaml.cs">
  154. <DependentUpon>SimuAdTecMatchView.xaml</DependentUpon>
  155. </Compile>
  156. <Compile Include="Views\SimuAIRSYSChillerPMAView.xaml.cs">
  157. <DependentUpon>SimuAIRSYSChillerPMAView.xaml</DependentUpon>
  158. </Compile>
  159. <Compile Include="Views\SimuAIRSYSChillerPMBView.xaml.cs">
  160. <DependentUpon>SimuAIRSYSChillerPMBView.xaml</DependentUpon>
  161. </Compile>
  162. <Compile Include="Views\SimuEdwardsPumpLLBView.xaml.cs">
  163. <DependentUpon>SimuEdwardsPumpLLBView.xaml</DependentUpon>
  164. </Compile>
  165. <Compile Include="Views\SimuEdwardsPumpLLAView.xaml.cs">
  166. <DependentUpon>SimuEdwardsPumpLLAView.xaml</DependentUpon>
  167. </Compile>
  168. <Compile Include="Views\SimuEdwardsPumpPMDView.xaml.cs">
  169. <DependentUpon>SimuEdwardsPumpPMDView.xaml</DependentUpon>
  170. </Compile>
  171. <Compile Include="Views\SimuEdwardsPumpPMCView.xaml.cs">
  172. <DependentUpon>SimuEdwardsPumpPMCView.xaml</DependentUpon>
  173. </Compile>
  174. <Compile Include="Views\SimuEdwardsPumpTMView.xaml.cs">
  175. <DependentUpon>SimuEdwardsPumpTMView.xaml</DependentUpon>
  176. </Compile>
  177. <Compile Include="Views\SimuEdwardsPumpPMAView.xaml.cs">
  178. <DependentUpon>SimuEdwardsPumpPMAView.xaml</DependentUpon>
  179. </Compile>
  180. <Compile Include="Views\SimuEdwardsPumpPMBView.xaml.cs">
  181. <DependentUpon>SimuEdwardsPumpPMBView.xaml</DependentUpon>
  182. </Compile>
  183. <Compile Include="Views\simuESCHVPMDView.xaml.cs">
  184. <DependentUpon>simuESCHVPMDView.xaml</DependentUpon>
  185. </Compile>
  186. <Compile Include="Views\simuESCHVPMCView.xaml.cs">
  187. <DependentUpon>simuESCHVPMCView.xaml</DependentUpon>
  188. </Compile>
  189. <Compile Include="Views\simuESCHVPMBView.xaml.cs">
  190. <DependentUpon>simuESCHVPMBView.xaml</DependentUpon>
  191. </Compile>
  192. <Compile Include="Views\simuESCHVPMAView.xaml.cs">
  193. <DependentUpon>simuESCHVPMAView.xaml</DependentUpon>
  194. </Compile>
  195. <Compile Include="Views\SimulatorIo1View.xaml.cs">
  196. <DependentUpon>SimulatorIo1View.xaml</DependentUpon>
  197. </Compile>
  198. <Compile Include="Views\SimulatorIo4View.xaml.cs">
  199. <DependentUpon>SimulatorIo4View.xaml</DependentUpon>
  200. </Compile>
  201. <Compile Include="Views\SimulatorIo3View.xaml.cs">
  202. <DependentUpon>SimulatorIo3View.xaml</DependentUpon>
  203. </Compile>
  204. <Compile Include="Views\SimulatorIo2View.xaml.cs">
  205. <DependentUpon>SimulatorIo2View.xaml</DependentUpon>
  206. </Compile>
  207. <Compile Include="Views\SimulatorIoDETMView.xaml.cs">
  208. <DependentUpon>SimulatorIoDETMView.xaml</DependentUpon>
  209. </Compile>
  210. <Compile Include="Views\SimulatorIoSETMView.xaml.cs">
  211. <DependentUpon>SimulatorIoSETMView.xaml</DependentUpon>
  212. </Compile>
  213. <Compile Include="Views\SimulatorIoTMView.xaml.cs">
  214. <DependentUpon>SimulatorIoTMView.xaml</DependentUpon>
  215. </Compile>
  216. <Compile Include="Views\SimuPendulumValvePMDView.xaml.cs">
  217. <DependentUpon>SimuPendulumValvePMDView.xaml</DependentUpon>
  218. </Compile>
  219. <Compile Include="Views\SimuPendulumValvePMCView.xaml.cs">
  220. <DependentUpon>SimuPendulumValvePMCView.xaml</DependentUpon>
  221. </Compile>
  222. <Compile Include="Views\SimuPendulumValvePMBView.xaml.cs">
  223. <DependentUpon>SimuPendulumValvePMBView.xaml</DependentUpon>
  224. </Compile>
  225. <Compile Include="Views\SimuPendulumValvePMAView.xaml.cs">
  226. <DependentUpon>SimuPendulumValvePMAView.xaml</DependentUpon>
  227. </Compile>
  228. <Compile Include="Views\SimuRevtechMatchPMBView.xaml.cs">
  229. <DependentUpon>SimuRevtechMatchPMBView.xaml</DependentUpon>
  230. </Compile>
  231. <Compile Include="Views\SimuSkyPumpLLBView.xaml.cs">
  232. <DependentUpon>SimuSkyPumpLLBView.xaml</DependentUpon>
  233. </Compile>
  234. <Compile Include="Views\SimuSkyPumpLLAView.xaml.cs">
  235. <DependentUpon>SimuSkyPumpLLAView.xaml</DependentUpon>
  236. </Compile>
  237. <Compile Include="Views\SimuSkyPumpPMDView.xaml.cs">
  238. <DependentUpon>SimuSkyPumpPMDView.xaml</DependentUpon>
  239. </Compile>
  240. <Compile Include="Views\SimuSkyPumpPMCView.xaml.cs">
  241. <DependentUpon>SimuSkyPumpPMCView.xaml</DependentUpon>
  242. </Compile>
  243. <Compile Include="Views\SimuSkyPumpDETMView.xaml.cs">
  244. <DependentUpon>SimuSkyPumpDETMView.xaml</DependentUpon>
  245. </Compile>
  246. <Compile Include="Views\SimuSkyPumpSETMView.xaml.cs">
  247. <DependentUpon>SimuSkyPumpSETMView.xaml</DependentUpon>
  248. </Compile>
  249. <Compile Include="Views\SimuSkyPumpTMView.xaml.cs">
  250. <DependentUpon>SimuSkyPumpTMView.xaml</DependentUpon>
  251. </Compile>
  252. <Compile Include="Views\SimuSkyPumpPMAView.xaml.cs">
  253. <DependentUpon>SimuSkyPumpPMAView.xaml</DependentUpon>
  254. </Compile>
  255. <Compile Include="Views\SimuSkyPumpPMBView.xaml.cs">
  256. <DependentUpon>SimuSkyPumpPMBView.xaml</DependentUpon>
  257. </Compile>
  258. <Compile Include="Views\SimuSkyPumpView.xaml.cs">
  259. <DependentUpon>SimuSkyPumpView.xaml</DependentUpon>
  260. </Compile>
  261. <Compile Include="Views\SimuSMCChillerGridPMAView.xaml.cs">
  262. <DependentUpon>SimuSMCChillerGridPMAView.xaml</DependentUpon>
  263. </Compile>
  264. <Compile Include="Views\SimuSMCChillerGridPMDView.xaml.cs">
  265. <DependentUpon>SimuSMCChillerGridPMDView.xaml</DependentUpon>
  266. </Compile>
  267. <Compile Include="Views\SimuSMCChillerGridPMCView.xaml.cs">
  268. <DependentUpon>SimuSMCChillerGridPMCView.xaml</DependentUpon>
  269. </Compile>
  270. <Compile Include="Views\SimuSMCChillerGridPMBView.xaml.cs">
  271. <DependentUpon>SimuSMCChillerGridPMBView.xaml</DependentUpon>
  272. </Compile>
  273. <Compile Include="Views\SimuSMCChillerPMAView.xaml.cs">
  274. <DependentUpon>SimuSMCChillerPMAView.xaml</DependentUpon>
  275. </Compile>
  276. <Compile Include="Views\SimuSMCChillerPMDView.xaml.cs">
  277. <DependentUpon>SimuSMCChillerPMDView.xaml</DependentUpon>
  278. </Compile>
  279. <Compile Include="Views\SimuSMCChillerPMCView.xaml.cs">
  280. <DependentUpon>SimuSMCChillerPMCView.xaml</DependentUpon>
  281. </Compile>
  282. <Compile Include="Views\SimuSMCChillerPMBView.xaml.cs">
  283. <DependentUpon>SimuSMCChillerPMBView.xaml</DependentUpon>
  284. </Compile>
  285. <Compile Include="Views\SimuTurboPumpPMDView.xaml.cs">
  286. <DependentUpon>SimuTurboPumpPMDView.xaml</DependentUpon>
  287. </Compile>
  288. <Compile Include="Views\SimuTurboPumpPMCView.xaml.cs">
  289. <DependentUpon>SimuTurboPumpPMCView.xaml</DependentUpon>
  290. </Compile>
  291. <Compile Include="Views\SimuTurboPumpPMBView.xaml.cs">
  292. <DependentUpon>SimuTurboPumpPMBView.xaml</DependentUpon>
  293. </Compile>
  294. <Compile Include="Views\SimuTurboPumpPMAView.xaml.cs">
  295. <DependentUpon>SimuTurboPumpPMAView.xaml</DependentUpon>
  296. </Compile>
  297. <Compile Include="Views\SimuRevtechMatchPMCView.xaml.cs">
  298. <DependentUpon>SimuRevtechMatchPMCView.xaml</DependentUpon>
  299. </Compile>
  300. <Compile Include="Views\SimuRevtechMatchPMAView.xaml.cs">
  301. <DependentUpon>SimuRevtechMatchPMAView.xaml</DependentUpon>
  302. </Compile>
  303. <Compile Include="Views\Simu_CometRFView.xaml.cs">
  304. <DependentUpon>Simu_CometRFView.xaml</DependentUpon>
  305. </Compile>
  306. <Compile Include="Views\Simu_EfemView.xaml.cs">
  307. <DependentUpon>Simu_EfemView.xaml</DependentUpon>
  308. </Compile>
  309. <Compile Include="Views\Simu_DETMView.xaml.cs">
  310. <DependentUpon>Simu_DETMView.xaml</DependentUpon>
  311. </Compile>
  312. <Compile Include="Views\Simu_SETMView.xaml.cs">
  313. <DependentUpon>Simu_SETMView.xaml</DependentUpon>
  314. </Compile>
  315. <Compile Include="Views\Simu_TMView.xaml.cs">
  316. <DependentUpon>Simu_TMView.xaml</DependentUpon>
  317. </Compile>
  318. <Compile Include="Views\Simu_VCEView.xaml.cs">
  319. <DependentUpon>Simu_VCEView.xaml</DependentUpon>
  320. </Compile>
  321. </ItemGroup>
  322. <ItemGroup>
  323. <Compile Include="Devices\AdTecGeneratorMock.cs" />
  324. <Compile Include="Devices\AdTecGeneratorMockPMA.cs" />
  325. <Compile Include="Devices\AdTecGeneratorMockPMB.cs" />
  326. <Compile Include="Devices\AdTecMatchMock.cs" />
  327. <Compile Include="Devices\AdTecMatchMockPMA.cs" />
  328. <Compile Include="Devices\AdTecMatchMockPMB.cs" />
  329. <Compile Include="Devices\CometRFSocketServer.cs" />
  330. <Compile Include="Devices\EdwardsPumpMockPMA.cs" />
  331. <Compile Include="Devices\EdwardsPumpMockPMB.cs" />
  332. <Compile Include="Devices\EfemSimulator.cs" />
  333. <Compile Include="Devices\SkyPumpMock.cs" />
  334. <Compile Include="Devices\SkyPumpMockPMA.cs" />
  335. <Compile Include="Devices\SkyPumpMockPMB.cs" />
  336. <Compile Include="Devices\SMCChillerMockPMA.cs" />
  337. <Compile Include="Devices\SMCChillerMockPMB.cs" />
  338. <Compile Include="Instances\SimulatorPlc.cs" />
  339. <Compile Include="Instances\SimulatorSystem.cs" />
  340. <Compile Include="Instances\UiInstance.cs" />
  341. <Compile Include="Properties\AssemblyInfo.cs">
  342. <SubType>Code</SubType>
  343. </Compile>
  344. <Compile Include="Properties\Resources.Designer.cs">
  345. <AutoGen>True</AutoGen>
  346. <DesignTime>True</DesignTime>
  347. <DependentUpon>Resources.resx</DependentUpon>
  348. </Compile>
  349. <Compile Include="Properties\Settings.Designer.cs">
  350. <AutoGen>True</AutoGen>
  351. <DependentUpon>Settings.settings</DependentUpon>
  352. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  353. </Compile>
  354. <EmbeddedResource Include="Properties\Resources.resx">
  355. <Generator>ResXFileCodeGenerator</Generator>
  356. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  357. </EmbeddedResource>
  358. <None Include="Properties\Settings.settings">
  359. <Generator>SettingsSingleFileGenerator</Generator>
  360. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  361. </None>
  362. </ItemGroup>
  363. <ItemGroup>
  364. <None Include="App.config" />
  365. </ItemGroup>
  366. <ItemGroup>
  367. <ProjectReference Include="..\Framework\Common\Common.csproj">
  368. <Project>{9cd2a6be-1971-4e74-b49e-547982f64034}</Project>
  369. <Name>Common</Name>
  370. </ProjectReference>
  371. <ProjectReference Include="..\Framework\RTCore\RTCore.csproj">
  372. <Project>{bcbd839a-c9a0-4be7-98ca-b0a88ad38e5a}</Project>
  373. <Name>RTCore</Name>
  374. </ProjectReference>
  375. <ProjectReference Include="..\Framework\RTEquipmentLibrary\RTEquipmentLibrary.csproj">
  376. <Project>{090a1e9c-1087-4c8a-b4e0-ff074459e071}</Project>
  377. <Name>RTEquipmentLibrary</Name>
  378. </ProjectReference>
  379. <ProjectReference Include="..\Framework\SimulatorCore\SimulatorCore.csproj">
  380. <Project>{ebe55e3f-6dce-47b9-ac61-54a8b9b3482a}</Project>
  381. <Name>SimulatorCore</Name>
  382. </ProjectReference>
  383. <ProjectReference Include="..\Framework\UICore\UICore.csproj">
  384. <Project>{2c9e1df3-1aba-4972-be60-41dd9b3c47a7}</Project>
  385. <Name>UICore</Name>
  386. </ProjectReference>
  387. <ProjectReference Include="..\Venus_Core\Venus_Core.csproj">
  388. <Project>{e40639dd-94a7-4ecd-8137-11496bd0bfa3}</Project>
  389. <Name>Venus_Core</Name>
  390. </ProjectReference>
  391. </ItemGroup>
  392. <ItemGroup>
  393. <Resource Include="Resources\simulator.ico" />
  394. </ItemGroup>
  395. <ItemGroup>
  396. <Page Include="Views\HongHuVPA.xaml">
  397. <SubType>Designer</SubType>
  398. <Generator>MSBuild:Compile</Generator>
  399. </Page>
  400. <Page Include="Views\SimuAdTecGeneratorPMAView.xaml">
  401. <Generator>MSBuild:Compile</Generator>
  402. <SubType>Designer</SubType>
  403. </Page>
  404. <Page Include="Views\SimuAdTecGeneratorPMBView.xaml">
  405. <Generator>MSBuild:Compile</Generator>
  406. <SubType>Designer</SubType>
  407. </Page>
  408. <Page Include="Views\SimuAdTecGeneratorPMDView.xaml">
  409. <Generator>MSBuild:Compile</Generator>
  410. <SubType>Designer</SubType>
  411. </Page>
  412. <Page Include="Views\SimuAdTecGeneratorPMCView.xaml">
  413. <Generator>MSBuild:Compile</Generator>
  414. <SubType>Designer</SubType>
  415. </Page>
  416. <Page Include="Views\SimuAdTecGeneratorView.xaml">
  417. <Generator>MSBuild:Compile</Generator>
  418. <SubType>Designer</SubType>
  419. </Page>
  420. <Page Include="Views\SimuAdTecMatchPMAView.xaml">
  421. <Generator>MSBuild:Compile</Generator>
  422. <SubType>Designer</SubType>
  423. </Page>
  424. <Page Include="Views\SimuAdTecMatchPMDView.xaml">
  425. <Generator>MSBuild:Compile</Generator>
  426. <SubType>Designer</SubType>
  427. </Page>
  428. <Page Include="Views\SimuAdTecMatchPMCView.xaml">
  429. <Generator>MSBuild:Compile</Generator>
  430. <SubType>Designer</SubType>
  431. </Page>
  432. <Page Include="Views\SimuAdTecMatchPMBView.xaml">
  433. <Generator>MSBuild:Compile</Generator>
  434. <SubType>Designer</SubType>
  435. </Page>
  436. <Page Include="Views\SimuAdTecMatchView.xaml">
  437. <Generator>MSBuild:Compile</Generator>
  438. <SubType>Designer</SubType>
  439. </Page>
  440. <Page Include="Views\SimuAIRSYSChillerPMAView.xaml">
  441. <Generator>MSBuild:Compile</Generator>
  442. <SubType>Designer</SubType>
  443. </Page>
  444. <Page Include="Views\SimuAIRSYSChillerPMBView.xaml">
  445. <Generator>MSBuild:Compile</Generator>
  446. <SubType>Designer</SubType>
  447. </Page>
  448. <Page Include="Views\SimuEdwardsPumpLLBView.xaml">
  449. <Generator>MSBuild:Compile</Generator>
  450. <SubType>Designer</SubType>
  451. </Page>
  452. <Page Include="Views\SimuEdwardsPumpLLAView.xaml">
  453. <Generator>MSBuild:Compile</Generator>
  454. <SubType>Designer</SubType>
  455. </Page>
  456. <Page Include="Views\SimuEdwardsPumpPMDView.xaml">
  457. <Generator>MSBuild:Compile</Generator>
  458. <SubType>Designer</SubType>
  459. </Page>
  460. <Page Include="Views\SimuEdwardsPumpPMCView.xaml">
  461. <Generator>MSBuild:Compile</Generator>
  462. <SubType>Designer</SubType>
  463. </Page>
  464. <Page Include="Views\SimuEdwardsPumpTMView.xaml">
  465. <Generator>MSBuild:Compile</Generator>
  466. <SubType>Designer</SubType>
  467. </Page>
  468. <Page Include="Views\SimuEdwardsPumpPMAView.xaml">
  469. <Generator>MSBuild:Compile</Generator>
  470. <SubType>Designer</SubType>
  471. </Page>
  472. <Page Include="Views\SimuEdwardsPumpPMBView.xaml">
  473. <Generator>MSBuild:Compile</Generator>
  474. <SubType>Designer</SubType>
  475. </Page>
  476. <Page Include="Views\simuESCHVPMDView.xaml">
  477. <Generator>MSBuild:Compile</Generator>
  478. <SubType>Designer</SubType>
  479. </Page>
  480. <Page Include="Views\simuESCHVPMCView.xaml">
  481. <Generator>MSBuild:Compile</Generator>
  482. <SubType>Designer</SubType>
  483. </Page>
  484. <Page Include="Views\simuESCHVPMBView.xaml">
  485. <Generator>MSBuild:Compile</Generator>
  486. <SubType>Designer</SubType>
  487. </Page>
  488. <Page Include="Views\simuESCHVPMAView.xaml">
  489. <SubType>Designer</SubType>
  490. <Generator>MSBuild:Compile</Generator>
  491. </Page>
  492. <Page Include="Views\SimulatorIo1View.xaml">
  493. <Generator>MSBuild:Compile</Generator>
  494. <SubType>Designer</SubType>
  495. </Page>
  496. <Page Include="Views\SimulatorIo4View.xaml">
  497. <Generator>MSBuild:Compile</Generator>
  498. <SubType>Designer</SubType>
  499. </Page>
  500. <Page Include="Views\SimulatorIo3View.xaml">
  501. <Generator>MSBuild:Compile</Generator>
  502. <SubType>Designer</SubType>
  503. </Page>
  504. <Page Include="Views\SimulatorIo2View.xaml">
  505. <Generator>MSBuild:Compile</Generator>
  506. <SubType>Designer</SubType>
  507. </Page>
  508. <Page Include="Views\SimulatorIoDETMView.xaml">
  509. <Generator>MSBuild:Compile</Generator>
  510. <SubType>Designer</SubType>
  511. </Page>
  512. <Page Include="Views\SimulatorIoSETMView.xaml">
  513. <Generator>MSBuild:Compile</Generator>
  514. <SubType>Designer</SubType>
  515. </Page>
  516. <Page Include="Views\SimulatorIoTMView.xaml">
  517. <Generator>MSBuild:Compile</Generator>
  518. <SubType>Designer</SubType>
  519. </Page>
  520. <Page Include="Views\SimuPendulumValvePMDView.xaml">
  521. <Generator>MSBuild:Compile</Generator>
  522. <SubType>Designer</SubType>
  523. </Page>
  524. <Page Include="Views\SimuPendulumValvePMCView.xaml">
  525. <Generator>MSBuild:Compile</Generator>
  526. <SubType>Designer</SubType>
  527. </Page>
  528. <Page Include="Views\SimuPendulumValvePMBView.xaml">
  529. <Generator>MSBuild:Compile</Generator>
  530. <SubType>Designer</SubType>
  531. </Page>
  532. <Page Include="Views\SimuPendulumValvePMAView.xaml">
  533. <Generator>MSBuild:Compile</Generator>
  534. <SubType>Designer</SubType>
  535. </Page>
  536. <Page Include="Views\SimuRevtechMatchPMBView.xaml">
  537. <Generator>MSBuild:Compile</Generator>
  538. <SubType>Designer</SubType>
  539. </Page>
  540. <Page Include="Views\SimuSkyPumpLLBView.xaml">
  541. <Generator>MSBuild:Compile</Generator>
  542. <SubType>Designer</SubType>
  543. </Page>
  544. <Page Include="Views\SimuSkyPumpLLAView.xaml">
  545. <Generator>MSBuild:Compile</Generator>
  546. <SubType>Designer</SubType>
  547. </Page>
  548. <Page Include="Views\SimuSkyPumpPMDView.xaml">
  549. <Generator>MSBuild:Compile</Generator>
  550. <SubType>Designer</SubType>
  551. </Page>
  552. <Page Include="Views\SimuSkyPumpPMCView.xaml">
  553. <Generator>MSBuild:Compile</Generator>
  554. <SubType>Designer</SubType>
  555. </Page>
  556. <Page Include="Views\SimuSkyPumpDETMView.xaml">
  557. <Generator>MSBuild:Compile</Generator>
  558. <SubType>Designer</SubType>
  559. </Page>
  560. <Page Include="Views\SimuSkyPumpSETMView.xaml">
  561. <Generator>MSBuild:Compile</Generator>
  562. <SubType>Designer</SubType>
  563. </Page>
  564. <Page Include="Views\SimuSkyPumpTMView.xaml">
  565. <Generator>MSBuild:Compile</Generator>
  566. <SubType>Designer</SubType>
  567. </Page>
  568. <Page Include="Views\SimuSkyPumpPMAView.xaml">
  569. <Generator>MSBuild:Compile</Generator>
  570. <SubType>Designer</SubType>
  571. </Page>
  572. <Page Include="Views\SimuSkyPumpPMBView.xaml">
  573. <Generator>MSBuild:Compile</Generator>
  574. <SubType>Designer</SubType>
  575. </Page>
  576. <Page Include="Views\SimuSkyPumpView.xaml">
  577. <Generator>MSBuild:Compile</Generator>
  578. <SubType>Designer</SubType>
  579. </Page>
  580. <Page Include="Views\SimuSMCChillerGridPMAView.xaml">
  581. <Generator>MSBuild:Compile</Generator>
  582. <SubType>Designer</SubType>
  583. </Page>
  584. <Page Include="Views\SimuSMCChillerGridPMDView.xaml">
  585. <Generator>MSBuild:Compile</Generator>
  586. <SubType>Designer</SubType>
  587. </Page>
  588. <Page Include="Views\SimuSMCChillerGridPMCView.xaml">
  589. <Generator>MSBuild:Compile</Generator>
  590. <SubType>Designer</SubType>
  591. </Page>
  592. <Page Include="Views\SimuSMCChillerGridPMBView.xaml">
  593. <Generator>MSBuild:Compile</Generator>
  594. <SubType>Designer</SubType>
  595. </Page>
  596. <Page Include="Views\SimuSMCChillerPMAView.xaml">
  597. <Generator>MSBuild:Compile</Generator>
  598. <SubType>Designer</SubType>
  599. </Page>
  600. <Page Include="Views\SimuSMCChillerPMDView.xaml">
  601. <Generator>MSBuild:Compile</Generator>
  602. <SubType>Designer</SubType>
  603. </Page>
  604. <Page Include="Views\SimuSMCChillerPMCView.xaml">
  605. <Generator>MSBuild:Compile</Generator>
  606. <SubType>Designer</SubType>
  607. </Page>
  608. <Page Include="Views\SimuSMCChillerPMBView.xaml">
  609. <Generator>MSBuild:Compile</Generator>
  610. <SubType>Designer</SubType>
  611. </Page>
  612. <Page Include="Views\SimuTurboPumpPMDView.xaml">
  613. <Generator>MSBuild:Compile</Generator>
  614. <SubType>Designer</SubType>
  615. </Page>
  616. <Page Include="Views\SimuTurboPumpPMCView.xaml">
  617. <Generator>MSBuild:Compile</Generator>
  618. <SubType>Designer</SubType>
  619. </Page>
  620. <Page Include="Views\SimuTurboPumpPMBView.xaml">
  621. <Generator>MSBuild:Compile</Generator>
  622. <SubType>Designer</SubType>
  623. </Page>
  624. <Page Include="Views\SimuTurboPumpPMAView.xaml">
  625. <SubType>Designer</SubType>
  626. <Generator>MSBuild:Compile</Generator>
  627. </Page>
  628. <Page Include="Views\SimuRevtechMatchPMCView.xaml">
  629. <Generator>MSBuild:Compile</Generator>
  630. <SubType>Designer</SubType>
  631. </Page>
  632. <Page Include="Views\SimuRevtechMatchPMAView.xaml">
  633. <Generator>MSBuild:Compile</Generator>
  634. <SubType>Designer</SubType>
  635. </Page>
  636. <Page Include="Views\Simu_CometRFView.xaml">
  637. <Generator>MSBuild:Compile</Generator>
  638. <SubType>Designer</SubType>
  639. </Page>
  640. <Page Include="Views\Simu_EfemView.xaml">
  641. <Generator>MSBuild:Compile</Generator>
  642. <SubType>Designer</SubType>
  643. </Page>
  644. <Page Include="Views\Simu_DETMView.xaml">
  645. <Generator>MSBuild:Compile</Generator>
  646. <SubType>Designer</SubType>
  647. </Page>
  648. <Page Include="Views\Simu_SETMView.xaml">
  649. <SubType>Designer</SubType>
  650. <Generator>MSBuild:Compile</Generator>
  651. </Page>
  652. <Page Include="Views\Simu_TMView.xaml">
  653. <Generator>MSBuild:Compile</Generator>
  654. <SubType>Designer</SubType>
  655. </Page>
  656. <Page Include="Views\Simu_VCEView.xaml">
  657. <SubType>Designer</SubType>
  658. <Generator>MSBuild:Compile</Generator>
  659. </Page>
  660. </ItemGroup>
  661. <ItemGroup />
  662. <ItemGroup>
  663. <Content Include="Config\_ioDefineVenusDE.xml">
  664. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  665. </Content>
  666. <Content Include="Config\_ioDefineVenusDE_MF.xml">
  667. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  668. </Content>
  669. <Content Include="Config\_ioDefineVenusSE.xml">
  670. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  671. </Content>
  672. <Content Include="Config\_ioDefineKepler2200B.xml">
  673. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  674. </Content>
  675. <Content Include="Config\_ioDefineVenus_MF.xml">
  676. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  677. </Content>
  678. <Content Include="Config\_ioDefineVenusSE_MF.xml">
  679. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  680. </Content>
  681. <Content Include="Config\_ioDefineKepler2200A.xml">
  682. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  683. </Content>
  684. <Content Include="Config\UILayout.xml">
  685. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  686. </Content>
  687. <Content Include="Config\_ioDefineKepler2300.xml">
  688. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  689. </Content>
  690. </ItemGroup>
  691. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  692. </Project>