diff --git a/.nuget/nuget.exe b/.nuget/nuget.exe
new file mode 100644
index 0000000..5e246fb
Binary files /dev/null and b/.nuget/nuget.exe differ
diff --git a/QPdfNet/Info/Pdf.cs b/QPdfNet/Info/Pdf.cs
index c8d6e85..fb9d9a7 100644
--- a/QPdfNet/Info/Pdf.cs
+++ b/QPdfNet/Info/Pdf.cs
@@ -129,4 +129,28 @@ public class Pdf
return null;
}
#endregion
+
+ #region ContainsJavaScript
+ ///
+ /// Returns true when the PDF contains JavaScript, otherwise false
+ ///
+ /// The PDF file to check
+ /// true when JavaScript is found
+ /// Thrown when the qpdf operation fails or the file cannot be processed
+ 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
}
\ No newline at end of file
diff --git a/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.deps.json b/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.deps.json
index 58f3718..cdc2e2c 100644
--- a/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.deps.json
+++ b/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.deps.json
@@ -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"
@@ -123,7 +123,7 @@
}
},
"libraries": {
- "QPdfNet/1.5.2": {
+ "QPdfNet/1.5.3": {
"type": "project",
"serviceable": false,
"sha512": ""
diff --git a/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.xml b/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.xml
index eb0c084..3dd8c3b 100644
--- a/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.xml
+++ b/QPdfNet/bin/Debug/netstandard2.1/QPdfNet.xml
@@ -997,6 +997,14 @@
+
+
+ Returns true when the PDF contains JavaScript, otherwise false
+
+ The PDF file to check
+ true when JavaScript is found
+ Thrown when the qpdf operation fails or the file cannot be processed
+
The outline
diff --git a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfo.cs b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfo.cs
index ec58124..7ca8a4a 100644
--- a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfo.cs
+++ b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfo.cs
@@ -1,7 +1,6 @@
//------------------------------------------------------------------------------
//
// 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.
@@ -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.
diff --git a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfoInputs.cache b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfoInputs.cache
index cb0e975..a8bb8ba 100644
--- a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfoInputs.cache
+++ b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.AssemblyInfoInputs.cache
@@ -1 +1 @@
-17797078582c1d77aeb368198574e2695e6b8c58c0551382ab31eacaf40342a6
+81ecdd23356cf3315686e0c8325558de665fbc39ab578a50ca1a8509b7dfb9a7
diff --git a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.GeneratedMSBuildEditorConfig.editorconfig b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.GeneratedMSBuildEditorConfig.editorconfig
index d0aca5c..4c39f45 100644
--- a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.GeneratedMSBuildEditorConfig.editorconfig
+++ b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.GeneratedMSBuildEditorConfig.editorconfig
@@ -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
diff --git a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.assets.cache b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.assets.cache
index 8ca6fad..1dcb511 100644
Binary files a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.assets.cache and b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.assets.cache differ
diff --git a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.AssemblyReference.cache b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.AssemblyReference.cache
index 12cfaa2..3b26a6a 100644
Binary files a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.AssemblyReference.cache and b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.AssemblyReference.cache differ
diff --git a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.CoreCompileInputs.cache b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.CoreCompileInputs.cache
index 903e4c9..be0f528 100644
--- a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.CoreCompileInputs.cache
+++ b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-a53962cd0011c17c510bf4c3505edde3a23dc67062bea105db326908d74424de
+bc00a2ab75c1c4f23ea84f59e521777a56e1cefb4f6b9edb33e7a46f12dbb9b3
diff --git a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.FileListAbsolute.txt b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.FileListAbsolute.txt
index f0901bb..4a1fd55 100644
--- a/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.FileListAbsolute.txt
+++ b/QPdfNet/obj/Debug/netstandard2.1/QPdfNet.csproj.FileListAbsolute.txt
@@ -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
diff --git a/QPdfNet/obj/QPdfNet.csproj.nuget.dgspec.json b/QPdfNet/obj/QPdfNet.csproj.nuget.dgspec.json
index cfe02a0..af9e97a 100644
--- a/QPdfNet/obj/QPdfNet.csproj.nuget.dgspec.json
+++ b/QPdfNet/obj/QPdfNet.csproj.nuget.dgspec.json
@@ -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": {
@@ -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",
@@ -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"
}
}
}
diff --git a/QPdfNet/obj/QPdfNet.csproj.nuget.g.props b/QPdfNet/obj/QPdfNet.csproj.nuget.g.props
index 1489d69..c11aec9 100644
--- a/QPdfNet/obj/QPdfNet.csproj.nuget.g.props
+++ b/QPdfNet/obj/QPdfNet.csproj.nuget.g.props
@@ -4,13 +4,12 @@
True
NuGet
$(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\AO303388\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ /tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages
+ /tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages
PackageReference
7.0.0
-
-
+
\ No newline at end of file
diff --git a/QPdfNet/obj/QPdfNet.csproj.nuget.g.targets b/QPdfNet/obj/QPdfNet.csproj.nuget.g.targets
index 10e2235..a14feac 100644
--- a/QPdfNet/obj/QPdfNet.csproj.nuget.g.targets
+++ b/QPdfNet/obj/QPdfNet.csproj.nuget.g.targets
@@ -1,12 +1,12 @@
-
-
-
+
+
+
-
-
+
+
\ No newline at end of file
diff --git a/QPdfNet/obj/project.assets.json b/QPdfNet/obj/project.assets.json
index 48e0b86..6389f41 100644
--- a/QPdfNet/obj/project.assets.json
+++ b/QPdfNet/obj/project.assets.json
@@ -1276,33 +1276,26 @@
]
},
"packageFolders": {
- "C:\\Users\\AO303388\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages": {}
},
"project": {
"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": {
@@ -1361,7 +1354,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",
@@ -1386,12 +1379,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"
}
}
}
diff --git a/QPdfNet/obj/project.nuget.cache b/QPdfNet/obj/project.nuget.cache
index d086350..6399ff6 100644
--- a/QPdfNet/obj/project.nuget.cache
+++ b/QPdfNet/obj/project.nuget.cache
@@ -1,28 +1,29 @@
{
"version": 2,
- "dgSpecHash": "6T1EH8ggjt8=",
+ "dgSpecHash": "ZM56HqXSS2g=",
"success": true,
- "projectFilePath": "C:\\Kees\\QPdfNet\\QPdfNet\\QPdfNet.csproj",
+ "projectFilePath": "/home/runner/work/QPdfNet/QPdfNet/QPdfNet/QPdfNet.csproj",
"expectedPackageFiles": [
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\10.0.3\\microsoft.bcl.asyncinterfaces.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.3\\microsoft.extensions.dependencyinjection.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.3\\microsoft.extensions.dependencyinjection.abstractions.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.extensions.logging\\10.0.3\\microsoft.extensions.logging.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.3\\microsoft.extensions.logging.abstractions.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.extensions.options\\10.0.3\\microsoft.extensions.options.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.3\\microsoft.extensions.primitives.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\newtonsoft.json\\13.0.4\\newtonsoft.json.13.0.4.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\system.buffers\\4.6.1\\system.buffers.4.6.1.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\system.diagnostics.diagnosticsource\\10.0.3\\system.diagnostics.diagnosticsource.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\system.memory\\4.6.3\\system.memory.4.6.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\system.numerics.vectors\\4.6.1\\system.numerics.vectors.4.6.1.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\system.reflection.emit\\4.7.0\\system.reflection.emit.4.7.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.7.0\\system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.1.2\\system.runtime.compilerservices.unsafe.6.1.2.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\system.threading.tasks.extensions\\4.6.3\\system.threading.tasks.extensions.4.6.3.nupkg.sha512"
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.bcl.asyncinterfaces/10.0.3/microsoft.bcl.asyncinterfaces.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.extensions.dependencyinjection/10.0.3/microsoft.extensions.dependencyinjection.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.3/microsoft.extensions.dependencyinjection.abstractions.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.extensions.logging/10.0.3/microsoft.extensions.logging.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.extensions.logging.abstractions/10.0.3/microsoft.extensions.logging.abstractions.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.extensions.options/10.0.3/microsoft.extensions.options.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.extensions.primitives/10.0.3/microsoft.extensions.primitives.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/netstandard.library/2.0.3/netstandard.library.2.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/newtonsoft.json/13.0.4/newtonsoft.json.13.0.4.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/system.buffers/4.6.1/system.buffers.4.6.1.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/system.componentmodel.annotations/5.0.0/system.componentmodel.annotations.5.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/system.diagnostics.diagnosticsource/10.0.3/system.diagnostics.diagnosticsource.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/system.memory/4.6.3/system.memory.4.6.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/system.numerics.vectors/4.6.1/system.numerics.vectors.4.6.1.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/system.reflection.emit/4.7.0/system.reflection.emit.4.7.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/system.reflection.emit.ilgeneration/4.7.0/system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/system.runtime.compilerservices.unsafe/6.1.2/system.runtime.compilerservices.unsafe.6.1.2.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/system.threading.tasks.extensions/4.6.3/system.threading.tasks.extensions.4.6.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/netstandard.library.ref/2.1.0/netstandard.library.ref.2.1.0.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file
diff --git a/QpdfNetTest/QpdfTests.cs b/QpdfNetTest/QpdfTests.cs
index 385c891..8e6d442 100644
--- a/QpdfNetTest/QpdfTests.cs
+++ b/QpdfNetTest/QpdfTests.cs
@@ -711,5 +711,19 @@ public void TestPdfInfo()
var pdf = Pdf.FromFile(Path.Combine("TestFiles", "withimages.pdf"));
Assert.IsTrue(pdf != null);
}
+
+ [TestMethod]
+ public void TestContainsJavaScript()
+ {
+ var result = Pdf.ContainsJavaScript(Path.Combine("TestFiles", "withjavascript.pdf"));
+ Assert.IsTrue(result);
+ }
+
+ [TestMethod]
+ public void TestContainsNoJavaScript()
+ {
+ var result = Pdf.ContainsJavaScript(Path.Combine("TestFiles", "test.pdf"));
+ Assert.IsFalse(result);
+ }
}
}
\ No newline at end of file
diff --git a/QpdfNetTest/TestFiles/withjavascript.pdf b/QpdfNetTest/TestFiles/withjavascript.pdf
new file mode 100644
index 0000000..b06ef79
Binary files /dev/null and b/QpdfNetTest/TestFiles/withjavascript.pdf differ
diff --git a/QpdfNetTest/obj/QpdfNetTest.csproj.nuget.dgspec.json b/QpdfNetTest/obj/QpdfNetTest.csproj.nuget.dgspec.json
index 01bf779..15bb6e5 100644
--- a/QpdfNetTest/obj/QpdfNetTest.csproj.nuget.dgspec.json
+++ b/QpdfNetTest/obj/QpdfNetTest.csproj.nuget.dgspec.json
@@ -1,41 +1,37 @@
{
"format": 1,
"restore": {
- "C:\\Kees\\QPdfNet\\QpdfNetTest\\QpdfNetTest.csproj": {}
+ "/home/runner/work/QPdfNet/QPdfNet/QpdfNetTest/QpdfNetTest.csproj": {}
},
"projects": {
- "C:\\Kees\\QPdfNet\\QpdfNetTest\\QpdfNetTest.csproj": {
- "version": "1.0.0",
+ "/home/runner/work/QPdfNet/QPdfNet/QPdfNet/QPdfNet.csproj": {
+ "version": "1.5.3",
"restore": {
- "projectUniqueName": "C:\\Kees\\QPdfNet\\QpdfNetTest\\QpdfNetTest.csproj",
- "projectName": "QpdfNetTest",
- "projectPath": "C:\\Kees\\QPdfNet\\QpdfNetTest\\QpdfNetTest.csproj",
- "packagesPath": "C:\\Users\\AO303388\\.nuget\\packages\\",
- "outputPath": "C:\\Kees\\QPdfNet\\QpdfNetTest\\obj\\",
+ "projectUniqueName": "/home/runner/work/QPdfNet/QPdfNet/QPdfNet/QPdfNet.csproj",
+ "projectName": "QPdfNet",
+ "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",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
+ "crossTargeting": true,
"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": [
- "net10.0"
+ "netstandard2.0",
+ "netstandard2.1"
],
"sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
- "net10.0": {
- "targetAlias": "net10.0",
- "projectReferences": {
- "C:\\Kees\\QPdfNet\\QPdfNet\\QPdfNet.csproj": {
- "projectPath": "C:\\Kees\\QPdfNet\\QPdfNet\\QPdfNet.csproj"
- }
- }
+ "netstandard2.0": {
+ "targetAlias": "netstandard2.0",
+ "projectReferences": {}
+ },
+ "netstandard2.1": {
+ "targetAlias": "netstandard2.1",
+ "projectReferences": {}
}
},
"warningProperties": {
@@ -46,35 +42,56 @@
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
- "auditMode": "all"
+ "auditMode": "direct"
},
"SdkAnalysisLevel": "10.0.100"
},
"frameworks": {
- "net10.0": {
- "targetAlias": "net10.0",
+ "netstandard2.0": {
+ "targetAlias": "netstandard2.0",
"dependencies": {
- "MSTest.TestAdapter": {
+ "Microsoft.Extensions.Logging": {
"target": "Package",
- "version": "[4.1.0, )"
+ "version": "[10.0.3, )"
},
- "MSTest.TestFramework": {
+ "NETStandard.Library": {
+ "suppressParent": "All",
"target": "Package",
- "version": "[4.1.0, )"
+ "version": "[2.0.3, )",
+ "autoReferenced": true
},
- "Microsoft.Extensions.Logging": {
+ "Newtonsoft.Json": {
"target": "Package",
- "version": "[10.0.3, )"
+ "version": "[13.0.4, )"
},
- "Microsoft.NET.Test.Sdk": {
+ "System.Reflection.Emit": {
"target": "Package",
- "version": "[18.3.0, )"
+ "version": "[4.7.0, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/RuntimeIdentifierGraph.json"
+ },
+ "netstandard2.1": {
+ "targetAlias": "netstandard2.1",
+ "dependencies": {
+ "Microsoft.Extensions.Logging": {
+ "target": "Package",
+ "version": "[10.0.3, )"
},
- "coverlet.collector": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
+ "Newtonsoft.Json": {
"target": "Package",
- "version": "[8.0.0, )"
+ "version": "[13.0.4, )"
}
},
"imports": [
@@ -88,323 +105,47 @@
],
"assetTargetFallback": true,
"warn": true,
+ "downloadDependencies": [
+ {
+ "name": "NETStandard.Library.Ref",
+ "version": "[2.1.0, 2.1.0]"
+ }
+ ],
"frameworkReferences": {
- "Microsoft.NETCore.App": {
+ "NETStandard.Library": {
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.103/PortableRuntimeIdentifierGraph.json",
- "packagesToPrune": {
- "Microsoft.CSharp": "(,4.7.32767]",
- "Microsoft.VisualBasic": "(,10.4.32767]",
- "Microsoft.Win32.Primitives": "(,4.3.32767]",
- "Microsoft.Win32.Registry": "(,5.0.32767]",
- "runtime.any.System.Collections": "(,4.3.32767]",
- "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
- "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
- "runtime.any.System.Globalization": "(,4.3.32767]",
- "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
- "runtime.any.System.IO": "(,4.3.32767]",
- "runtime.any.System.Reflection": "(,4.3.32767]",
- "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
- "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
- "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
- "runtime.any.System.Runtime": "(,4.3.32767]",
- "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
- "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
- "runtime.any.System.Text.Encoding": "(,4.3.32767]",
- "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
- "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
- "runtime.any.System.Threading.Timer": "(,4.3.32767]",
- "runtime.aot.System.Collections": "(,4.3.32767]",
- "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
- "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
- "runtime.aot.System.Globalization": "(,4.3.32767]",
- "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
- "runtime.aot.System.IO": "(,4.3.32767]",
- "runtime.aot.System.Reflection": "(,4.3.32767]",
- "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
- "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
- "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
- "runtime.aot.System.Runtime": "(,4.3.32767]",
- "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
- "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
- "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
- "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
- "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
- "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
- "runtime.unix.System.Console": "(,4.3.32767]",
- "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
- "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
- "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
- "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
- "runtime.unix.System.Private.Uri": "(,4.3.32767]",
- "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
- "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
- "runtime.win.System.Console": "(,4.3.32767]",
- "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
- "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
- "runtime.win.System.Net.Primitives": "(,4.3.32767]",
- "runtime.win.System.Net.Sockets": "(,4.3.32767]",
- "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
- "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
- "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
- "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
- "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.win7.System.Private.Uri": "(,4.3.32767]",
- "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "System.AppContext": "(,4.3.32767]",
- "System.Buffers": "(,5.0.32767]",
- "System.Collections": "(,4.3.32767]",
- "System.Collections.Concurrent": "(,4.3.32767]",
- "System.Collections.Immutable": "(,10.0.32767]",
- "System.Collections.NonGeneric": "(,4.3.32767]",
- "System.Collections.Specialized": "(,4.3.32767]",
- "System.ComponentModel": "(,4.3.32767]",
- "System.ComponentModel.Annotations": "(,4.3.32767]",
- "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
- "System.ComponentModel.Primitives": "(,4.3.32767]",
- "System.ComponentModel.TypeConverter": "(,4.3.32767]",
- "System.Console": "(,4.3.32767]",
- "System.Data.Common": "(,4.3.32767]",
- "System.Data.DataSetExtensions": "(,4.4.32767]",
- "System.Diagnostics.Contracts": "(,4.3.32767]",
- "System.Diagnostics.Debug": "(,4.3.32767]",
- "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
- "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
- "System.Diagnostics.Process": "(,4.3.32767]",
- "System.Diagnostics.StackTrace": "(,4.3.32767]",
- "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
- "System.Diagnostics.Tools": "(,4.3.32767]",
- "System.Diagnostics.TraceSource": "(,4.3.32767]",
- "System.Diagnostics.Tracing": "(,4.3.32767]",
- "System.Drawing.Primitives": "(,4.3.32767]",
- "System.Dynamic.Runtime": "(,4.3.32767]",
- "System.Formats.Asn1": "(,10.0.32767]",
- "System.Formats.Tar": "(,10.0.32767]",
- "System.Globalization": "(,4.3.32767]",
- "System.Globalization.Calendars": "(,4.3.32767]",
- "System.Globalization.Extensions": "(,4.3.32767]",
- "System.IO": "(,4.3.32767]",
- "System.IO.Compression": "(,4.3.32767]",
- "System.IO.Compression.ZipFile": "(,4.3.32767]",
- "System.IO.FileSystem": "(,4.3.32767]",
- "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
- "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
- "System.IO.FileSystem.Primitives": "(,4.3.32767]",
- "System.IO.FileSystem.Watcher": "(,4.3.32767]",
- "System.IO.IsolatedStorage": "(,4.3.32767]",
- "System.IO.MemoryMappedFiles": "(,4.3.32767]",
- "System.IO.Pipelines": "(,10.0.32767]",
- "System.IO.Pipes": "(,4.3.32767]",
- "System.IO.Pipes.AccessControl": "(,5.0.32767]",
- "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
- "System.Linq": "(,4.3.32767]",
- "System.Linq.AsyncEnumerable": "(,10.0.32767]",
- "System.Linq.Expressions": "(,4.3.32767]",
- "System.Linq.Parallel": "(,4.3.32767]",
- "System.Linq.Queryable": "(,4.3.32767]",
- "System.Memory": "(,5.0.32767]",
- "System.Net.Http": "(,4.3.32767]",
- "System.Net.Http.Json": "(,10.0.32767]",
- "System.Net.NameResolution": "(,4.3.32767]",
- "System.Net.NetworkInformation": "(,4.3.32767]",
- "System.Net.Ping": "(,4.3.32767]",
- "System.Net.Primitives": "(,4.3.32767]",
- "System.Net.Requests": "(,4.3.32767]",
- "System.Net.Security": "(,4.3.32767]",
- "System.Net.ServerSentEvents": "(,10.0.32767]",
- "System.Net.Sockets": "(,4.3.32767]",
- "System.Net.WebHeaderCollection": "(,4.3.32767]",
- "System.Net.WebSockets": "(,4.3.32767]",
- "System.Net.WebSockets.Client": "(,4.3.32767]",
- "System.Numerics.Vectors": "(,5.0.32767]",
- "System.ObjectModel": "(,4.3.32767]",
- "System.Private.DataContractSerialization": "(,4.3.32767]",
- "System.Private.Uri": "(,4.3.32767]",
- "System.Reflection": "(,4.3.32767]",
- "System.Reflection.DispatchProxy": "(,6.0.32767]",
- "System.Reflection.Emit": "(,4.7.32767]",
- "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
- "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
- "System.Reflection.Extensions": "(,4.3.32767]",
- "System.Reflection.Metadata": "(,10.0.32767]",
- "System.Reflection.Primitives": "(,4.3.32767]",
- "System.Reflection.TypeExtensions": "(,4.3.32767]",
- "System.Resources.Reader": "(,4.3.32767]",
- "System.Resources.ResourceManager": "(,4.3.32767]",
- "System.Resources.Writer": "(,4.3.32767]",
- "System.Runtime": "(,4.3.32767]",
- "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
- "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
- "System.Runtime.Extensions": "(,4.3.32767]",
- "System.Runtime.Handles": "(,4.3.32767]",
- "System.Runtime.InteropServices": "(,4.3.32767]",
- "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
- "System.Runtime.Loader": "(,4.3.32767]",
- "System.Runtime.Numerics": "(,4.3.32767]",
- "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
- "System.Runtime.Serialization.Json": "(,4.3.32767]",
- "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
- "System.Runtime.Serialization.Xml": "(,4.3.32767]",
- "System.Security.AccessControl": "(,6.0.32767]",
- "System.Security.Claims": "(,4.3.32767]",
- "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
- "System.Security.Cryptography.Cng": "(,5.0.32767]",
- "System.Security.Cryptography.Csp": "(,4.3.32767]",
- "System.Security.Cryptography.Encoding": "(,4.3.32767]",
- "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
- "System.Security.Cryptography.Primitives": "(,4.3.32767]",
- "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
- "System.Security.Principal": "(,4.3.32767]",
- "System.Security.Principal.Windows": "(,5.0.32767]",
- "System.Security.SecureString": "(,4.3.32767]",
- "System.Text.Encoding": "(,4.3.32767]",
- "System.Text.Encoding.CodePages": "(,10.0.32767]",
- "System.Text.Encoding.Extensions": "(,4.3.32767]",
- "System.Text.Encodings.Web": "(,10.0.32767]",
- "System.Text.Json": "(,10.0.32767]",
- "System.Text.RegularExpressions": "(,4.3.32767]",
- "System.Threading": "(,4.3.32767]",
- "System.Threading.AccessControl": "(,10.0.32767]",
- "System.Threading.Channels": "(,10.0.32767]",
- "System.Threading.Overlapped": "(,4.3.32767]",
- "System.Threading.Tasks": "(,4.3.32767]",
- "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
- "System.Threading.Tasks.Extensions": "(,5.0.32767]",
- "System.Threading.Tasks.Parallel": "(,4.3.32767]",
- "System.Threading.Thread": "(,4.3.32767]",
- "System.Threading.ThreadPool": "(,4.3.32767]",
- "System.Threading.Timer": "(,4.3.32767]",
- "System.ValueTuple": "(,4.5.32767]",
- "System.Xml.ReaderWriter": "(,4.3.32767]",
- "System.Xml.XDocument": "(,4.3.32767]",
- "System.Xml.XmlDocument": "(,4.3.32767]",
- "System.Xml.XmlSerializer": "(,4.3.32767]",
- "System.Xml.XPath": "(,4.3.32767]",
- "System.Xml.XPath.XDocument": "(,5.0.32767]"
- }
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/RuntimeIdentifierGraph.json"
}
}
},
- "C:\\Kees\\QPdfNet\\QPdfNet\\QPdfNet.csproj": {
- "version": "1.5.3",
+ "/home/runner/work/QPdfNet/QPdfNet/QpdfNetTest/QpdfNetTest.csproj": {
+ "version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Kees\\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\\",
+ "projectUniqueName": "/home/runner/work/QPdfNet/QPdfNet/QpdfNetTest/QpdfNetTest.csproj",
+ "projectName": "QpdfNetTest",
+ "projectPath": "/home/runner/work/QPdfNet/QPdfNet/QpdfNetTest/QpdfNetTest.csproj",
+ "packagesPath": "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages",
+ "outputPath": "/home/runner/work/QPdfNet/QPdfNet/QpdfNetTest/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"
+ "net10.0"
],
"sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
- "netstandard2.0": {
- "targetAlias": "netstandard2.0",
- "projectReferences": {}
- },
- "netstandard2.1": {
- "targetAlias": "netstandard2.1",
- "projectReferences": {}
+ "net10.0": {
+ "targetAlias": "net10.0",
+ "projectReferences": {
+ "/home/runner/work/QPdfNet/QPdfNet/QPdfNet/QPdfNet.csproj": {
+ "projectPath": "/home/runner/work/QPdfNet/QPdfNet/QPdfNet/QPdfNet.csproj"
+ }
+ }
}
},
"warningProperties": {
@@ -415,31 +156,35 @@
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
- "auditMode": "direct"
+ "auditMode": "all"
},
"SdkAnalysisLevel": "10.0.100"
},
"frameworks": {
- "netstandard2.0": {
- "targetAlias": "netstandard2.0",
+ "net10.0": {
+ "targetAlias": "net10.0",
"dependencies": {
- "Microsoft.Extensions.Logging": {
+ "MSTest.TestAdapter": {
"target": "Package",
- "version": "[10.0.3, )"
+ "version": "[4.1.0, )"
},
- "NETStandard.Library": {
- "suppressParent": "All",
+ "MSTest.TestFramework": {
"target": "Package",
- "version": "[2.0.3, )",
- "autoReferenced": true
+ "version": "[4.1.0, )"
},
- "Newtonsoft.Json": {
+ "Microsoft.Extensions.Logging": {
"target": "Package",
- "version": "[13.0.4, )"
+ "version": "[10.0.3, )"
},
- "System.Reflection.Emit": {
+ "Microsoft.NET.Test.Sdk": {
"target": "Package",
- "version": "[4.7.0, )"
+ "version": "[18.3.0, )"
+ },
+ "coverlet.collector": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[8.0.0, )"
}
},
"imports": [
@@ -453,37 +198,22 @@
],
"assetTargetFallback": true,
"warn": true,
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.103\\RuntimeIdentifierGraph.json"
- },
- "netstandard2.1": {
- "targetAlias": "netstandard2.1",
- "dependencies": {
- "Microsoft.Extensions.Logging": {
- "target": "Package",
- "version": "[10.0.3, )"
+ "downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Ref",
+ "version": "[10.0.2, 10.0.2]"
},
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[13.0.4, )"
+ {
+ "name": "Microsoft.NETCore.App.Ref",
+ "version": "[10.0.2, 10.0.2]"
}
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
],
- "assetTargetFallback": true,
- "warn": true,
"frameworkReferences": {
- "NETStandard.Library": {
+ "Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.103\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/QpdfNetTest/obj/QpdfNetTest.csproj.nuget.g.props b/QpdfNetTest/obj/QpdfNetTest.csproj.nuget.g.props
index a07daf2..c342552 100644
--- a/QpdfNetTest/obj/QpdfNetTest.csproj.nuget.g.props
+++ b/QpdfNetTest/obj/QpdfNetTest.csproj.nuget.g.props
@@ -4,26 +4,25 @@
True
NuGet
$(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\AO303388\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ /tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages
+ /tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages
PackageReference
7.0.0
-
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
- C:\Users\AO303388\.nuget\packages\mstest.analyzers\4.1.0
+ /tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/mstest.analyzers/4.1.0
\ No newline at end of file
diff --git a/QpdfNetTest/obj/QpdfNetTest.csproj.nuget.g.targets b/QpdfNetTest/obj/QpdfNetTest.csproj.nuget.g.targets
index 6b49996..d51cf3d 100644
--- a/QpdfNetTest/obj/QpdfNetTest.csproj.nuget.g.targets
+++ b/QpdfNetTest/obj/QpdfNetTest.csproj.nuget.g.targets
@@ -1,16 +1,16 @@
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/QpdfNetTest/obj/project.assets.json b/QpdfNetTest/obj/project.assets.json
index 459bf4b..93ae1a7 100644
--- a/QpdfNetTest/obj/project.assets.json
+++ b/QpdfNetTest/obj/project.assets.json
@@ -10,6 +10,9 @@
},
"Microsoft.ApplicationInsights/2.23.0": {
"type": "package",
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ },
"compile": {
"lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
"related": ".pdb;.xml"
@@ -431,6 +434,9 @@
},
"Microsoft.TestPlatform.ObjectModel/18.3.0": {
"type": "package",
+ "dependencies": {
+ "System.Reflection.Metadata": "8.0.0"
+ },
"compile": {
"lib/net8.0/Microsoft.TestPlatform.CoreUtilities.dll": {},
"lib/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
@@ -768,6 +774,54 @@
}
}
},
+ "System.Collections.Immutable/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/System.Collections.Immutable.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/System.Collections.Immutable.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/5.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.Metadata/8.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections.Immutable": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/System.Reflection.Metadata.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/System.Reflection.Metadata.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
"QPdfNet/1.5.3": {
"type": "project",
"framework": ".NETStandard,Version=v2.1",
@@ -1970,6 +2024,94 @@
"packageIcon.png"
]
},
+ "System.Collections.Immutable/8.0.0": {
+ "sha512": "AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==",
+ "type": "package",
+ "path": "system.collections.immutable/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Collections.Immutable.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
+ "lib/net462/System.Collections.Immutable.dll",
+ "lib/net462/System.Collections.Immutable.xml",
+ "lib/net6.0/System.Collections.Immutable.dll",
+ "lib/net6.0/System.Collections.Immutable.xml",
+ "lib/net7.0/System.Collections.Immutable.dll",
+ "lib/net7.0/System.Collections.Immutable.xml",
+ "lib/net8.0/System.Collections.Immutable.dll",
+ "lib/net8.0/System.Collections.Immutable.xml",
+ "lib/netstandard2.0/System.Collections.Immutable.dll",
+ "lib/netstandard2.0/System.Collections.Immutable.xml",
+ "system.collections.immutable.8.0.0.nupkg.sha512",
+ "system.collections.immutable.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Diagnostics.DiagnosticSource/5.0.0": {
+ "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
+ "type": "package",
+ "path": "system.diagnostics.diagnosticsource/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net45/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net45/System.Diagnostics.DiagnosticSource.xml",
+ "lib/net46/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net46/System.Diagnostics.DiagnosticSource.xml",
+ "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
+ "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
+ "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
+ "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
+ "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
+ "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
+ "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
+ "system.diagnostics.diagnosticsource.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Reflection.Metadata/8.0.0": {
+ "sha512": "ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==",
+ "type": "package",
+ "path": "system.reflection.metadata/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Reflection.Metadata.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
+ "lib/net462/System.Reflection.Metadata.dll",
+ "lib/net462/System.Reflection.Metadata.xml",
+ "lib/net6.0/System.Reflection.Metadata.dll",
+ "lib/net6.0/System.Reflection.Metadata.xml",
+ "lib/net7.0/System.Reflection.Metadata.dll",
+ "lib/net7.0/System.Reflection.Metadata.xml",
+ "lib/net8.0/System.Reflection.Metadata.dll",
+ "lib/net8.0/System.Reflection.Metadata.xml",
+ "lib/netstandard2.0/System.Reflection.Metadata.dll",
+ "lib/netstandard2.0/System.Reflection.Metadata.xml",
+ "system.reflection.metadata.8.0.0.nupkg.sha512",
+ "system.reflection.metadata.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
"QPdfNet/1.5.3": {
"type": "project",
"path": "../QPdfNet/QPdfNet.csproj",
@@ -1987,39 +2129,32 @@
]
},
"packageFolders": {
- "C:\\Users\\AO303388\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Kees\\QPdfNet\\QpdfNetTest\\QpdfNetTest.csproj",
+ "projectUniqueName": "/home/runner/work/QPdfNet/QPdfNet/QpdfNetTest/QpdfNetTest.csproj",
"projectName": "QpdfNetTest",
- "projectPath": "C:\\Kees\\QPdfNet\\QpdfNetTest\\QpdfNetTest.csproj",
- "packagesPath": "C:\\Users\\AO303388\\.nuget\\packages\\",
- "outputPath": "C:\\Kees\\QPdfNet\\QpdfNetTest\\obj\\",
+ "projectPath": "/home/runner/work/QPdfNet/QPdfNet/QpdfNetTest/QpdfNetTest.csproj",
+ "packagesPath": "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages",
+ "outputPath": "/home/runner/work/QPdfNet/QPdfNet/QpdfNetTest/obj/",
"projectStyle": "PackageReference",
- "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": [
"net10.0"
],
"sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net10.0": {
"targetAlias": "net10.0",
"projectReferences": {
- "C:\\Kees\\QPdfNet\\QPdfNet\\QPdfNet.csproj": {
- "projectPath": "C:\\Kees\\QPdfNet\\QPdfNet\\QPdfNet.csproj"
+ "/home/runner/work/QPdfNet/QPdfNet/QPdfNet/QPdfNet.csproj": {
+ "projectPath": "/home/runner/work/QPdfNet/QPdfNet/QPdfNet/QPdfNet.csproj"
}
}
}
@@ -2074,286 +2209,22 @@
],
"assetTargetFallback": true,
"warn": true,
+ "downloadDependencies": [
+ {
+ "name": "Microsoft.AspNetCore.App.Ref",
+ "version": "[10.0.2, 10.0.2]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Ref",
+ "version": "[10.0.2, 10.0.2]"
+ }
+ ],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.103/PortableRuntimeIdentifierGraph.json",
- "packagesToPrune": {
- "Microsoft.CSharp": "(,4.7.32767]",
- "Microsoft.VisualBasic": "(,10.4.32767]",
- "Microsoft.Win32.Primitives": "(,4.3.32767]",
- "Microsoft.Win32.Registry": "(,5.0.32767]",
- "runtime.any.System.Collections": "(,4.3.32767]",
- "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
- "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
- "runtime.any.System.Globalization": "(,4.3.32767]",
- "runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
- "runtime.any.System.IO": "(,4.3.32767]",
- "runtime.any.System.Reflection": "(,4.3.32767]",
- "runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
- "runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
- "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
- "runtime.any.System.Runtime": "(,4.3.32767]",
- "runtime.any.System.Runtime.Handles": "(,4.3.32767]",
- "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
- "runtime.any.System.Text.Encoding": "(,4.3.32767]",
- "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
- "runtime.any.System.Threading.Tasks": "(,4.3.32767]",
- "runtime.any.System.Threading.Timer": "(,4.3.32767]",
- "runtime.aot.System.Collections": "(,4.3.32767]",
- "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
- "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
- "runtime.aot.System.Globalization": "(,4.3.32767]",
- "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
- "runtime.aot.System.IO": "(,4.3.32767]",
- "runtime.aot.System.Reflection": "(,4.3.32767]",
- "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
- "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
- "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
- "runtime.aot.System.Runtime": "(,4.3.32767]",
- "runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
- "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
- "runtime.aot.System.Text.Encoding": "(,4.3.32767]",
- "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
- "runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
- "runtime.aot.System.Threading.Timer": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
- "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
- "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
- "runtime.unix.System.Console": "(,4.3.32767]",
- "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
- "runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
- "runtime.unix.System.Net.Primitives": "(,4.3.32767]",
- "runtime.unix.System.Net.Sockets": "(,4.3.32767]",
- "runtime.unix.System.Private.Uri": "(,4.3.32767]",
- "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
- "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
- "runtime.win.System.Console": "(,4.3.32767]",
- "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
- "runtime.win.System.IO.FileSystem": "(,4.3.32767]",
- "runtime.win.System.Net.Primitives": "(,4.3.32767]",
- "runtime.win.System.Net.Sockets": "(,4.3.32767]",
- "runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
- "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
- "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
- "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
- "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "runtime.win7.System.Private.Uri": "(,4.3.32767]",
- "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
- "System.AppContext": "(,4.3.32767]",
- "System.Buffers": "(,5.0.32767]",
- "System.Collections": "(,4.3.32767]",
- "System.Collections.Concurrent": "(,4.3.32767]",
- "System.Collections.Immutable": "(,10.0.32767]",
- "System.Collections.NonGeneric": "(,4.3.32767]",
- "System.Collections.Specialized": "(,4.3.32767]",
- "System.ComponentModel": "(,4.3.32767]",
- "System.ComponentModel.Annotations": "(,4.3.32767]",
- "System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
- "System.ComponentModel.Primitives": "(,4.3.32767]",
- "System.ComponentModel.TypeConverter": "(,4.3.32767]",
- "System.Console": "(,4.3.32767]",
- "System.Data.Common": "(,4.3.32767]",
- "System.Data.DataSetExtensions": "(,4.4.32767]",
- "System.Diagnostics.Contracts": "(,4.3.32767]",
- "System.Diagnostics.Debug": "(,4.3.32767]",
- "System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
- "System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
- "System.Diagnostics.Process": "(,4.3.32767]",
- "System.Diagnostics.StackTrace": "(,4.3.32767]",
- "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
- "System.Diagnostics.Tools": "(,4.3.32767]",
- "System.Diagnostics.TraceSource": "(,4.3.32767]",
- "System.Diagnostics.Tracing": "(,4.3.32767]",
- "System.Drawing.Primitives": "(,4.3.32767]",
- "System.Dynamic.Runtime": "(,4.3.32767]",
- "System.Formats.Asn1": "(,10.0.32767]",
- "System.Formats.Tar": "(,10.0.32767]",
- "System.Globalization": "(,4.3.32767]",
- "System.Globalization.Calendars": "(,4.3.32767]",
- "System.Globalization.Extensions": "(,4.3.32767]",
- "System.IO": "(,4.3.32767]",
- "System.IO.Compression": "(,4.3.32767]",
- "System.IO.Compression.ZipFile": "(,4.3.32767]",
- "System.IO.FileSystem": "(,4.3.32767]",
- "System.IO.FileSystem.AccessControl": "(,4.4.32767]",
- "System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
- "System.IO.FileSystem.Primitives": "(,4.3.32767]",
- "System.IO.FileSystem.Watcher": "(,4.3.32767]",
- "System.IO.IsolatedStorage": "(,4.3.32767]",
- "System.IO.MemoryMappedFiles": "(,4.3.32767]",
- "System.IO.Pipelines": "(,10.0.32767]",
- "System.IO.Pipes": "(,4.3.32767]",
- "System.IO.Pipes.AccessControl": "(,5.0.32767]",
- "System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
- "System.Linq": "(,4.3.32767]",
- "System.Linq.AsyncEnumerable": "(,10.0.32767]",
- "System.Linq.Expressions": "(,4.3.32767]",
- "System.Linq.Parallel": "(,4.3.32767]",
- "System.Linq.Queryable": "(,4.3.32767]",
- "System.Memory": "(,5.0.32767]",
- "System.Net.Http": "(,4.3.32767]",
- "System.Net.Http.Json": "(,10.0.32767]",
- "System.Net.NameResolution": "(,4.3.32767]",
- "System.Net.NetworkInformation": "(,4.3.32767]",
- "System.Net.Ping": "(,4.3.32767]",
- "System.Net.Primitives": "(,4.3.32767]",
- "System.Net.Requests": "(,4.3.32767]",
- "System.Net.Security": "(,4.3.32767]",
- "System.Net.ServerSentEvents": "(,10.0.32767]",
- "System.Net.Sockets": "(,4.3.32767]",
- "System.Net.WebHeaderCollection": "(,4.3.32767]",
- "System.Net.WebSockets": "(,4.3.32767]",
- "System.Net.WebSockets.Client": "(,4.3.32767]",
- "System.Numerics.Vectors": "(,5.0.32767]",
- "System.ObjectModel": "(,4.3.32767]",
- "System.Private.DataContractSerialization": "(,4.3.32767]",
- "System.Private.Uri": "(,4.3.32767]",
- "System.Reflection": "(,4.3.32767]",
- "System.Reflection.DispatchProxy": "(,6.0.32767]",
- "System.Reflection.Emit": "(,4.7.32767]",
- "System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
- "System.Reflection.Emit.Lightweight": "(,4.7.32767]",
- "System.Reflection.Extensions": "(,4.3.32767]",
- "System.Reflection.Metadata": "(,10.0.32767]",
- "System.Reflection.Primitives": "(,4.3.32767]",
- "System.Reflection.TypeExtensions": "(,4.3.32767]",
- "System.Resources.Reader": "(,4.3.32767]",
- "System.Resources.ResourceManager": "(,4.3.32767]",
- "System.Resources.Writer": "(,4.3.32767]",
- "System.Runtime": "(,4.3.32767]",
- "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
- "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
- "System.Runtime.Extensions": "(,4.3.32767]",
- "System.Runtime.Handles": "(,4.3.32767]",
- "System.Runtime.InteropServices": "(,4.3.32767]",
- "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
- "System.Runtime.Loader": "(,4.3.32767]",
- "System.Runtime.Numerics": "(,4.3.32767]",
- "System.Runtime.Serialization.Formatters": "(,4.3.32767]",
- "System.Runtime.Serialization.Json": "(,4.3.32767]",
- "System.Runtime.Serialization.Primitives": "(,4.3.32767]",
- "System.Runtime.Serialization.Xml": "(,4.3.32767]",
- "System.Security.AccessControl": "(,6.0.32767]",
- "System.Security.Claims": "(,4.3.32767]",
- "System.Security.Cryptography.Algorithms": "(,4.3.32767]",
- "System.Security.Cryptography.Cng": "(,5.0.32767]",
- "System.Security.Cryptography.Csp": "(,4.3.32767]",
- "System.Security.Cryptography.Encoding": "(,4.3.32767]",
- "System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
- "System.Security.Cryptography.Primitives": "(,4.3.32767]",
- "System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
- "System.Security.Principal": "(,4.3.32767]",
- "System.Security.Principal.Windows": "(,5.0.32767]",
- "System.Security.SecureString": "(,4.3.32767]",
- "System.Text.Encoding": "(,4.3.32767]",
- "System.Text.Encoding.CodePages": "(,10.0.32767]",
- "System.Text.Encoding.Extensions": "(,4.3.32767]",
- "System.Text.Encodings.Web": "(,10.0.32767]",
- "System.Text.Json": "(,10.0.32767]",
- "System.Text.RegularExpressions": "(,4.3.32767]",
- "System.Threading": "(,4.3.32767]",
- "System.Threading.AccessControl": "(,10.0.32767]",
- "System.Threading.Channels": "(,10.0.32767]",
- "System.Threading.Overlapped": "(,4.3.32767]",
- "System.Threading.Tasks": "(,4.3.32767]",
- "System.Threading.Tasks.Dataflow": "(,10.0.32767]",
- "System.Threading.Tasks.Extensions": "(,5.0.32767]",
- "System.Threading.Tasks.Parallel": "(,4.3.32767]",
- "System.Threading.Thread": "(,4.3.32767]",
- "System.Threading.ThreadPool": "(,4.3.32767]",
- "System.Threading.Timer": "(,4.3.32767]",
- "System.ValueTuple": "(,4.5.32767]",
- "System.Xml.ReaderWriter": "(,4.3.32767]",
- "System.Xml.XDocument": "(,4.3.32767]",
- "System.Xml.XmlDocument": "(,4.3.32767]",
- "System.Xml.XmlSerializer": "(,4.3.32767]",
- "System.Xml.XPath": "(,4.3.32767]",
- "System.Xml.XPath.XDocument": "(,5.0.32767]"
- }
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/QpdfNetTest/obj/project.nuget.cache b/QpdfNetTest/obj/project.nuget.cache
index eaca254..01dce11 100644
--- a/QpdfNetTest/obj/project.nuget.cache
+++ b/QpdfNetTest/obj/project.nuget.cache
@@ -1,30 +1,35 @@
{
"version": 2,
- "dgSpecHash": "r5KVHlpZ9UY=",
+ "dgSpecHash": "DNnXpU4jpqw=",
"success": true,
- "projectFilePath": "C:\\Kees\\QPdfNet\\QpdfNetTest\\QpdfNetTest.csproj",
+ "projectFilePath": "/home/runner/work/QPdfNet/QPdfNet/QpdfNetTest/QpdfNetTest.csproj",
"expectedPackageFiles": [
- "C:\\Users\\AO303388\\.nuget\\packages\\coverlet.collector\\8.0.0\\coverlet.collector.8.0.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.applicationinsights\\2.23.0\\microsoft.applicationinsights.2.23.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.codecoverage\\18.3.0\\microsoft.codecoverage.18.3.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.3\\microsoft.extensions.dependencyinjection.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.3\\microsoft.extensions.dependencyinjection.abstractions.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.extensions.logging\\10.0.3\\microsoft.extensions.logging.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.3\\microsoft.extensions.logging.abstractions.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.extensions.options\\10.0.3\\microsoft.extensions.options.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.3\\microsoft.extensions.primitives.10.0.3.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.net.test.sdk\\18.3.0\\microsoft.net.test.sdk.18.3.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.testing.extensions.telemetry\\2.1.0\\microsoft.testing.extensions.telemetry.2.1.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.testing.extensions.trxreport.abstractions\\2.1.0\\microsoft.testing.extensions.trxreport.abstractions.2.1.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.testing.extensions.vstestbridge\\2.1.0\\microsoft.testing.extensions.vstestbridge.2.1.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.testing.platform\\2.1.0\\microsoft.testing.platform.2.1.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.testing.platform.msbuild\\2.1.0\\microsoft.testing.platform.msbuild.2.1.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.testplatform.objectmodel\\18.3.0\\microsoft.testplatform.objectmodel.18.3.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\microsoft.testplatform.testhost\\18.3.0\\microsoft.testplatform.testhost.18.3.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\mstest.analyzers\\4.1.0\\mstest.analyzers.4.1.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\mstest.testadapter\\4.1.0\\mstest.testadapter.4.1.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\mstest.testframework\\4.1.0\\mstest.testframework.4.1.0.nupkg.sha512",
- "C:\\Users\\AO303388\\.nuget\\packages\\newtonsoft.json\\13.0.4\\newtonsoft.json.13.0.4.nupkg.sha512"
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/coverlet.collector/8.0.0/coverlet.collector.8.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.applicationinsights/2.23.0/microsoft.applicationinsights.2.23.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.codecoverage/18.3.0/microsoft.codecoverage.18.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.extensions.dependencyinjection/10.0.3/microsoft.extensions.dependencyinjection.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.3/microsoft.extensions.dependencyinjection.abstractions.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.extensions.logging/10.0.3/microsoft.extensions.logging.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.extensions.logging.abstractions/10.0.3/microsoft.extensions.logging.abstractions.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.extensions.options/10.0.3/microsoft.extensions.options.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.extensions.primitives/10.0.3/microsoft.extensions.primitives.10.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.net.test.sdk/18.3.0/microsoft.net.test.sdk.18.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.testing.extensions.telemetry/2.1.0/microsoft.testing.extensions.telemetry.2.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.testing.extensions.trxreport.abstractions/2.1.0/microsoft.testing.extensions.trxreport.abstractions.2.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.testing.extensions.vstestbridge/2.1.0/microsoft.testing.extensions.vstestbridge.2.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.testing.platform/2.1.0/microsoft.testing.platform.2.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.testing.platform.msbuild/2.1.0/microsoft.testing.platform.msbuild.2.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.testplatform.objectmodel/18.3.0/microsoft.testplatform.objectmodel.18.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.testplatform.testhost/18.3.0/microsoft.testplatform.testhost.18.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/mstest.analyzers/4.1.0/mstest.analyzers.4.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/mstest.testadapter/4.1.0/mstest.testadapter.4.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/mstest.testframework/4.1.0/mstest.testframework.4.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/newtonsoft.json/13.0.4/newtonsoft.json.13.0.4.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/system.collections.immutable/8.0.0/system.collections.immutable.8.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/system.diagnostics.diagnosticsource/5.0.0/system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/system.reflection.metadata/8.0.0/system.reflection.metadata.8.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.netcore.app.ref/10.0.2/microsoft.netcore.app.ref.10.0.2.nupkg.sha512",
+ "/tmp/codeql-scratch-fecfac2a6d71fba3/dbs/csharp/working/packages/microsoft.aspnetcore.app.ref/10.0.2/microsoft.aspnetcore.app.ref.10.0.2.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file