DeviceScanner.csproj 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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_ViewModel\GlobalData\GlobalData.csproj" />
  25. <ProjectReference Include="..\..\UICommon\UICommon.csproj" />
  26. <ProjectReference Include="..\..\Universal\Universal.csproj" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <Resource Include="Resources\Furnace.png" />
  30. <Resource Include="Resources\Kepler.png" />
  31. </ItemGroup>
  32. </Project>