ShakerManger.csproj 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. </PropertyGroup>
  16. <ItemGroup>
  17. <None Remove="Resources\background.png" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Content Include="管理端.ico" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  24. <PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <Resource Include="Resources\background.png" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <ProjectReference Include="..\AppResource\AppResource.csproj" />
  31. <ProjectReference Include="..\EasyMQ.MessagePackSerializer\EasyMQ.MessagePackSerializer.csproj" />
  32. <ProjectReference Include="..\HandyControl\HandyControl\HandyControl.csproj" />
  33. <ProjectReference Include="..\OxyPlot\OxyPlot.SkiaSharp.Wpf\OxyPlot.SkiaSharp.Wpf.csproj" />
  34. <ProjectReference Include="..\Shaker.Model\Shaker.csproj" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Compile Update="Properties\Resources.Designer.cs">
  38. <DesignTime>True</DesignTime>
  39. <AutoGen>True</AutoGen>
  40. <DependentUpon>Resources.resx</DependentUpon>
  41. </Compile>
  42. <Compile Update="View\DataSetPlotConfigView.xaml.cs">
  43. <SubType>Code</SubType>
  44. </Compile>
  45. </ItemGroup>
  46. <ItemGroup>
  47. <EmbeddedResource Update="Properties\Resources.resx">
  48. <Generator>ResXFileCodeGenerator</Generator>
  49. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  50. </EmbeddedResource>
  51. </ItemGroup>
  52. </Project>