ShakerManger.csproj 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <UseWPF>true</UseWPF>
  8. <ApplicationManifest>app.manifest</ApplicationManifest>
  9. <Title>电动振动台集散控制组件控制端</Title>
  10. <IsPublishable>False</IsPublishable>
  11. <Company>北京航天希尔测试技术有限公司</Company>
  12. <ApplicationIcon>管理端.ico</ApplicationIcon>
  13. <AssemblyName>电动振动台集散控制组件管理端</AssemblyName>
  14. <Authors>北京航天希尔测试技术有限公司</Authors>
  15. <NoWarn>$(NoWarn);SYSLIB0011;SYSLIB0006;SYSLIB0014;SYSLIB0051;SYSLIB0050;CS8618;CS8604;CS8600;CS8603;CS8618;CS8625;CS8629;CS8629;CS8601;CS8602;CS8622;CS8765;CS8714;CS8767;CS0672</NoWarn>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <None Remove="Resources\background.png" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <Content Include="管理端.ico" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  25. <PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Resource Include="Resources\background.png" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <ProjectReference Include="..\AppResource\AppResource.csproj" />
  32. <ProjectReference Include="..\EasyMQ.MessagePackSerializer\EasyMQ.MessagePackSerializer.csproj" />
  33. <ProjectReference Include="..\HandyControl\HandyControl\HandyControl.csproj" />
  34. <ProjectReference Include="..\OxyPlot\OxyPlot.SkiaSharp.Wpf\OxyPlot.SkiaSharp.Wpf.csproj" />
  35. <ProjectReference Include="..\Shaker.Model\Shaker.csproj" />
  36. <ProjectReference Include="..\XamlAnimatedGif\XamlAnimatedGif.csproj" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Compile Update="Properties\Resources.Designer.cs">
  40. <DesignTime>True</DesignTime>
  41. <AutoGen>True</AutoGen>
  42. <DependentUpon>Resources.resx</DependentUpon>
  43. </Compile>
  44. <Compile Update="View\DataSetPlotConfigView.xaml.cs">
  45. <SubType>Code</SubType>
  46. </Compile>
  47. </ItemGroup>
  48. <ItemGroup>
  49. <EmbeddedResource Update="Properties\Resources.resx">
  50. <Generator>ResXFileCodeGenerator</Generator>
  51. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  52. </EmbeddedResource>
  53. </ItemGroup>
  54. <ItemGroup>
  55. <None Update="GIF\Shaker0.gif">
  56. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  57. </None>
  58. <None Update="GIF\Shaker1.gif">
  59. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  60. </None>
  61. <None Update="GIF\Shaker3.gif">
  62. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  63. </None>
  64. </ItemGroup>
  65. <Import Project="..\ActiveMQ\Apache.NMS.ActiveMQ\Apache.NMS.ActiveMQ.projitems" Label="Shared" />
  66. <Import Project="..\EasyMQ\EasyMQ.projitems" Label="Shared" />
  67. <Import Project="..\ActiveMQ\ICSharpCode.SharpZipLib\ICSharpCode.SharpZipLib.projitems" Label="Shared" />
  68. </Project>