Test.csproj 696 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Library</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\Modules</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <Nullable>enable</Nullable>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. <UseWPF>true</UseWPF>
  10. <ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="CommunityToolkit.Mvvm" />
  14. <PackageReference Include="Prism.DryIoc" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
  18. </ItemGroup>
  19. </Project>