ZXingCpp.DemoReader.csproj 812 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. <IsPackable>false</IsPackable>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="SkiaSharp" Version="2.88.7" ExcludeAssets="native" />
  11. <!-- the following line was required to make dotnet install the missing *.so file on Linux -->
  12. <!-- on another platform, you will need to remove the "ExludeAssets" property above -->
  13. <PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="2.88.7" />
  14. <PackageReference Include="Magick.NET-Q8-x64" Version="13.5.0" />
  15. <ProjectReference Include="..\ZXingCpp\ZXingCpp.csproj" />
  16. </ItemGroup>
  17. </Project>