HistoryUI.csproj 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. </PropertyGroup>
  15. <ItemGroup>
  16. <Compile Remove="Data\**" />
  17. <Compile Remove="Helper\**" />
  18. <EmbeddedResource Remove="Data\**" />
  19. <EmbeddedResource Remove="Helper\**" />
  20. <None Remove="Data\**" />
  21. <None Remove="Helper\**" />
  22. <Page Remove="Data\**" />
  23. <Page Remove="Helper\**" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <PackageReference Include="CommunityToolkit.Mvvm" />
  27. <PackageReference Include="HandyControls" />
  28. <PackageReference Include="Prism.DryIoc" />
  29. <PackageReference Include="ScottPlot.WPF" />
  30. <PackageReference Include="System.Management" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <ProjectReference Include="..\Configs\CofigOperator\ConfigOperator.csproj" />
  34. <ProjectReference Include="..\ConsoleData\RealtimeData\RealtimeData.csproj" />
  35. <ProjectReference Include="..\DataBase\ORM\ORM.csproj" />
  36. <ProjectReference Include="..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
  37. <ProjectReference Include="..\ModelData\AlarmData\AlarmData.csproj" />
  38. <ProjectReference Include="..\ModelData\DBData\DBData.csproj" />
  39. </ItemGroup>
  40. <ItemGroup>
  41. <Resource Include="Resources\BackGround.png" />
  42. <Resource Include="Resources\jetplasmalogo.png" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <Compile Update="Properties\Settings.Designer.cs">
  46. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  47. <AutoGen>True</AutoGen>
  48. <DependentUpon>Settings.settings</DependentUpon>
  49. </Compile>
  50. </ItemGroup>
  51. <ItemGroup>
  52. <None Update="Properties\Settings.settings">
  53. <Generator>SettingsSingleFileGenerator</Generator>
  54. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  55. </None>
  56. </ItemGroup>
  57. </Project>