FurnaceNewWorld.csproj 914 B

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows7.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <UseWPF>true</UseWPF>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <OutputPath>$(SolutionDir)Binary\FurnaceUI</OutputPath>
  11. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  12. <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="CommunityToolkit.Mvvm" />
  16. <PackageReference Include="Mapster" />
  17. <PackageReference Include="Prism.DryIoc" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\Data\DataVM\DataVM.csproj" />
  21. <ProjectReference Include="..\UICommon\UICommon.csproj" />
  22. <ProjectReference Include="..\UIModules\ModuleBase\ModuleBase.csproj" />
  23. </ItemGroup>
  24. </Project>