DeviceScanner.csproj 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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. <OutputType>Library</OutputType>
  12. <TargetFramework>net8.0-windows</TargetFramework>
  13. <OutputPath>$(SolutionDir)Binary\Modules</OutputPath>
  14. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  15. <Nullable>enable</Nullable>
  16. <ImplicitUsings>enable</ImplicitUsings>
  17. <UseWPF>true</UseWPF>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <PackageReference Include="CommunityToolkit.Mvvm" />
  21. <PackageReference Include="Prism.DryIoc" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <ProjectReference Include="..\..\Data\Device\Device.csproj" />
  25. <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
  26. <ProjectReference Include="..\..\Universal\Universal.csproj" />
  27. </ItemGroup>
  28. </Project>