Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/zxing-cpp/wrappers/dotnet/ZXingCpp/ZXingCpp.csproj @ 2:b50eed0cc0ef upstream
ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4.
The directory name has changed: no version number in the expanded directory now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 15 Sep 2025 11:43:07 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:1d09e1dec1d9 | 2:b50eed0cc0ef |
|---|---|
| 1 <Project Sdk="Microsoft.NET.Sdk"> | |
| 2 | |
| 3 <PropertyGroup> | |
| 4 <TargetFrameworks>netstandard2.0;net5.0</TargetFrameworks> | |
| 5 <LangVersion>9</LangVersion> | |
| 6 <AllowUnsafeBlocks>true</AllowUnsafeBlocks> <!-- required for netstandard2.0 fallback implementation of Marshal.PtrToStringUTF8() --> | |
| 7 <!-- <ImplicitUsings>enable</ImplicitUsings> --> | |
| 8 <Nullable>enable</Nullable> | |
| 9 | |
| 10 <PackageId>ZXingCpp</PackageId> | |
| 11 <Version>0.4.0-alpha</Version> | |
| 12 <Authors>Axel Waggershauser</Authors> | |
| 13 <Company>zxing-cpp</Company> | |
| 14 <Description> | |
| 15 ZXingCpp is a .NET wrapper for the C++ library zxing-cpp. | |
| 16 It is an open-source, multi-format linear/matrix barcode image processing library implemented in C++. | |
| 17 It was originally ported from the Java ZXing library but has been developed further and now includes | |
| 18 many improvements in terms of runtime and detection performance.</Description> | |
| 19 <PackageProjectUrl>https://github.com/zxing-cpp/zxing-cpp</PackageProjectUrl> | |
| 20 <PackageReadmeFile>README.md</PackageReadmeFile> | |
| 21 <PackageTags>Barcode;QRCode</PackageTags> | |
| 22 <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | |
| 23 </PropertyGroup> | |
| 24 | |
| 25 <ItemGroup> | |
| 26 <None Include="README.md" Pack="true" PackagePath="README.md"/> | |
| 27 <None Include="../runtimes/ZXing.dll" Pack="true" PackagePath="runtimes/win-x64/native/" /> | |
| 28 <None Include="../runtimes/libZXing.so" Pack="true" PackagePath="runtimes/linux-x64/native/" /> | |
| 29 <None Include="../runtimes/libZXing.dylib" Pack="true" PackagePath="runtimes/osx-x64/native/" /> | |
| 30 </ItemGroup> | |
| 31 </Project> | |
| 32 | |
| 33 <!-- .NET Standard 2. (netstandard), see https://learn.microsoft.com/en-us/dotnet/standard/net-standard?tabs=net-standard-1-0#when-to-target-net80-vs-netstandard --> | |
| 34 <!-- dotnet nuget push ZXingCpp/bin/Release/ZXingCpp.0.1.0-alpha.nupkg -s https://api.nuget.org/v3/index.json -k <api-key> --> |
