VirgoSimulator.csproj 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  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>VirgoSimulator</RootNamespace>
  10. <AssemblyName>VirgoSimulator</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. <PropertyGroup>
  38. <ApplicationIcon>Resources\simulator.ico</ApplicationIcon>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="log4net">
  42. <HintPath>..\ThirdParty\dlls\log4net.dll</HintPath>
  43. </Reference>
  44. <Reference Include="OpenSEMI.Ctrlib">
  45. <HintPath>..\ThirdParty\dlls\selfbuild\OpenSEMI.Ctrlib.dll</HintPath>
  46. </Reference>
  47. <Reference Include="PresentationFramework.Aero" />
  48. <Reference Include="System" />
  49. <Reference Include="System.Data" />
  50. <Reference Include="System.ServiceModel" />
  51. <Reference Include="System.Xml" />
  52. <Reference Include="Microsoft.CSharp" />
  53. <Reference Include="System.Core" />
  54. <Reference Include="System.Xml.Linq" />
  55. <Reference Include="System.Data.DataSetExtensions" />
  56. <Reference Include="System.Net.Http" />
  57. <Reference Include="System.Xaml">
  58. <RequiredTargetFramework>4.0</RequiredTargetFramework>
  59. </Reference>
  60. <Reference Include="WindowsBase" />
  61. <Reference Include="PresentationCore" />
  62. <Reference Include="PresentationFramework" />
  63. <Reference Include="WPFToolkit">
  64. <HintPath>..\ThirdParty\dlls\WPFToolkit.dll</HintPath>
  65. </Reference>
  66. <Reference Include="Xceed.Wpf.Toolkit">
  67. <HintPath>..\ThirdParty\dlls\Xceed.Wpf.Toolkit.dll</HintPath>
  68. </Reference>
  69. </ItemGroup>
  70. <ItemGroup>
  71. <ApplicationDefinition Include="App.xaml">
  72. <Generator>MSBuild:Compile</Generator>
  73. <SubType>Designer</SubType>
  74. </ApplicationDefinition>
  75. <Compile Include="App.xaml.cs">
  76. <DependentUpon>App.xaml</DependentUpon>
  77. <SubType>Code</SubType>
  78. </Compile>
  79. <Compile Include="Devices\AdTecGeneratorMockPMA.cs" />
  80. <Compile Include="Devices\AdTecGeneratorMockPMB.cs" />
  81. <Compile Include="Devices\AdTecMatchMockPMB.cs" />
  82. <Compile Include="Devices\AdTecMatchMockPMA.cs" />
  83. <Compile Include="Devices\EdwardsPumpMockPMB.cs" />
  84. <Compile Include="Devices\EdwardsPumpMockPMA.cs" />
  85. <Compile Include="Devices\EfemSimulator.cs" />
  86. <Compile Include="Devices\SkyPumpMockPMB.cs" />
  87. <Compile Include="Devices\SkyPumpMockPMA.cs" />
  88. <Compile Include="Devices\SMCChillerMockPMA.cs" />
  89. <Compile Include="Devices\SMCChillerMockPMB.cs" />
  90. <Compile Include="Instances\SimulatorPlc.cs" />
  91. <Compile Include="Instances\SimulatorSystem.cs" />
  92. <Compile Include="Instances\UiInstance.cs" />
  93. <Compile Include="Views\IoViewModelBase.cs" />
  94. <Compile Include="Views\Converters\CassetteConverter.cs" />
  95. <Compile Include="Views\Converters\IoConvert.cs" />
  96. <Compile Include="Views\SimuAdTecGeneratorPMAView.xaml.cs">
  97. <DependentUpon>SimuAdTecGeneratorPMAView.xaml</DependentUpon>
  98. </Compile>
  99. <Compile Include="Views\SimuAdTecGeneratorPMBView.xaml.cs">
  100. <DependentUpon>SimuAdTecGeneratorPMBView.xaml</DependentUpon>
  101. </Compile>
  102. <Compile Include="Views\SimuAdTecMatchPMAView.xaml.cs">
  103. <DependentUpon>SimuAdTecMatchPMAView.xaml</DependentUpon>
  104. </Compile>
  105. <Compile Include="Views\SimuAdTecMatchPMBView.xaml.cs">
  106. <DependentUpon>SimuAdTecMatchPMBView.xaml</DependentUpon>
  107. </Compile>
  108. <Compile Include="Views\SimuEdwardsPumpPMAView.xaml.cs">
  109. <DependentUpon>SimuEdwardsPumpPMAView.xaml</DependentUpon>
  110. </Compile>
  111. <Compile Include="Views\SimuEdwardsPumpPMBView.xaml.cs">
  112. <DependentUpon>SimuEdwardsPumpPMBView.xaml</DependentUpon>
  113. </Compile>
  114. <Compile Include="Views\SimulatorIo2View.xaml.cs">
  115. <DependentUpon>SimulatorIo2View.xaml</DependentUpon>
  116. </Compile>
  117. <Compile Include="Views\SimulatorIo1View.xaml.cs">
  118. <DependentUpon>SimulatorIo1View.xaml</DependentUpon>
  119. </Compile>
  120. <Compile Include="Views\SimuSkyPumpPMAView.xaml.cs">
  121. <DependentUpon>SimuSkyPumpPMAView.xaml</DependentUpon>
  122. </Compile>
  123. <Compile Include="Views\SimuSkyPumpPMBView.xaml.cs">
  124. <DependentUpon>SimuSkyPumpPMBView.xaml</DependentUpon>
  125. </Compile>
  126. <Compile Include="Views\SimuSMCChillerGridPMAView.xaml.cs">
  127. <DependentUpon>SimuSMCChillerGridPMAView.xaml</DependentUpon>
  128. </Compile>
  129. <Compile Include="Views\SimuSMCChillerPMAView.xaml.cs">
  130. <DependentUpon>SimuSMCChillerPMAView.xaml</DependentUpon>
  131. </Compile>
  132. <Compile Include="Views\SimuSMCChillerGridPMBView.xaml.cs">
  133. <DependentUpon>SimuSMCChillerGridPMBView.xaml</DependentUpon>
  134. </Compile>
  135. <Compile Include="Views\SimuSMCChillerPMBView.xaml.cs">
  136. <DependentUpon>SimuSMCChillerPMBView.xaml</DependentUpon>
  137. </Compile>
  138. <Compile Include="Views\Simu_EfemView.xaml.cs">
  139. <DependentUpon>Simu_EfemView.xaml</DependentUpon>
  140. </Compile>
  141. </ItemGroup>
  142. <ItemGroup>
  143. <Compile Include="Properties\AssemblyInfo.cs">
  144. <SubType>Code</SubType>
  145. </Compile>
  146. <Compile Include="Properties\Resources.Designer.cs">
  147. <AutoGen>True</AutoGen>
  148. <DesignTime>True</DesignTime>
  149. <DependentUpon>Resources.resx</DependentUpon>
  150. </Compile>
  151. <Compile Include="Properties\Settings.Designer.cs">
  152. <AutoGen>True</AutoGen>
  153. <DependentUpon>Settings.settings</DependentUpon>
  154. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  155. </Compile>
  156. <EmbeddedResource Include="Properties\Resources.resx">
  157. <Generator>ResXFileCodeGenerator</Generator>
  158. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  159. </EmbeddedResource>
  160. <None Include="Properties\Settings.settings">
  161. <Generator>SettingsSingleFileGenerator</Generator>
  162. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  163. </None>
  164. </ItemGroup>
  165. <ItemGroup>
  166. <None Include="App.config">
  167. <SubType>Designer</SubType>
  168. </None>
  169. </ItemGroup>
  170. <ItemGroup>
  171. <ProjectReference Include="..\Framework\Common\Common.csproj">
  172. <Project>{9cd2a6be-1971-4e74-b49e-547982f64034}</Project>
  173. <Name>Common</Name>
  174. </ProjectReference>
  175. <ProjectReference Include="..\Framework\RTCore\RTCore.csproj">
  176. <Project>{bcbd839a-c9a0-4be7-98ca-b0a88ad38e5a}</Project>
  177. <Name>RTCore</Name>
  178. </ProjectReference>
  179. <ProjectReference Include="..\Framework\RTEquipmentLibrary\RTEquipmentLibrary.csproj">
  180. <Project>{090a1e9c-1087-4c8a-b4e0-ff074459e071}</Project>
  181. <Name>RTEquipmentLibrary</Name>
  182. </ProjectReference>
  183. <ProjectReference Include="..\Framework\SimulatorCore\SimulatorCore.csproj">
  184. <Project>{ebe55e3f-6dce-47b9-ac61-54a8b9b3482a}</Project>
  185. <Name>SimulatorCore</Name>
  186. </ProjectReference>
  187. <ProjectReference Include="..\Framework\UICore\UICore.csproj">
  188. <Project>{2c9e1df3-1aba-4972-be60-41dd9b3c47a7}</Project>
  189. <Name>UICore</Name>
  190. </ProjectReference>
  191. <ProjectReference Include="..\VirgoCommon\VirgoCommon.csproj">
  192. <Project>{e7966f9d-09af-42f5-9bfe-f5c070b1b565}</Project>
  193. <Name>VirgoCommon</Name>
  194. </ProjectReference>
  195. </ItemGroup>
  196. <ItemGroup>
  197. <None Include="Config\UILayout.xml">
  198. <SubType>Designer</SubType>
  199. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  200. </None>
  201. </ItemGroup>
  202. <ItemGroup>
  203. <Page Include="Views\SimuAdTecGeneratorPMAView.xaml">
  204. <SubType>Designer</SubType>
  205. <Generator>MSBuild:Compile</Generator>
  206. </Page>
  207. <Page Include="Views\SimuAdTecGeneratorPMBView.xaml">
  208. <SubType>Designer</SubType>
  209. <Generator>XamlIntelliSenseFileGenerator</Generator>
  210. </Page>
  211. <Page Include="Views\SimuAdTecMatchPMAView.xaml">
  212. <SubType>Designer</SubType>
  213. <Generator>MSBuild:Compile</Generator>
  214. </Page>
  215. <Page Include="Views\SimuAdTecMatchPMBView.xaml">
  216. <SubType>Designer</SubType>
  217. <Generator>XamlIntelliSenseFileGenerator</Generator>
  218. </Page>
  219. <Page Include="Views\SimuEdwardsPumpPMAView.xaml">
  220. <SubType>Designer</SubType>
  221. <Generator>XamlIntelliSenseFileGenerator</Generator>
  222. </Page>
  223. <Page Include="Views\SimuEdwardsPumpPMBView.xaml">
  224. <SubType>Designer</SubType>
  225. <Generator>XamlIntelliSenseFileGenerator</Generator>
  226. </Page>
  227. <Page Include="Views\SimulatorIo2View.xaml">
  228. <Generator>MSBuild:Compile</Generator>
  229. <SubType>Designer</SubType>
  230. </Page>
  231. <Page Include="Views\SimulatorIo1View.xaml">
  232. <Generator>MSBuild:Compile</Generator>
  233. <SubType>Designer</SubType>
  234. </Page>
  235. <Page Include="Views\SimuSkyPumpPMAView.xaml">
  236. <SubType>Designer</SubType>
  237. <Generator>MSBuild:Compile</Generator>
  238. </Page>
  239. <Page Include="Views\SimuSkyPumpPMBView.xaml">
  240. <SubType>Designer</SubType>
  241. <Generator>XamlIntelliSenseFileGenerator</Generator>
  242. </Page>
  243. <Page Include="Views\SimuSMCChillerGridPMAView.xaml">
  244. <Generator>MSBuild:Compile</Generator>
  245. <SubType>Designer</SubType>
  246. </Page>
  247. <Page Include="Views\SimuSMCChillerPMAView.xaml">
  248. <SubType>Designer</SubType>
  249. <Generator>MSBuild:Compile</Generator>
  250. </Page>
  251. <Page Include="Views\SimuSMCChillerGridPMBView.xaml">
  252. <Generator>MSBuild:Compile</Generator>
  253. <SubType>Designer</SubType>
  254. </Page>
  255. <Page Include="Views\SimuSMCChillerPMBView.xaml">
  256. <SubType>Designer</SubType>
  257. <Generator>MSBuild:Compile</Generator>
  258. </Page>
  259. <Page Include="Views\Simu_EfemView.xaml">
  260. <SubType>Designer</SubType>
  261. <Generator>MSBuild:Compile</Generator>
  262. </Page>
  263. </ItemGroup>
  264. <ItemGroup>
  265. <Resource Include="Resources\simulator.ico" />
  266. </ItemGroup>
  267. <ItemGroup>
  268. <None Include="Config\_ioDefineVirgo.xml">
  269. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  270. <SubType>Designer</SubType>
  271. </None>
  272. </ItemGroup>
  273. <ItemGroup />
  274. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  275. </Project>