Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .nuget/nuget.exe
Binary file not shown.
24 changes: 24 additions & 0 deletions QPdfNet/Info/Pdf.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,28 @@ public class Pdf
return null;
}
#endregion

#region ContainsJavaScript
/// <summary>
/// Returns <c>true</c> when the PDF contains JavaScript, otherwise <c>false</c>
/// </summary>
/// <param name="fileName">The PDF file to check</param>
/// <returns><c>true</c> when JavaScript is found</returns>
/// <exception cref="Exception">Thrown when the qpdf operation fails or the file cannot be processed</exception>
public static bool ContainsJavaScript(string fileName)
{
Logger.LogInformation($"Checking if PDF '{fileName}' contains JavaScript");

var result = new Job().InputFile(fileName).Json().Run(out var output, out var data);

if (result != ExitCode.Success)
throw new Exception(output);

if (data == null)
return false;

var json = Encoding.ASCII.GetString(data);
return json.IndexOf("javascript", StringComparison.OrdinalIgnoreCase) >= 0;
}
#endregion
}
4 changes: 2 additions & 2 deletions QPdfNet/bin/Debug/netstandard2.1/QPdfNet.deps.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"targets": {
".NETStandard,Version=v2.1": {},
".NETStandard,Version=v2.1/": {
"QPdfNet/1.5.2": {
"QPdfNet/1.5.3": {
"dependencies": {
"Microsoft.Extensions.Logging": "10.0.3",
"Newtonsoft.Json": "13.0.4"
Expand Down Expand Up @@ -123,7 +123,7 @@
}
},
"libraries": {
"QPdfNet/1.5.2": {
"QPdfNet/1.5.3": {
"type": "project",
"serviceable": false,
"sha512": ""
Expand Down
8 changes: 8 additions & 0 deletions QPdfNet/bin/Debug/netstandard2.1/QPdfNet.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 5 additions & 6 deletions QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
Expand All @@ -14,13 +13,13 @@
[assembly: System.Reflection.AssemblyCompanyAttribute("QPdfNet")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright (c) 2021-2026 Kees van Spelde")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("A C# wrapper around QPDF that gives you all the options that you normally would h" +
"ave from the QPDF console app")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.5.2.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.5.2+35bbde27cc44d670bbcbb4217d958e83a320c433")]
[assembly: System.Reflection.AssemblyDescriptionAttribute(("A C# wrapper around QPDF that gives you all the options that you normally would h" +
"ave from the QPDF console app"))]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.5.3.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.5.3+e4ac9a484e2d0115df3129eb4dce28c33ee62619")]
[assembly: System.Reflection.AssemblyProductAttribute("QPdfNet")]
[assembly: System.Reflection.AssemblyTitleAttribute("QPdfNet")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.5.2.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.5.3.0")]
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/Sicos1977/QPdfNet")]

// Generated by the MSBuild WriteCodeFragment class.
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17797078582c1d77aeb368198574e2695e6b8c58c0551382ab31eacaf40342a6
81ecdd23356cf3315686e0c8325558de665fbc39ab578a50ca1a8509b7dfb9a7
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
is_global = true
build_property.RootNamespace = QPdfNet
build_property.ProjectDir = C:\Kees\QPdfNet\QPdfNet\
build_property.ProjectDir = /home/runner/work/QPdfNet/QPdfNet/QPdfNet/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.CsWinRTUseWindowsUIXamlProjections = false
Expand Down
Binary file modified QPdfNet/obj/Debug/netstandard2.1/QPdfNet.assets.cache
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
a53962cd0011c17c510bf4c3505edde3a23dc67062bea105db326908d74424de
bc00a2ab75c1c4f23ea84f59e521777a56e1cefb4f6b9edb33e7a46f12dbb9b3
150 changes: 90 additions & 60 deletions QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.FileListAbsolute.txt
Original file line number Diff line number Diff line change
@@ -1,60 +1,90 @@
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\QPdfNet.dll.config
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\QPdfNet.deps.json
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\QPdfNet.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\QPdfNet.pdb
C:\Kees\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.csproj.AssemblyReference.cache
C:\Kees\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.GeneratedMSBuildEditorConfig.editorconfig
C:\Kees\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.AssemblyInfoInputs.cache
C:\Kees\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.AssemblyInfo.cs
C:\Kees\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.csproj.CoreCompileInputs.cache
C:\Kees\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.dll
C:\Kees\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.pdb
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\qpdf29.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\qpdf29.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\QPdfNet.dll.config
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\QPdfNet.xml
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\QPdfNet.deps.json
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\QPdfNet.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\QPdfNet.pdb
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.csproj.AssemblyReference.cache
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.GeneratedMSBuildEditorConfig.editorconfig
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.AssemblyInfoInputs.cache
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.AssemblyInfo.cs
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.csproj.CoreCompileInputs.cache
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.pdb
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\concrt140.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\msvcp140.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\msvcp140_1.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\msvcp140_2.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\msvcp140_atomic_wait.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\msvcp140_codecvt_ids.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\vcruntime140.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\vcruntime140_1.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\concrt140.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\msvcp140.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\msvcp140_1.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\msvcp140_2.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\msvcp140_atomic_wait.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\msvcp140_codecvt_ids.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\vcruntime140.dll
D:\Progsoft\_GitHub_\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.sourcelink.json
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\concrt140.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\msvcp140.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\msvcp140_1.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\msvcp140_2.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\msvcp140_atomic_wait.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\msvcp140_codecvt_ids.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\vcruntime140.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\vcruntime140_1.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\concrt140.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\msvcp140.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\msvcp140_1.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\msvcp140_2.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\msvcp140_atomic_wait.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\msvcp140_codecvt_ids.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\vcruntime140.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\QPdfNet.xml
C:\Kees\QPdfNet\QPdfNet\obj\Debug\netstandard2.1\QPdfNet.sourcelink.json
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x64\qpdf30.dll
C:\Kees\QPdfNet\QPdfNet\bin\Debug\netstandard2.1\x86\qpdf30.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.dll.config
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.deps.json
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.pdb
C:/Kees/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.AssemblyReference.cache
C:/Kees/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.GeneratedMSBuildEditorConfig.editorconfig
C:/Kees/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfoInputs.cache
C:/Kees/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfo.cs
C:/Kees/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.CoreCompileInputs.cache
C:/Kees/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.dll
C:/Kees/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.pdb
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/qpdf29.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/qpdf29.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.dll.config
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.xml
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.deps.json
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.pdb
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.AssemblyReference.cache
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.GeneratedMSBuildEditorConfig.editorconfig
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfoInputs.cache
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfo.cs
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.CoreCompileInputs.cache
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.pdb
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/concrt140.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140_1.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140_2.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140_atomic_wait.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140_codecvt_ids.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/vcruntime140.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/vcruntime140_1.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/concrt140.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140_1.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140_2.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140_atomic_wait.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140_codecvt_ids.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/vcruntime140.dll
D:/Progsoft/_GitHub_/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.sourcelink.json
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/concrt140.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140_1.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140_2.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140_atomic_wait.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140_codecvt_ids.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/vcruntime140.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/vcruntime140_1.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/concrt140.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140_1.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140_2.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140_atomic_wait.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140_codecvt_ids.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/vcruntime140.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.xml
C:/Kees/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.sourcelink.json
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/qpdf30.dll
C:/Kees/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/qpdf30.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/concrt140.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140_1.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140_2.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140_atomic_wait.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/msvcp140_codecvt_ids.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/qpdf30.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/vcruntime140.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x64/vcruntime140_1.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/concrt140.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140_1.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140_2.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140_atomic_wait.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/msvcp140_codecvt_ids.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/qpdf30.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/x86/vcruntime140.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.dll.config
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.xml
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.deps.json
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.pdb
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.AssemblyReference.cache
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.GeneratedMSBuildEditorConfig.editorconfig
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfoInputs.cache
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfo.cs
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.CoreCompileInputs.cache
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.sourcelink.json
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.dll
/home/runner/work/QPdfNet/QPdfNet/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.pdb
30 changes: 15 additions & 15 deletions QPdfNet/obj/QPdfNet.csproj.nuget.dgspec.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,27 @@
{
"format": 1,
"restore": {
"C:\\Kees\\QPdfNet\\QPdfNet\\QPdfNet.csproj": {}
"/home/runner/work/QPdfNet/QPdfNet/QPdfNet/QPdfNet.csproj": {}
},
"projects": {
"C:\\Kees\\QPdfNet\\QPdfNet\\QPdfNet.csproj": {
"/home/runner/work/QPdfNet/QPdfNet/QPdfNet/QPdfNet.csproj": {
"version": "1.5.3",
"restore": {
"projectUniqueName": "C:\\Kees\\QPdfNet\\QPdfNet\\QPdfNet.csproj",
"projectUniqueName": "/home/runner/work/QPdfNet/QPdfNet/QPdfNet/QPdfNet.csproj",
"projectName": "QPdfNet",
"projectPath": "C:\\Kees\\QPdfNet\\QPdfNet\\QPdfNet.csproj",
"packagesPath": "C:\\Users\\AO303388\\.nuget\\packages\\",
"outputPath": "C:\\Kees\\QPdfNet\\QPdfNet\\obj\\",
"projectPath": "/home/runner/work/QPdfNet/QPdfNet/QPdfNet/QPdfNet.csproj",
"packagesPath": "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages",
"outputPath": "/home/runner/work/QPdfNet/QPdfNet/QPdfNet/obj/",
"projectStyle": "PackageReference",
"crossTargeting": true,
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\AO303388\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
"/home/runner/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"netstandard2.0",
"netstandard2.1"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
Expand Down Expand Up @@ -86,7 +80,7 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.103\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/RuntimeIdentifierGraph.json"
},
"netstandard2.1": {
"targetAlias": "netstandard2.1",
Expand All @@ -111,12 +105,18 @@
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "NETStandard.Library.Ref",
"version": "[2.1.0, 2.1.0]"
}
],
"frameworkReferences": {
"NETStandard.Library": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.103\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/RuntimeIdentifierGraph.json"
}
}
}
Expand Down
Loading