ProximaAnalizer.csproj 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. <ApplicationIcon>MyLogoNormal.ico</ApplicationIcon>
  18. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <Content Include="MyLogoNormal.ico" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <PackageReference Include="CommunityToolkit.Mvvm" />
  25. <PackageReference Include="Mapster" />
  26. <PackageReference Include="Prism.DryIoc" />
  27. <PackageReference Include="ScottPlot.WPF" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <ProjectReference Include="..\..\DataBase\SqlSugarORM\SqlSugarORM.csproj" />
  31. <ProjectReference Include="..\..\Data\DataService\DataService.csproj" />
  32. <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
  33. </ItemGroup>
  34. </Project>