HistoryUI.csproj 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows7.0</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\History</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <Nullable>enable</Nullable>
  8. <UseWPF>true</UseWPF>
  9. <PlatformTarget>AnyCPU</PlatformTarget>
  10. <ApplicationManifest>app.manifest</ApplicationManifest>
  11. <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
  12. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  13. <UseWindowsForms>True</UseWindowsForms>
  14. <SatelliteResourceLanguages>zh-Hans</SatelliteResourceLanguages>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <Compile Remove="Data\**" />
  18. <Compile Remove="Helper\**" />
  19. <EmbeddedResource Remove="Data\**" />
  20. <EmbeddedResource Remove="Helper\**" />
  21. <None Remove="Data\**" />
  22. <None Remove="Helper\**" />
  23. <Page Remove="Data\**" />
  24. <Page Remove="Helper\**" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <PackageReference Include="CommunityToolkit.Mvvm" />
  28. <PackageReference Include="HandyControls" />
  29. <PackageReference Include="Prism.DryIoc" />
  30. <PackageReference Include="ScottPlot.WPF" />
  31. <PackageReference Include="System.Management" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <ProjectReference Include="..\Configs\CofigOperator\ConfigOperator.csproj" />
  35. <ProjectReference Include="..\ConsoleData\RealtimeData\RealtimeData.csproj" />
  36. <ProjectReference Include="..\DataBase\ORM\ORM.csproj" />
  37. <ProjectReference Include="..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
  38. <ProjectReference Include="..\ModelData\AlarmData\AlarmData.csproj" />
  39. <ProjectReference Include="..\ModelData\DBData\DBData.csproj" />
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Resource Include="Resources\BackGround.png" />
  43. <Resource Include="Resources\jetplasmalogo.png" />
  44. </ItemGroup>
  45. <ItemGroup>
  46. <Compile Update="Properties\Settings.Designer.cs">
  47. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  48. <AutoGen>True</AutoGen>
  49. <DependentUpon>Settings.settings</DependentUpon>
  50. </Compile>
  51. </ItemGroup>
  52. <ItemGroup>
  53. <None Update="Properties\Settings.settings">
  54. <Generator>SettingsSingleFileGenerator</Generator>
  55. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  56. </None>
  57. </ItemGroup>
  58. </Project>