Venus_Simulator.csproj 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367
  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>CS0168</NoWarn>
  28. </PropertyGroup>
  29. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  30. <PlatformTarget>AnyCPU</PlatformTarget>
  31. <DebugType>pdbonly</DebugType>
  32. <Optimize>true</Optimize>
  33. <OutputPath>bin\Release\</OutputPath>
  34. <DefineConstants>TRACE</DefineConstants>
  35. <ErrorReport>prompt</ErrorReport>
  36. <WarningLevel>4</WarningLevel>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="log4net">
  40. <HintPath>..\ThirdParty\log4net.dll</HintPath>
  41. </Reference>
  42. <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  43. <SpecificVersion>False</SpecificVersion>
  44. <HintPath>..\ThirdParty\Newtonsoft.Json.dll</HintPath>
  45. </Reference>
  46. <Reference Include="OpenSEMI.Ctrlib">
  47. <HintPath>..\ThirdParty\OpenSEMI.Ctrlib.dll</HintPath>
  48. </Reference>
  49. <Reference Include="PresentationFramework.Aero" />
  50. <Reference Include="System" />
  51. <Reference Include="System.Data" />
  52. <Reference Include="System.ServiceModel" />
  53. <Reference Include="System.Xml" />
  54. <Reference Include="Microsoft.CSharp" />
  55. <Reference Include="System.Core" />
  56. <Reference Include="System.Xml.Linq" />
  57. <Reference Include="System.Data.DataSetExtensions" />
  58. <Reference Include="System.Net.Http" />
  59. <Reference Include="System.Xaml">
  60. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  61. </Reference>
  62. <Reference Include="WindowsBase" />
  63. <Reference Include="PresentationCore" />
  64. <Reference Include="PresentationFramework" />
  65. <Reference Include="WPFToolkit">
  66. <HintPath>..\ThirdParty\WPFToolkit.dll</HintPath>
  67. </Reference>
  68. <Reference Include="Xceed.Wpf.Toolkit">
  69. <HintPath>..\ThirdParty\Xceed.Wpf.Toolkit.dll</HintPath>
  70. </Reference>
  71. </ItemGroup>
  72. <ItemGroup>
  73. <ApplicationDefinition Include="App.xaml">
  74. <Generator>MSBuild:Compile</Generator>
  75. <SubType>Designer</SubType>
  76. </ApplicationDefinition>
  77. <Compile Include="App.xaml.cs">
  78. <DependentUpon>App.xaml</DependentUpon>
  79. <SubType>Code</SubType>
  80. </Compile>
  81. <Compile Include="Devices\AIRSYSChillerMock.cs" />
  82. <Compile Include="Devices\ESCHVMockPMA.cs" />
  83. <Compile Include="Devices\PendulumValveMockPMA.cs" />
  84. <Compile Include="Devices\TMSimulatorServer.cs" />
  85. <Compile Include="Devices\TurboPumpMockPMA.cs" />
  86. <Compile Include="Instances\SystemConfig.cs" />
  87. <Compile Include="JetChamber.cs" />
  88. <Compile Include="Views\Converters\CassetteConverter.cs" />
  89. <Compile Include="Views\Converters\IoConvert.cs" />
  90. <Compile Include="Views\IoViewModelBase.cs" />
  91. <Compile Include="Views\SimuAdTecGeneratorPMAView.xaml.cs">
  92. <DependentUpon>SimuAdTecGeneratorPMAView.xaml</DependentUpon>
  93. </Compile>
  94. <Compile Include="Views\SimuAdTecGeneratorPMBView.xaml.cs">
  95. <DependentUpon>SimuAdTecGeneratorPMBView.xaml</DependentUpon>
  96. </Compile>
  97. <Compile Include="Views\SimuAdTecGeneratorView.xaml.cs">
  98. <DependentUpon>SimuAdTecGeneratorView.xaml</DependentUpon>
  99. </Compile>
  100. <Compile Include="Views\SimuAdTecMatchPMAView.xaml.cs">
  101. <DependentUpon>SimuAdTecMatchPMAView.xaml</DependentUpon>
  102. </Compile>
  103. <Compile Include="Views\SimuAdTecMatchPMBView.xaml.cs">
  104. <DependentUpon>SimuAdTecMatchPMBView.xaml</DependentUpon>
  105. </Compile>
  106. <Compile Include="Views\SimuAdTecMatchView.xaml.cs">
  107. <DependentUpon>SimuAdTecMatchView.xaml</DependentUpon>
  108. </Compile>
  109. <Compile Include="Views\SimuAIRSYSChillerPMAView.xaml.cs">
  110. <DependentUpon>SimuAIRSYSChillerPMAView.xaml</DependentUpon>
  111. </Compile>
  112. <Compile Include="Views\SimuAIRSYSChillerPMBView.xaml.cs">
  113. <DependentUpon>SimuAIRSYSChillerPMBView.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\simuESCHVPMAView.xaml.cs">
  122. <DependentUpon>simuESCHVPMAView.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\SimulatorIoTMView.xaml.cs">
  131. <DependentUpon>SimulatorIoTMView.xaml</DependentUpon>
  132. </Compile>
  133. <Compile Include="Views\SimuPendulumValvePMAView.xaml.cs">
  134. <DependentUpon>SimuPendulumValvePMAView.xaml</DependentUpon>
  135. </Compile>
  136. <Compile Include="Views\SimuSkyPumpPMAView.xaml.cs">
  137. <DependentUpon>SimuSkyPumpPMAView.xaml</DependentUpon>
  138. </Compile>
  139. <Compile Include="Views\SimuSkyPumpPMBView.xaml.cs">
  140. <DependentUpon>SimuSkyPumpPMBView.xaml</DependentUpon>
  141. </Compile>
  142. <Compile Include="Views\SimuSkyPumpView.xaml.cs">
  143. <DependentUpon>SimuSkyPumpView.xaml</DependentUpon>
  144. </Compile>
  145. <Compile Include="Views\SimuSMCChillerGridPMAView.xaml.cs">
  146. <DependentUpon>SimuSMCChillerGridPMAView.xaml</DependentUpon>
  147. </Compile>
  148. <Compile Include="Views\SimuSMCChillerGridPMBView.xaml.cs">
  149. <DependentUpon>SimuSMCChillerGridPMBView.xaml</DependentUpon>
  150. </Compile>
  151. <Compile Include="Views\SimuSMCChillerPMAView.xaml.cs">
  152. <DependentUpon>SimuSMCChillerPMAView.xaml</DependentUpon>
  153. </Compile>
  154. <Compile Include="Views\SimuSMCChillerPMBView.xaml.cs">
  155. <DependentUpon>SimuSMCChillerPMBView.xaml</DependentUpon>
  156. </Compile>
  157. <Compile Include="Views\SimuTurboPumpPMAView.xaml.cs">
  158. <DependentUpon>SimuTurboPumpPMAView.xaml</DependentUpon>
  159. </Compile>
  160. <Compile Include="Views\Simu_CometRFView.xaml.cs">
  161. <DependentUpon>Simu_CometRFView.xaml</DependentUpon>
  162. </Compile>
  163. <Compile Include="Views\Simu_EfemView.xaml.cs">
  164. <DependentUpon>Simu_EfemView.xaml</DependentUpon>
  165. </Compile>
  166. <Compile Include="Views\Simu_TMView.xaml.cs">
  167. <DependentUpon>Simu_TMView.xaml</DependentUpon>
  168. </Compile>
  169. </ItemGroup>
  170. <ItemGroup>
  171. <Compile Include="Devices\AdTecGeneratorMock.cs" />
  172. <Compile Include="Devices\AdTecGeneratorMockPMA.cs" />
  173. <Compile Include="Devices\AdTecGeneratorMockPMB.cs" />
  174. <Compile Include="Devices\AdTecMatchMock.cs" />
  175. <Compile Include="Devices\AdTecMatchMockPMA.cs" />
  176. <Compile Include="Devices\AdTecMatchMockPMB.cs" />
  177. <Compile Include="Devices\CometRFSocketServer.cs" />
  178. <Compile Include="Devices\EdwardsPumpMockPMA.cs" />
  179. <Compile Include="Devices\EdwardsPumpMockPMB.cs" />
  180. <Compile Include="Devices\EfemSimulator.cs" />
  181. <Compile Include="Devices\SkyPumpMock.cs" />
  182. <Compile Include="Devices\SkyPumpMockPMA.cs" />
  183. <Compile Include="Devices\SkyPumpMockPMB.cs" />
  184. <Compile Include="Devices\SMCChillerMockPMA.cs" />
  185. <Compile Include="Devices\SMCChillerMockPMB.cs" />
  186. <Compile Include="Instances\SimulatorPlc.cs" />
  187. <Compile Include="Instances\SimulatorSystem.cs" />
  188. <Compile Include="Instances\UiInstance.cs" />
  189. <Compile Include="Properties\AssemblyInfo.cs">
  190. <SubType>Code</SubType>
  191. </Compile>
  192. <Compile Include="Properties\Resources.Designer.cs">
  193. <AutoGen>True</AutoGen>
  194. <DesignTime>True</DesignTime>
  195. <DependentUpon>Resources.resx</DependentUpon>
  196. </Compile>
  197. <Compile Include="Properties\Settings.Designer.cs">
  198. <AutoGen>True</AutoGen>
  199. <DependentUpon>Settings.settings</DependentUpon>
  200. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  201. </Compile>
  202. <EmbeddedResource Include="Properties\Resources.resx">
  203. <Generator>ResXFileCodeGenerator</Generator>
  204. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  205. </EmbeddedResource>
  206. <None Include="Properties\Settings.settings">
  207. <Generator>SettingsSingleFileGenerator</Generator>
  208. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  209. </None>
  210. </ItemGroup>
  211. <ItemGroup>
  212. <None Include="App.config" />
  213. </ItemGroup>
  214. <ItemGroup>
  215. <ProjectReference Include="..\Framework\Common\Common.csproj">
  216. <Project>{9cd2a6be-1971-4e74-b49e-547982f64034}</Project>
  217. <Name>Common</Name>
  218. </ProjectReference>
  219. <ProjectReference Include="..\Framework\RTCore\RTCore.csproj">
  220. <Project>{bcbd839a-c9a0-4be7-98ca-b0a88ad38e5a}</Project>
  221. <Name>RTCore</Name>
  222. </ProjectReference>
  223. <ProjectReference Include="..\Framework\RTEquipmentLibrary\RTEquipmentLibrary.csproj">
  224. <Project>{090a1e9c-1087-4c8a-b4e0-ff074459e071}</Project>
  225. <Name>RTEquipmentLibrary</Name>
  226. </ProjectReference>
  227. <ProjectReference Include="..\Framework\SimulatorCore\SimulatorCore.csproj">
  228. <Project>{ebe55e3f-6dce-47b9-ac61-54a8b9b3482a}</Project>
  229. <Name>SimulatorCore</Name>
  230. </ProjectReference>
  231. <ProjectReference Include="..\Framework\UICore\UICore.csproj">
  232. <Project>{2c9e1df3-1aba-4972-be60-41dd9b3c47a7}</Project>
  233. <Name>UICore</Name>
  234. </ProjectReference>
  235. <ProjectReference Include="..\Venus_Core\Venus_Core.csproj">
  236. <Project>{e40639dd-94a7-4ecd-8137-11496bd0bfa3}</Project>
  237. <Name>Venus_Core</Name>
  238. </ProjectReference>
  239. </ItemGroup>
  240. <ItemGroup>
  241. <Resource Include="Resources\simulator.ico" />
  242. </ItemGroup>
  243. <ItemGroup>
  244. <Page Include="Views\SimuAdTecGeneratorPMAView.xaml">
  245. <Generator>MSBuild:Compile</Generator>
  246. <SubType>Designer</SubType>
  247. </Page>
  248. <Page Include="Views\SimuAdTecGeneratorPMBView.xaml">
  249. <Generator>MSBuild:Compile</Generator>
  250. <SubType>Designer</SubType>
  251. </Page>
  252. <Page Include="Views\SimuAdTecGeneratorView.xaml">
  253. <Generator>MSBuild:Compile</Generator>
  254. <SubType>Designer</SubType>
  255. </Page>
  256. <Page Include="Views\SimuAdTecMatchPMAView.xaml">
  257. <Generator>MSBuild:Compile</Generator>
  258. <SubType>Designer</SubType>
  259. </Page>
  260. <Page Include="Views\SimuAdTecMatchPMBView.xaml">
  261. <Generator>MSBuild:Compile</Generator>
  262. <SubType>Designer</SubType>
  263. </Page>
  264. <Page Include="Views\SimuAdTecMatchView.xaml">
  265. <Generator>MSBuild:Compile</Generator>
  266. <SubType>Designer</SubType>
  267. </Page>
  268. <Page Include="Views\SimuAIRSYSChillerPMAView.xaml">
  269. <Generator>MSBuild:Compile</Generator>
  270. <SubType>Designer</SubType>
  271. </Page>
  272. <Page Include="Views\SimuAIRSYSChillerPMBView.xaml">
  273. <Generator>MSBuild:Compile</Generator>
  274. <SubType>Designer</SubType>
  275. </Page>
  276. <Page Include="Views\SimuEdwardsPumpPMAView.xaml">
  277. <Generator>MSBuild:Compile</Generator>
  278. <SubType>Designer</SubType>
  279. </Page>
  280. <Page Include="Views\SimuEdwardsPumpPMBView.xaml">
  281. <Generator>MSBuild:Compile</Generator>
  282. <SubType>Designer</SubType>
  283. </Page>
  284. <Page Include="Views\simuESCHVPMAView.xaml">
  285. <SubType>Designer</SubType>
  286. <Generator>MSBuild:Compile</Generator>
  287. </Page>
  288. <Page Include="Views\SimulatorIo1View.xaml">
  289. <Generator>MSBuild:Compile</Generator>
  290. <SubType>Designer</SubType>
  291. </Page>
  292. <Page Include="Views\SimulatorIo2View.xaml">
  293. <Generator>MSBuild:Compile</Generator>
  294. <SubType>Designer</SubType>
  295. </Page>
  296. <Page Include="Views\SimulatorIoTMView.xaml">
  297. <Generator>MSBuild:Compile</Generator>
  298. <SubType>Designer</SubType>
  299. </Page>
  300. <Page Include="Views\SimuPendulumValvePMAView.xaml">
  301. <Generator>MSBuild:Compile</Generator>
  302. <SubType>Designer</SubType>
  303. </Page>
  304. <Page Include="Views\SimuSkyPumpPMAView.xaml">
  305. <Generator>MSBuild:Compile</Generator>
  306. <SubType>Designer</SubType>
  307. </Page>
  308. <Page Include="Views\SimuSkyPumpPMBView.xaml">
  309. <Generator>MSBuild:Compile</Generator>
  310. <SubType>Designer</SubType>
  311. </Page>
  312. <Page Include="Views\SimuSkyPumpView.xaml">
  313. <Generator>MSBuild:Compile</Generator>
  314. <SubType>Designer</SubType>
  315. </Page>
  316. <Page Include="Views\SimuSMCChillerGridPMAView.xaml">
  317. <Generator>MSBuild:Compile</Generator>
  318. <SubType>Designer</SubType>
  319. </Page>
  320. <Page Include="Views\SimuSMCChillerGridPMBView.xaml">
  321. <Generator>MSBuild:Compile</Generator>
  322. <SubType>Designer</SubType>
  323. </Page>
  324. <Page Include="Views\SimuSMCChillerPMAView.xaml">
  325. <Generator>MSBuild:Compile</Generator>
  326. <SubType>Designer</SubType>
  327. </Page>
  328. <Page Include="Views\SimuSMCChillerPMBView.xaml">
  329. <Generator>MSBuild:Compile</Generator>
  330. <SubType>Designer</SubType>
  331. </Page>
  332. <Page Include="Views\SimuTurboPumpPMAView.xaml">
  333. <SubType>Designer</SubType>
  334. <Generator>MSBuild:Compile</Generator>
  335. </Page>
  336. <Page Include="Views\Simu_CometRFView.xaml">
  337. <Generator>MSBuild:Compile</Generator>
  338. <SubType>Designer</SubType>
  339. </Page>
  340. <Page Include="Views\Simu_EfemView.xaml">
  341. <Generator>MSBuild:Compile</Generator>
  342. <SubType>Designer</SubType>
  343. </Page>
  344. <Page Include="Views\Simu_TMView.xaml">
  345. <Generator>MSBuild:Compile</Generator>
  346. <SubType>Designer</SubType>
  347. </Page>
  348. </ItemGroup>
  349. <ItemGroup />
  350. <ItemGroup>
  351. <Content Include="Config\UILayout.xml">
  352. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  353. </Content>
  354. <Content Include="Config\_ioDefineKepler.xml">
  355. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  356. </Content>
  357. <Content Include="Config\_ioDefineVenus_MF.xml">
  358. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  359. </Content>
  360. </ItemGroup>
  361. <ItemGroup>
  362. <Content Include="Config\_ioDefineVenus.xml">
  363. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  364. </Content>
  365. </ItemGroup>
  366. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  367. </Project>