-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed some documentation, added more logging
- Loading branch information
Kees
committed
May 4, 2022
1 parent
15a0c83
commit fe32ec1
Showing
22 changed files
with
107 additions
and
53 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>QPdfNet</id> | ||
<version>1.0.4</version> | ||
<authors>QPdfNet</authors> | ||
<icon>qpdf.png</icon> | ||
<readme>readme.md</readme> | ||
<projectUrl>https://github.com/Sicos1977/QPdfNet</projectUrl> | ||
<description>A C# wrapper around QPDF that gives you all the options that you normally would have from the QPDF console app</description> | ||
<releaseNotes>Added Pdf class and helper methods to parse output that is returned by some methods, also target .net 4.6.2</releaseNotes> | ||
<copyright>Copyright (c) 2021-2022 Kees van Spelde</copyright> | ||
<tags>qpdf pdf</tags> | ||
<repository type="git" url="https://github.com/Sicos1977/QPdfNet" /> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.6.2"> | ||
<dependency id="Microsoft.Extensions.Logging" version="6.0.0" exclude="Build,Analyzers" /> | ||
<dependency id="Newtonsoft.Json" version="13.0.1" exclude="Build,Analyzers" /> | ||
</group> | ||
<group targetFramework=".NETStandard2.1"> | ||
<dependency id="Microsoft.Extensions.Logging" version="6.0.0" exclude="Build,Analyzers" /> | ||
<dependency id="Newtonsoft.Json" version="13.0.1" exclude="Build,Analyzers" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="C:\Kees\QPdfNet\QPdfNet\bin\Release\net462\QPdfNet.dll" target="lib\net462\QPdfNet.dll" /> | ||
<file src="C:\Kees\QPdfNet\QPdfNet\bin\Release\net462\QPdfNet.xml" target="lib\net462\QPdfNet.xml" /> | ||
<file src="C:\Kees\QPdfNet\QPdfNet\bin\Release\netstandard2.1\QPdfNet.dll" target="lib\netstandard2.1\QPdfNet.dll" /> | ||
<file src="C:\Kees\QPdfNet\QPdfNet\bin\Release\netstandard2.1\QPdfNet.xml" target="lib\netstandard2.1\QPdfNet.xml" /> | ||
<file src="C:\Kees\QPdfNet\QPdfNet\x64\qpdf29.dll" target="x64\qpdf29.dll" /> | ||
<file src="C:\Kees\QPdfNet\QPdfNet\x64\qpdf29.dll" target="lib\qpdf29.dll" /> | ||
<file src="C:\Kees\QPdfNet\QPdfNet\x86\qpdf29.dll" target="x86\qpdf29.dll" /> | ||
<file src="C:\Kees\QPdfNet\QPdfNet\qpdf.png" target="\qpdf.png" /> | ||
<file src="C:\Kees\QPdfNet\QPdfNet\readme.md" target="\readme.md" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
16755749b01d13404506cbfde64bab4ccec9f869 | ||
6765686cfefe38791a2015a547831db52f934aa9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
QPdfNet/obj/Release/netstandard2.1/QPdfNet.AssemblyInfoInputs.cache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
16755749b01d13404506cbfde64bab4ccec9f869 | ||
6765686cfefe38791a2015a547831db52f934aa9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
QpdfNetTest/obj/Release/net6.0/QpdfNetTest.csproj.AssemblyReference.cache
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.