SCADA_DAQ - Backup (1).csproj 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFrameworks>net47;</TargetFrameworks>
  5. <Nullable>disable</Nullable>
  6. <UseWPF>true</UseWPF>
  7. <UseWindowsForms>true</UseWindowsForms>
  8. <BulidIndex>0</BulidIndex>
  9. <VersionSuffix>$([System.DateTime]::Now.ToString(yyyy)).$([System.DateTime]::Now.ToString(MM)).$([System.DateTime]::Now.ToString(dd)).$(BulidIndex)</VersionSuffix>
  10. <AssemblyVersion Condition=" '$(VersionSuffix)' == '' ">0.0.0.1</AssemblyVersion>
  11. <AssemblyVersion Condition=" '$(VersionSuffix)' != '' ">$(VersionSuffix)</AssemblyVersion>
  12. <Version Condition=" '$(VersionSuffix)' == '' ">0.0.1.0</Version>
  13. <Version Condition=" '$(VersionSuffix)' != '' ">$(VersionSuffix)</Version>
  14. <AssemblyName>SCADA_DAQ3.0</AssemblyName>
  15. <Title>测试</Title>
  16. <Product>SCADA_DAQ</Product>
  17. <Company>SCADA_DAQ</Company>
  18. <Authors>SCADA_DAQ</Authors>
  19. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  20. <PackageIcon>logo.ico</PackageIcon>
  21. <RepositoryUrl>https://gitee.com/cd200607139/scada_-daq3.0.git</RepositoryUrl>
  22. <ApplicationIcon>Icon\logo.ico</ApplicationIcon>
  23. </PropertyGroup>
  24. <ItemGroup>
  25. <Compile Remove="Properties\**" />
  26. <EmbeddedResource Remove="Properties\**" />
  27. <None Remove="Properties\**" />
  28. <Page Remove="Properties\**" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <Compile Remove="Machines\RpcClientService.cs" />
  32. </ItemGroup>
  33. <ItemGroup Condition="'$(TargetFramework)' == 'net6.0-windows7.0'">
  34. <PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
  35. <PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <None Remove="LocalApp.zip" />
  39. <None Remove="QwPlatform.zip" />
  40. </ItemGroup>
  41. <!--<ItemGroup Condition="'$(TargetFramework)' == 'net46'">
  42. <Reference Include="System.ComponentModel.DataAnnotations" />
  43. <Reference Include="System.Data.DataSetExtensions" />
  44. <Reference Include="Opc.Ua.Core">
  45. <HintPath>..\Lib\$(TargetFramework)\Opc.Ua.Core.dll</HintPath>
  46. </Reference>
  47. <Reference Include="Opc.Ua.Client">
  48. <HintPath>..\Lib\$(TargetFramework)\Opc.Ua.Client.dll</HintPath>
  49. </Reference>
  50. </ItemGroup>-->
  51. <ItemGroup>
  52. <ProjectReference Include="..\SCADA_DAQ.DAL\SCADA_DAQ.DAL.csproj" />
  53. <ProjectReference Include="..\SCADA_DAQ.Language\SCADA_DAQ.Language.csproj" />
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Reference Include="ControlzEx">
  57. <HintPath>..\Lib\ControlzEx.dll</HintPath>
  58. <Private>False</Private>
  59. </Reference>
  60. <Reference Include="ICSharpCode.SharpZipLib">
  61. <HintPath>..\Lib\ICSharpCode.SharpZipLib.dll</HintPath>
  62. <Private>False</Private>
  63. </Reference>
  64. <Reference Include="LibreHardwareMonitorLib">
  65. <HintPath>..\Lib\LibreHardwareMonitorLib.dll</HintPath>
  66. <Private>False</Private>
  67. </Reference>
  68. <Reference Include="log4net">
  69. <HintPath>..\Lib\log4net.dll</HintPath>
  70. <Private>False</Private>
  71. </Reference>
  72. <Reference Include="MahApps.Metro">
  73. <HintPath>..\Lib\MahApps.Metro.dll</HintPath>
  74. <Private>False</Private>
  75. </Reference>
  76. <Reference Include="MahApps.Metro.IconPacks.Codicons">
  77. <HintPath>..\Lib\MahApps.Metro.IconPacks.Codicons.dll</HintPath>
  78. <Private>False</Private>
  79. </Reference>
  80. <Reference Include="MahApps.Metro.IconPacks.Core">
  81. <HintPath>..\Lib\MahApps.Metro.IconPacks.Core.dll</HintPath>
  82. <Private>False</Private>
  83. </Reference>
  84. <Reference Include="MahApps.Metro.IconPacks.Material">
  85. <HintPath>..\Lib\MahApps.Metro.IconPacks.Material.dll</HintPath>
  86. <Private>False</Private>
  87. </Reference>
  88. <Reference Include="MahApps.Metro.IconPacks.RemixIcon">
  89. <HintPath>..\Lib\MahApps.Metro.IconPacks.RemixIcon.dll</HintPath>
  90. <Private>False</Private>
  91. </Reference>
  92. <Reference Include="Microsoft.CSharp" />
  93. <Reference Include="Microsoft.DwayneNeed">
  94. <HintPath>..\Lib\Microsoft.DwayneNeed.dll</HintPath>
  95. <Private>False</Private>
  96. </Reference>
  97. <Reference Include="Microsoft.DwayneNeed.Win32">
  98. <HintPath>..\Lib\Microsoft.DwayneNeed.Win32.dll</HintPath>
  99. <Private>False</Private>
  100. </Reference>
  101. <Reference Include="Microsoft.Expression.Interactions">
  102. <HintPath>..\Lib\Microsoft.Expression.Interactions.dll</HintPath>
  103. <Private>False</Private>
  104. </Reference>
  105. <Reference Include="Microsoft.Xaml.Behaviors">
  106. <HintPath>..\Lib\Microsoft.Xaml.Behaviors.dll</HintPath>
  107. <Private>False</Private>
  108. </Reference>
  109. <Reference Include="Mono.Security">
  110. <HintPath>..\Lib\Mono.Security.dll</HintPath>
  111. <Private>False</Private>
  112. </Reference>
  113. <Reference Include="MySql.Data">
  114. <HintPath>..\Lib\MySql.Data.dll</HintPath>
  115. <Private>False</Private>
  116. </Reference>
  117. <Reference Include="Newtonsoft.Json">
  118. <HintPath>..\Lib\Newtonsoft.Json.dll</HintPath>
  119. <Private>False</Private>
  120. </Reference>
  121. <Reference Include="Npgsql">
  122. <HintPath>..\Lib\Npgsql.dll</HintPath>
  123. <Private>False</Private>
  124. </Reference>
  125. <Reference Include="NPOI">
  126. <HintPath>..\Lib\NPOI.dll</HintPath>
  127. <Private>False</Private>
  128. </Reference>
  129. <Reference Include="NPOI.OOXML">
  130. <HintPath>..\Lib\NPOI.OOXML.dll</HintPath>
  131. <Private>False</Private>
  132. </Reference>
  133. <Reference Include="NPOI.OpenXml4Net">
  134. <HintPath>..\Lib\NPOI.OpenXml4Net.dll</HintPath>
  135. <Private>False</Private>
  136. </Reference>
  137. <Reference Include="NPOI.OpenXmlFormats">
  138. <HintPath>..\Lib\NPOI.OpenXmlFormats.dll</HintPath>
  139. <Private>False</Private>
  140. </Reference>
  141. <Reference Include="Opc.Ua.Client">
  142. <HintPath>..\Lib\Opc.Ua.Client.dll</HintPath>
  143. <Private>False</Private>
  144. </Reference>
  145. <Reference Include="Opc.Ua.Configuration">
  146. <HintPath>..\Lib\Opc.Ua.Configuration.dll</HintPath>
  147. <Private>False</Private>
  148. </Reference>
  149. <Reference Include="Opc.Ua.Core">
  150. <HintPath>..\Lib\Opc.Ua.Core.dll</HintPath>
  151. <Private>False</Private>
  152. </Reference>
  153. <Reference Include="Opc.Ua.Server">
  154. <HintPath>..\Lib\Opc.Ua.Server.dll</HintPath>
  155. <Private>False</Private>
  156. </Reference>
  157. <Reference Include="Oracle.ManagedDataAccess">
  158. <HintPath>..\Lib\Oracle.ManagedDataAccess.dll</HintPath>
  159. <Private>False</Private>
  160. </Reference>
  161. <Reference Include="QRCoder">
  162. <HintPath>..\Lib\QRCoder.dll</HintPath>
  163. <Private>False</Private>
  164. </Reference>
  165. <Reference Include="Quartz">
  166. <HintPath>..\Lib\Quartz.dll</HintPath>
  167. <Private>False</Private>
  168. </Reference>
  169. <Reference Include="SCADA">
  170. <HintPath>..\Lib\SCADA.dll</HintPath>
  171. </Reference>
  172. <Reference Include="SCADA.CNC.FANUC">
  173. <HintPath>..\Lib\SCADA.CNC.FANUC.dll</HintPath>
  174. <Private>False</Private>
  175. </Reference>
  176. <Reference Include="SCADA.CommonCtrl">
  177. <HintPath>..\Lib\SCADA.CommonCtrl.dll</HintPath>
  178. <Private>False</Private>
  179. </Reference>
  180. <Reference Include="SCADA.CommonLib">
  181. <HintPath>..\Lib\SCADA.CommonLib.dll</HintPath>
  182. <Private>False</Private>
  183. </Reference>
  184. <Reference Include="SCADA_DAQ.Plugin.Core">
  185. <HintPath>..\Lib\SCADA_DAQ.Plugin.Core.dll</HintPath>
  186. <Private>False</Private>
  187. </Reference>
  188. <Reference Include="SCADA_DAQ.Plugin.CoreUI">
  189. <HintPath>..\Lib\SCADA_DAQ.Plugin.CoreUI.dll</HintPath>
  190. <Private>False</Private>
  191. </Reference>
  192. <Reference Include="SCADA_DAQ.Plugin.Machine">
  193. <HintPath>..\Lib\SCADA_DAQ.Plugin.Machine.dll</HintPath>
  194. <Private>False</Private>
  195. </Reference>
  196. <Reference Include="SCADA_DAQ.Plugin.MachineUI">
  197. <HintPath>..\Lib\SCADA_DAQ.Plugin.MachineUI.dll</HintPath>
  198. <Private>False</Private>
  199. </Reference>
  200. <Reference Include="SCADA_DAQ.Plugin.RESTful">
  201. <HintPath>..\Lib\SCADA_DAQ.Plugin.RESTful.dll</HintPath>
  202. <Private>False</Private>
  203. </Reference>
  204. <Reference Include="System.ComponentModel.DataAnnotations" />
  205. <Reference Include="System.Data.SQLite">
  206. <HintPath>..\Lib\System.Data.SQLite.dll</HintPath>
  207. <Private>False</Private>
  208. </Reference>
  209. <Reference Include="System.Threading.Thread">
  210. <HintPath>..\Lib\System.Threading.Thread.dll</HintPath>
  211. <Private>False</Private>
  212. </Reference>
  213. <Reference Include="System.ValueTuple">
  214. <HintPath>..\Lib\System.ValueTuple.dll</HintPath>
  215. <Private>False</Private>
  216. </Reference>
  217. <Reference Include="System.Windows.Interactivity">
  218. <HintPath>..\Lib\System.Windows.Interactivity.dll</HintPath>
  219. <Private>False</Private>
  220. </Reference>
  221. <Reference Include="Xceed.Wpf.Toolkit">
  222. <HintPath>..\Lib\Xceed.Wpf.Toolkit.dll</HintPath>
  223. <Private>False</Private>
  224. </Reference>
  225. </ItemGroup>
  226. <ItemGroup>
  227. <Compile Update="LocalResource.Designer.cs">
  228. <DesignTime>True</DesignTime>
  229. <AutoGen>True</AutoGen>
  230. <DependentUpon>LocalResource.resx</DependentUpon>
  231. </Compile>
  232. <Compile Update="Machines\TagConstDefine.cs">
  233. <DesignTime>True</DesignTime>
  234. <AutoGen>True</AutoGen>
  235. <DependentUpon>TagConstDefine.tt</DependentUpon>
  236. </Compile>
  237. </ItemGroup>
  238. <ItemGroup>
  239. <EmbeddedResource Update="LocalResource.resx">
  240. <Generator>ResXFileCodeGenerator</Generator>
  241. <LastGenOutput>LocalResource.Designer.cs</LastGenOutput>
  242. </EmbeddedResource>
  243. </ItemGroup>
  244. <ItemGroup>
  245. <None Update="Machines\TagConstDefine.tt">
  246. <LastGenOutput>TagConstDefine.cs</LastGenOutput>
  247. <Generator>TextTemplatingFileGenerator</Generator>
  248. </None>
  249. <None Update="Tools\EICPDesk.exe">
  250. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  251. </None>
  252. <None Update="Tools\screenshot.exe">
  253. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  254. </None>
  255. <None Update="Tools\StartVPN.bat">
  256. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  257. </None>
  258. <None Update="Tools\VPN05_1.pbk">
  259. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  260. </None>
  261. <None Update="x64\SQLite.Interop.dll">
  262. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  263. </None>
  264. <None Update="x86\SQLite.Interop.dll">
  265. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  266. </None>
  267. </ItemGroup>
  268. <ItemGroup>
  269. <Folder Include="Customer\Dashboard\" />
  270. </ItemGroup>
  271. <ItemGroup>
  272. <Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
  273. </ItemGroup>
  274. <Target Name="PostBuild" AfterTargets="PostBuildEvent">
  275. <Exec Command="goto label&#xD;&#xA;:label&#xD;&#xA;set ProjectId=&quot;00&quot;&#xD;&#xA;set TargetPath=&quot;D:\项目代码管理\发布管理\Updates\%25ProjectId%25$(TargetName)&quot;&#xD;&#xA;set SrcPath=&quot;$(TargetDir)&quot;&#xD;&#xA;set LibPath=&quot;$(SolutionDir)lib&quot;&#xD;&#xA;@echo %25LibPath%25&#xD;&#xA;if not exist &quot;%25TargetPath%25&quot; md &quot;%25TargetPath%25&quot;&#xD;&#xA;if not exist &quot;%25TargetPath%25\Publish\&quot; md &quot;%25TargetPath%25\Publish\&quot;&#xD;&#xA;if not exist &quot;%25TargetPath%25\Publish\SystemLibs\&quot; md &quot;%25TargetPath%25\Publish\SystemLibs\&quot;&#xD;&#xA;xcopy &quot;%25SrcPath%25$(TargetName).pdb&quot; &quot;%25TargetPath%25\Publish\&quot; /Y&#xD;&#xA;&#xD;&#xA;if not exist &quot;%25SrcPath%25\SystemLibs&quot; md &quot;%25SrcPath%25\SystemLibs&quot;&#xD;&#xA;del /f /q &quot;%25SrcPath%25\SystemLibs\*.dll&quot;&#xD;&#xA;xcopy &quot;%25SrcPath%25*System.*.dll&quot; &quot;%25SrcPath%25\SystemLibs&quot; /Y&#xD;&#xA;del /f /q &quot;%25SrcPath%25*System.*.dll&quot;&#xD;&#xA;xcopy &quot;%25SrcPath%25*Microsoft.*.dll&quot; &quot;%25SrcPath%25\SystemLibs&quot; /Y&#xD;&#xA;@rem del /f /q &quot;%25SrcPath%25*.dll&quot;&#xD;&#xA;del /f /q &quot;%25SrcPath%25\plugin\&quot; &#xD;&#xA;xcopy &quot;%25LibPath%25\*.dll&quot; &quot;%25SrcPath%25\plugin\&quot; /Y&#xD;&#xA;xcopy &quot;%25LibPath%25\*.pdb&quot; &quot;%25SrcPath%25\plugin\&quot; /Y&#xD;&#xA;&#xD;&#xA;del /f /q &quot;%25TargetPath%25\Publish\SystemLibs\Data\*.*&quot;&#xD;&#xA;del /f /q &quot;%25TargetPath%25\Publish\SystemLibs\*.*&quot;&#xD;&#xA;del /f /q &quot;%25TargetPath%25\Publish\plugin\*.*&quot;&#xD;&#xA;del /f /q &quot;%25TargetPath%25\Publish\*.*&quot;&#xD;&#xA;xcopy &quot;%25SrcPath%25SystemLibs\*.dll&quot; &quot;%25TargetPath%25\Publish\SystemLibs\&quot; /Y&#xD;&#xA;xcopy &quot;%25SrcPath%25plugin\*.dll&quot; &quot;%25TargetPath%25\Publish\plugin\&quot; /Y&#xD;&#xA;&#xD;&#xA;xcopy &quot;%25SrcPath%25*.dll&quot; &quot;%25TargetPath%25\Publish\&quot; /Y&#xD;&#xA;xcopy &quot;%25SrcPath%25*\screenshot.exe&quot; &quot;%25TargetPath%25\Publish\&quot; /Y&#xD;&#xA;xcopy &quot;%25SrcPath%25$(TargetFileName)&quot; &quot;%25TargetPath%25\Publish\&quot; /Y&#xD;&#xA;xcopy &quot;%25SrcPath%25\$(TargetFileName)&quot; &quot;%25TargetPath%25\&quot; /Y&#xD;&#xA;xcopy &quot;$(ProjectDir)\SCADA_DAQ.UpdateService.exe&quot; &quot;%25TargetPath%25\&quot; /Y&#xD;&#xA;xcopy &quot;%25SrcPath%25\$(TargetFileName).config&quot; &quot;%25TargetPath%25\Publish\&quot; /Y&#xD;&#xA;xcopy &quot;%25SrcPath%25\x86\*.*&quot; &quot;%25TargetPath%25\Publish\x86\&quot; /Y&#xD;&#xA;xcopy &quot;%25SrcPath%25\x64\*.*&quot; &quot;%25TargetPath%25\Publish\x64\&quot; /Y&#xD;&#xA;if exist &quot;%25SrcPath%25\HCNetSDKCom&quot; xcopy &quot;%25SrcPath%25\HCNetSDKCom\*.*&quot; &quot;%25TargetPath%25\Publish\HCNetSDKCom\&quot; /Y&#xD;&#xA;if exist &quot;%25SrcPath%25\EmguSDK&quot; xcopy &quot;%25SrcPath%25\EmguSDK\*.*&quot; &quot;%25TargetPath%25\Publish\\EmguSDK\&quot; /Y&#xD;&#xA;if exist &quot;$(ProjectDir)Content.zip&quot; xcopy &quot;$(ProjectDir)Content.zip&quot; &quot;%25TargetPath%25\Publish\&quot; /Y&#xD;&#xA;if exist &quot;$(ProjectDir)Icon\logo.ico&quot; echo F | xcopy &quot;$(ProjectDir)Icon\logo.ico&quot; &quot;%25TargetPath%25\Publish\Content\Img\favicon.ico&quot; /Y&#xD;&#xA;if exist &quot;$(ProjectDir)Icon\logo.ico&quot; echo F | xcopy &quot;$(ProjectDir)Icon\logo.ico&quot; &quot;$(OutDir)\Content\Img\favicon.ico&quot; /Y&#xD;&#xA;xcopy &quot;$(ProjectDir)Icon\*.*&quot; &quot;%25TargetPath%25\Publish\Content\Img\&quot; /Y&#xD;&#xA;if exist &quot;$(ProjectDir)Tools&quot; echo F | xcopy &quot;$(ProjectDir)Tools\*.*&quot; &quot;%25TargetPath%25\Publish\Tools\&quot; /Y&#xD;&#xA;&#xD;&#xA;xcopy &quot;%25SrcPath%25\plugin\SCADA.CommonLib.dll&quot; %25SrcPath%25 /Y&#xD;&#xA;xcopy &quot;%25SrcPath%25\plugin\SCADA.CommonCtrl.dll&quot; %25SrcPath%25 /Y&#xD;&#xA;xcopy &quot;%25SrcPath%25\plugin\SCADA.dll&quot; %25SrcPath%25 /Y&#xD;&#xA;xcopy &quot;%25SrcPath%25\plugin\Opc.Ua.*.dll&quot; %25SrcPath%25 /Y&#xD;&#xA;del /f /q &quot;%25SrcPath%25\plugin\SCADA.CommonLib.dll&quot;&#xD;&#xA;del /f /q &quot;%25SrcPath%25\plugin\SCADA.CommonCtrl.dll&quot; &#xD;&#xA;del /f /q &quot;%25SrcPath%25\plugin\SCADA.dll&quot;&#xD;&#xA;del /f /q &quot;%25SrcPath%25\plugin\Opc.Ua.*.dll&quot; &#xD;&#xA;" />
  276. </Target>
  277. <ItemGroup>
  278. <Reference Update="PresentationCore">
  279. <Private>False</Private>
  280. </Reference>
  281. </ItemGroup>
  282. <ItemGroup>
  283. <Reference Update="PresentationFramework">
  284. <Private>False</Private>
  285. </Reference>
  286. </ItemGroup>
  287. <ItemGroup>
  288. <Reference Update="System">
  289. <Private>False</Private>
  290. </Reference>
  291. </ItemGroup>
  292. <ItemGroup>
  293. <Reference Update="System.Core">
  294. <Private>False</Private>
  295. </Reference>
  296. </ItemGroup>
  297. <ItemGroup>
  298. <Reference Update="System.Data">
  299. <Private>False</Private>
  300. </Reference>
  301. </ItemGroup>
  302. <ItemGroup>
  303. <Reference Update="System.Drawing">
  304. <Private>False</Private>
  305. </Reference>
  306. </ItemGroup>
  307. <ItemGroup>
  308. <Reference Update="System.IO.Compression.FileSystem">
  309. <Private>False</Private>
  310. </Reference>
  311. </ItemGroup>
  312. <ItemGroup>
  313. <Reference Update="System.Numerics">
  314. <Private>False</Private>
  315. </Reference>
  316. </ItemGroup>
  317. <ItemGroup>
  318. <Reference Update="System.Runtime.Serialization">
  319. <Private>False</Private>
  320. </Reference>
  321. </ItemGroup>
  322. <ItemGroup>
  323. <Reference Update="System.Windows.Controls.Ribbon">
  324. <Private>False</Private>
  325. </Reference>
  326. </ItemGroup>
  327. <ItemGroup>
  328. <Reference Update="System.Windows.Forms">
  329. <Private>False</Private>
  330. </Reference>
  331. </ItemGroup>
  332. <ItemGroup>
  333. <Reference Update="System.Xaml">
  334. <Private>False</Private>
  335. </Reference>
  336. </ItemGroup>
  337. <ItemGroup>
  338. <Reference Update="System.Xml">
  339. <Private>False</Private>
  340. </Reference>
  341. </ItemGroup>
  342. <ItemGroup>
  343. <Reference Update="System.Xml.Linq">
  344. <Private>False</Private>
  345. </Reference>
  346. </ItemGroup>
  347. <ItemGroup>
  348. <Reference Update="UIAutomationClient">
  349. <Private>False</Private>
  350. </Reference>
  351. </ItemGroup>
  352. <ItemGroup>
  353. <Reference Update="UIAutomationClientSideProviders">
  354. <Private>False</Private>
  355. </Reference>
  356. </ItemGroup>
  357. <ItemGroup>
  358. <Reference Update="UIAutomationProvider">
  359. <Private>False</Private>
  360. </Reference>
  361. </ItemGroup>
  362. <ItemGroup>
  363. <Reference Update="UIAutomationTypes">
  364. <Private>False</Private>
  365. </Reference>
  366. </ItemGroup>
  367. <ItemGroup>
  368. <Reference Update="WindowsBase">
  369. <Private>False</Private>
  370. </Reference>
  371. </ItemGroup>
  372. <ItemGroup>
  373. <Reference Update="WindowsFormsIntegration">
  374. <Private>False</Private>
  375. </Reference>
  376. </ItemGroup>
  377. </Project>