ProximaAnalizer.csproj 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <OutputPath>$(SolutionDir)Binary\Analizer</OutputPath>
  8. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  9. <UseWPF>true</UseWPF>
  10. <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
  11. </PropertyGroup>
  12. <PropertyGroup>
  13. <OutputPath>$(SolutionDir)Binary</OutputPath>
  14. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  15. <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
  16. <OutputPath>$(SolutionDir)Binary\Analizer\Proxima</OutputPath>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <PackageReference Include="CommunityToolkit.Mvvm" />
  20. <PackageReference Include="Mapster" />
  21. <PackageReference Include="Prism.DryIoc" />
  22. <PackageReference Include="ScottPlot.WPF" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ProjectReference Include="..\..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
  26. <ProjectReference Include="..\..\Data\DataService\DataService.csproj" />
  27. <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
  28. </ItemGroup>
  29. </Project>