ProximaAnalizer.csproj 1.3 KB

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