ZXingCpp.DemoWriter.csproj 742 B

12345678910111213141516171819
  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. <ProjectReference Include="..\ZXingCpp\ZXingCpp.csproj" />
  15. </ItemGroup>
  16. </Project>