commit 8bde43bd4940206792026c68640f343fb15bc229 Author: David J. Allen Date: Sun Dec 4 11:26:52 2022 -0600 Initial commit diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8ad74f7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,2 @@ +# Normalize EOL for all files that Git considers text files. +* text=auto eol=lf diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d3116b --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +# Godot 4+ specific ignores +.godot/ +client/bin/* +client/obj/* +server/bin/* +server/obj/* diff --git a/client/Program.cs b/client/Program.cs new file mode 100644 index 0000000..5b61400 --- /dev/null +++ b/client/Program.cs @@ -0,0 +1,52 @@ +// https://github.com/kekyo/FlashCap +using System.IO; +using System.Diagnostics; +using System.Net.Http.Headers; + + + +namespace QrScanner{ + + class Program{ + static async Task run_scan(){ + Process p = new Process(); + p.StartInfo = new ProcessStartInfo("/usr/bin/bpython", "client/qr_scan2.py") + { + RedirectStandardOutput = true, + UseShellExecute = false, + CreateNoWindow = true + }; + p.Start(); + string output = p.StandardOutput.ReadToEnd(); + p.WaitForExit(); + Console.WriteLine($"{output}"); + if(!string.IsNullOrEmpty(output)) + await make_request(output); + return 0; + } + + + static async Task make_request(string code){ + // Bypass SSL certificate validation (not secure) + HttpClientHandler client_handler = new HttpClientHandler(); + client_handler.ServerCertificateCustomValidationCallback = (sender, client_handler, chain, ssl_policy_errors) => { return true; }; + + HttpClient client = new(client_handler); + client.DefaultRequestHeaders.Accept.Add( + new MediaTypeWithQualityHeaderValue("application/json") + ); + client.DefaultRequestHeaders.Add("User-Agent", "QR Scanner"); + var json = await client.GetStringAsync("https://localhost:7001/scan?code="+code); + if(!string.IsNullOrEmpty(json)) + Console.WriteLine(json); + } + + + public static async Task Main(string[] args){ + // QrReaderEmgu reader = new QrReaderEmgu(); + // reader.print_capture_devices(); + // reader.capture_frame(); + return await run_scan(); + } + } +} diff --git a/client/bin/Debug/net7.0/AForge.Imaging.dll b/client/bin/Debug/net7.0/AForge.Imaging.dll new file mode 100755 index 0000000..150e87d Binary files /dev/null and b/client/bin/Debug/net7.0/AForge.Imaging.dll differ diff --git a/client/bin/Debug/net7.0/AForge.Math.dll b/client/bin/Debug/net7.0/AForge.Math.dll new file mode 100755 index 0000000..bdc5e5b Binary files /dev/null and b/client/bin/Debug/net7.0/AForge.Math.dll differ diff --git a/client/bin/Debug/net7.0/AForge.Video.DirectShow.dll b/client/bin/Debug/net7.0/AForge.Video.DirectShow.dll new file mode 100755 index 0000000..e3f806f Binary files /dev/null and b/client/bin/Debug/net7.0/AForge.Video.DirectShow.dll differ diff --git a/client/bin/Debug/net7.0/AForge.Video.dll b/client/bin/Debug/net7.0/AForge.Video.dll new file mode 100755 index 0000000..dc67243 Binary files /dev/null and b/client/bin/Debug/net7.0/AForge.Video.dll differ diff --git a/client/bin/Debug/net7.0/AForge.dll b/client/bin/Debug/net7.0/AForge.dll new file mode 100755 index 0000000..311cfe5 Binary files /dev/null and b/client/bin/Debug/net7.0/AForge.dll differ diff --git a/client/bin/Debug/net7.0/Emgu.CV.Bitmap.dll b/client/bin/Debug/net7.0/Emgu.CV.Bitmap.dll new file mode 100755 index 0000000..3febe9f Binary files /dev/null and b/client/bin/Debug/net7.0/Emgu.CV.Bitmap.dll differ diff --git a/client/bin/Debug/net7.0/Emgu.CV.dll b/client/bin/Debug/net7.0/Emgu.CV.dll new file mode 100755 index 0000000..91b19aa Binary files /dev/null and b/client/bin/Debug/net7.0/Emgu.CV.dll differ diff --git a/client/bin/Debug/net7.0/FlashCap.Core.dll b/client/bin/Debug/net7.0/FlashCap.Core.dll new file mode 100755 index 0000000..166214f Binary files /dev/null and b/client/bin/Debug/net7.0/FlashCap.Core.dll differ diff --git a/client/bin/Debug/net7.0/FlashCap.dll b/client/bin/Debug/net7.0/FlashCap.dll new file mode 100755 index 0000000..79c4023 Binary files /dev/null and b/client/bin/Debug/net7.0/FlashCap.dll differ diff --git a/client/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll b/client/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll new file mode 100755 index 0000000..3ab5850 Binary files /dev/null and b/client/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/client/bin/Debug/net7.0/SixLabors.ImageSharp.dll b/client/bin/Debug/net7.0/SixLabors.ImageSharp.dll new file mode 100755 index 0000000..dd87091 Binary files /dev/null and b/client/bin/Debug/net7.0/SixLabors.ImageSharp.dll differ diff --git a/client/bin/Debug/net7.0/System.Drawing.Common.dll b/client/bin/Debug/net7.0/System.Drawing.Common.dll new file mode 100755 index 0000000..be6915e Binary files /dev/null and b/client/bin/Debug/net7.0/System.Drawing.Common.dll differ diff --git a/client/bin/Debug/net7.0/System.Reactive.dll b/client/bin/Debug/net7.0/System.Reactive.dll new file mode 100755 index 0000000..eb364ec Binary files /dev/null and b/client/bin/Debug/net7.0/System.Reactive.dll differ diff --git a/client/bin/Debug/net7.0/ZXing.Windows.Compatibility.dll b/client/bin/Debug/net7.0/ZXing.Windows.Compatibility.dll new file mode 100755 index 0000000..07bef0e Binary files /dev/null and b/client/bin/Debug/net7.0/ZXing.Windows.Compatibility.dll differ diff --git a/client/bin/Debug/net7.0/client b/client/bin/Debug/net7.0/client new file mode 100755 index 0000000..f60562a Binary files /dev/null and b/client/bin/Debug/net7.0/client differ diff --git a/client/bin/Debug/net7.0/client.deps.json b/client/bin/Debug/net7.0/client.deps.json new file mode 100644 index 0000000..2ddcabb --- /dev/null +++ b/client/bin/Debug/net7.0/client.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "client/1.0.0": { + "runtime": { + "client.dll": {} + } + } + } + }, + "libraries": { + "client/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/client/bin/Debug/net7.0/client.dll b/client/bin/Debug/net7.0/client.dll new file mode 100644 index 0000000..3507913 Binary files /dev/null and b/client/bin/Debug/net7.0/client.dll differ diff --git a/client/bin/Debug/net7.0/client.pdb b/client/bin/Debug/net7.0/client.pdb new file mode 100644 index 0000000..15d625d Binary files /dev/null and b/client/bin/Debug/net7.0/client.pdb differ diff --git a/client/bin/Debug/net7.0/client.runtimeconfig.json b/client/bin/Debug/net7.0/client.runtimeconfig.json new file mode 100644 index 0000000..184be8b --- /dev/null +++ b/client/bin/Debug/net7.0/client.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + } + } +} \ No newline at end of file diff --git a/client/bin/Debug/net7.0/qrreader b/client/bin/Debug/net7.0/qrreader new file mode 100755 index 0000000..eeab65a Binary files /dev/null and b/client/bin/Debug/net7.0/qrreader differ diff --git a/client/bin/Debug/net7.0/qrreader.deps.json b/client/bin/Debug/net7.0/qrreader.deps.json new file mode 100644 index 0000000..a0f4b35 --- /dev/null +++ b/client/bin/Debug/net7.0/qrreader.deps.json @@ -0,0 +1,781 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "qrreader/1.0.0": { + "dependencies": { + "AForge": "2.2.5", + "AForge.Imaging": "2.2.5", + "AForge.Math": "2.2.5", + "AForge.Video": "2.2.5", + "AForge.Video.DirectShow": "2.2.5", + "Emgu.CV": "4.6.0.5131", + "Emgu.CV.Bitmap": "4.6.0.5131", + "Emgu.CV.runtime.windows": "4.6.0.5131", + "FlashCap": "1.4.0", + "SixLabors.ImageSharp": "2.1.3", + "System.Reactive": "5.0.0", + "ZXing.Net": "0.16.8", + "ZXing.Net.Bindings.Windows.Compatibility": "0.16.10" + }, + "runtime": { + "qrreader.dll": {} + } + }, + "AForge/2.2.5": { + "runtime": { + "lib/AForge.dll": { + "assemblyVersion": "2.2.5.0", + "fileVersion": "2.2.5.0" + } + } + }, + "AForge.Imaging/2.2.5": { + "dependencies": { + "AForge": "2.2.5", + "AForge.Math": "2.2.5" + }, + "runtime": { + "lib/AForge.Imaging.dll": { + "assemblyVersion": "2.2.5.0", + "fileVersion": "2.2.5.0" + } + } + }, + "AForge.Math/2.2.5": { + "dependencies": { + "AForge": "2.2.5" + }, + "runtime": { + "lib/AForge.Math.dll": { + "assemblyVersion": "2.2.5.0", + "fileVersion": "2.2.5.0" + } + } + }, + "AForge.Video/2.2.5": { + "dependencies": { + "AForge": "2.2.5" + }, + "runtime": { + "lib/AForge.Video.dll": { + "assemblyVersion": "2.2.5.0", + "fileVersion": "2.2.5.0" + } + } + }, + "AForge.Video.DirectShow/2.2.5": { + "dependencies": { + "AForge.Video": "2.2.5" + }, + "runtime": { + "lib/AForge.Video.DirectShow.dll": { + "assemblyVersion": "2.2.5.0", + "fileVersion": "2.2.5.0" + } + } + }, + "Emgu.CV/4.6.0.5131": { + "dependencies": { + "System.Drawing.Primitives": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Emgu.CV.dll": { + "assemblyVersion": "4.6.0.5131", + "fileVersion": "4.6.0.5131" + } + } + }, + "Emgu.CV.Bitmap/4.6.0.5131": { + "dependencies": { + "Emgu.CV": "4.6.0.5131", + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Emgu.CV.Bitmap.dll": { + "assemblyVersion": "4.6.0.5131", + "fileVersion": "4.6.0.5131" + } + } + }, + "Emgu.CV.runtime.windows/4.6.0.5131": { + "dependencies": { + "Emgu.CV": "4.6.0.5131", + "Emgu.runtime.windows.msvc.rt.arm64": "19.33.31630", + "Emgu.runtime.windows.msvc.rt.x64": "19.33.31630", + "Emgu.runtime.windows.msvc.rt.x86": "19.33.31630" + }, + "runtimeTargets": { + "runtimes/win-arm64/native/cvextern.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/cvextern.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/opencv_videoio_ffmpeg460_64.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/cvextern.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/opencv_videoio_ffmpeg460.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Emgu.runtime.windows.msvc.rt.arm64/19.33.31630": { + "runtimeTargets": { + "runtimes/win-arm64/native/concrt140.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/msvcp140.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/msvcp140_1.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/msvcp140_2.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/msvcp140_atomic_wait.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/msvcp140_codecvt_ids.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/vcruntime140.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/vcruntime140_1.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Emgu.runtime.windows.msvc.rt.x64/19.33.31630": { + "runtimeTargets": { + "runtimes/win-x64/native/concrt140.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/msvcp140.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/msvcp140_1.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/msvcp140_2.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/msvcp140_atomic_wait.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/msvcp140_codecvt_ids.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/vcruntime140.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/vcruntime140_1.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Emgu.runtime.windows.msvc.rt.x86/19.33.31630": { + "runtimeTargets": { + "runtimes/win-x86/native/concrt140.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/msvcp140.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/msvcp140_1.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/msvcp140_2.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/msvcp140_atomic_wait.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/msvcp140_codecvt_ids.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/vcruntime140.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "FlashCap/1.4.0": { + "dependencies": { + "FlashCap.Core": "1.4.0" + }, + "runtime": { + "lib/net7.0/FlashCap.dll": { + "assemblyVersion": "1.4.0.0", + "fileVersion": "2022.11.23.38413" + } + } + }, + "FlashCap.Core/1.4.0": { + "runtime": { + "lib/net7.0/FlashCap.Core.dll": { + "assemblyVersion": "1.4.0.0", + "fileVersion": "2022.11.23.38413" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.NETCore.Targets/1.1.3": {}, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3" + } + }, + "SixLabors.ImageSharp/2.1.3": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.1.3.0" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Drawing.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.1", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Reactive/5.0.0": { + "runtime": { + "lib/net5.0/System.Reactive.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.1" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.1" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.1" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.1" + } + }, + "System.Runtime/4.3.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3" + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" + } + }, + "System.Text.Encoding.CodePages/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.1", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.3", + "System.Runtime": "4.3.1" + } + }, + "ZXing.Net/0.16.8": { + "runtime": { + "lib/net6.0/zxing.dll": { + "assemblyVersion": "0.16.8.0", + "fileVersion": "0.16.8.0" + } + } + }, + "ZXing.Net.Bindings.Windows.Compatibility/0.16.10": { + "dependencies": { + "System.Drawing.Common": "6.0.0", + "ZXing.Net": "0.16.8" + }, + "runtime": { + "lib/net6.0/ZXing.Windows.Compatibility.dll": { + "assemblyVersion": "0.16.10.0", + "fileVersion": "0.16.10.0" + } + } + } + } + }, + "libraries": { + "qrreader/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AForge/2.2.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-clkumhM9DggqIzEXAHgVLeWO4arG5YfoPr7J4jfjJx35AoeEIJSSm49J25bwp/9mXQYLwi7y1Wunc8qgYJsGxg==", + "path": "aforge/2.2.5", + "hashPath": "aforge.2.2.5.nupkg.sha512" + }, + "AForge.Imaging/2.2.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-n8l7Zdsm89EFW9Uz4uCO3D428Gu4Q56YxixSMJPruen1c30R8R9Mm8AreTdoOi2XjN5id04JwFFlXYTk8pIIfw==", + "path": "aforge.imaging/2.2.5", + "hashPath": "aforge.imaging.2.2.5.nupkg.sha512" + }, + "AForge.Math/2.2.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pmT1WobVv13vMxwXhCu8sRunxjiUHyURWS0+dsW/aBPi06xiyYIdCLHI6jph9Axb4QoLIlb85eBI6zd2EAbGIg==", + "path": "aforge.math/2.2.5", + "hashPath": "aforge.math.2.2.5.nupkg.sha512" + }, + "AForge.Video/2.2.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XqzcOXtBUagEPRqg/00oayxlCPmxP4284SdM62mVotsNoD03fs19BrzdMBfhUOOYPyd0B/IXH7tEWnSDmc2gxA==", + "path": "aforge.video/2.2.5", + "hashPath": "aforge.video.2.2.5.nupkg.sha512" + }, + "AForge.Video.DirectShow/2.2.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pEch6felU/RGAbl0A7yjaQjsGxwiRFU9R+qBqR92wQo++XhzPLeQaZHnAPIBYaG7MfoqtjgCDkK4z3Tra4VQ3w==", + "path": "aforge.video.directshow/2.2.5", + "hashPath": "aforge.video.directshow.2.2.5.nupkg.sha512" + }, + "Emgu.CV/4.6.0.5131": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pRtYFTe+IZBoxm79cfkAS2QHnmLiz6upyKJNUnxUyVrOlw+QoLL7lx1siXCruvOVU5wkxCqOCBYDHnDNBSURsQ==", + "path": "emgu.cv/4.6.0.5131", + "hashPath": "emgu.cv.4.6.0.5131.nupkg.sha512" + }, + "Emgu.CV.Bitmap/4.6.0.5131": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T+Gm73BlAd+88BpMf8qpWtG5oX/a8/J3GIsYYKJsrcYtj6IWC15vBu8BXeasseZpdDNFfSmOrKJVWDEG1G9ICQ==", + "path": "emgu.cv.bitmap/4.6.0.5131", + "hashPath": "emgu.cv.bitmap.4.6.0.5131.nupkg.sha512" + }, + "Emgu.CV.runtime.windows/4.6.0.5131": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YAybhlr28ETP2Uv7j1Wg4cxF5CJfgbOT3FQ9602ZY0kZgJKV3qDaUn6ZdUMalO5HocU9czCxHEwHhQH+645XZQ==", + "path": "emgu.cv.runtime.windows/4.6.0.5131", + "hashPath": "emgu.cv.runtime.windows.4.6.0.5131.nupkg.sha512" + }, + "Emgu.runtime.windows.msvc.rt.arm64/19.33.31630": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Pbu8A7ghkM9HeKSS012SYvrejpj3Hpo5JKF3NaQ+0klv3cu47gbt2W+RaEhcXZZWelPmvgweXBjSVTef0HfTrw==", + "path": "emgu.runtime.windows.msvc.rt.arm64/19.33.31630", + "hashPath": "emgu.runtime.windows.msvc.rt.arm64.19.33.31630.nupkg.sha512" + }, + "Emgu.runtime.windows.msvc.rt.x64/19.33.31630": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sBIDz7mLJgYKgmut7WNwuCG5/+VTwsf+Oubd430QfdF4bgJPJoUCQ7P9OKvTvqQo1t95DpgdyjxNloDVCGUIFQ==", + "path": "emgu.runtime.windows.msvc.rt.x64/19.33.31630", + "hashPath": "emgu.runtime.windows.msvc.rt.x64.19.33.31630.nupkg.sha512" + }, + "Emgu.runtime.windows.msvc.rt.x86/19.33.31630": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Jwqm4yrJRDWs4rUmcpwUVvDuISRgp6WJvCX/n1rTy52GjnWKvzTYOPvhKiAH2alB/bBGbNhyP5UvmhUeN3dOXw==", + "path": "emgu.runtime.windows.msvc.rt.x86/19.33.31630", + "hashPath": "emgu.runtime.windows.msvc.rt.x86.19.33.31630.nupkg.sha512" + }, + "FlashCap/1.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ixxoab11r00EMfGjeC/KCGfr8H38Q2FC4LTuR+IZPNTuuMDdkKxUcd0hd3i7UI82xqwNiTbsb0c4c4v0bSce3Q==", + "path": "flashcap/1.4.0", + "hashPath": "flashcap.1.4.0.nupkg.sha512" + }, + "FlashCap.Core/1.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-smsAvwFIYUo7zUwfFUHLtjy1RmFUIZgjpUs5ANnH1WQ2BtXfmWl8QexsE1aK5okQHhyF7JhJuW3CBatXixT02w==", + "path": "flashcap.core/1.4.0", + "hashPath": "flashcap.core.1.4.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==", + "path": "microsoft.netcore.targets/1.1.3", + "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "SixLabors.ImageSharp/2.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8yonNRWX3vUE9k29ta0Hbfa0AEc0hbDjSH/nZ3vOTJEXmY6hLnGsjDKoz96Z+AgOsrdkAu6PdL/Ebaf70aitzw==", + "path": "sixlabors.imagesharp/2.1.3", + "hashPath": "sixlabors.imagesharp.2.1.3.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Drawing.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1QU/c35gwdhvj77fkScXQQbjiVAqIL3fEYn/19NE0CV/ic5TN5PyWAft8HsrbRd4SBLEoErNCkWSzMDc0MmbRw==", + "path": "system.drawing.primitives/4.3.0", + "hashPath": "system.drawing.primitives.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.Reactive/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-erBZjkQHWL9jpasCE/0qKAryzVBJFxGHVBAvgRN1bzM0q2s1S4oYREEEL0Vb+1kA/6BKb5FjUZMp5VXmy+gzkQ==", + "path": "system.reactive/5.0.0", + "hashPath": "system.reactive.5.0.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==", + "path": "system.runtime/4.3.1", + "hashPath": "system.runtime.4.3.1.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", + "path": "system.text.encoding.codepages/5.0.0", + "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "ZXing.Net/0.16.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Cbbe+x7I7E+VJ0VxU1fPc7AktIw/9xea/ZY/fh38sXqTQ75LJp9ooGUjpzFqfpPfIKozAoXgJ4yvY4GzKpPBzQ==", + "path": "zxing.net/0.16.8", + "hashPath": "zxing.net.0.16.8.nupkg.sha512" + }, + "ZXing.Net.Bindings.Windows.Compatibility/0.16.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-euWnxHf1jJ+jYyOjX/TAv9uVx4LKJPaUbuUG3O1F3Vkyp0LaXmutgKaJqHITvomyFp+cGt4N3CdC1Ftd5fQkmw==", + "path": "zxing.net.bindings.windows.compatibility/0.16.10", + "hashPath": "zxing.net.bindings.windows.compatibility.0.16.10.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/client/bin/Debug/net7.0/qrreader.dll b/client/bin/Debug/net7.0/qrreader.dll new file mode 100644 index 0000000..cba4446 Binary files /dev/null and b/client/bin/Debug/net7.0/qrreader.dll differ diff --git a/client/bin/Debug/net7.0/qrreader.pdb b/client/bin/Debug/net7.0/qrreader.pdb new file mode 100644 index 0000000..0ee8349 Binary files /dev/null and b/client/bin/Debug/net7.0/qrreader.pdb differ diff --git a/client/bin/Debug/net7.0/qrreader.runtimeconfig.json b/client/bin/Debug/net7.0/qrreader.runtimeconfig.json new file mode 100644 index 0000000..184be8b --- /dev/null +++ b/client/bin/Debug/net7.0/qrreader.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + } + } +} \ No newline at end of file diff --git a/client/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/client/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll new file mode 100755 index 0000000..9e26473 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-arm64/native/concrt140.dll b/client/bin/Debug/net7.0/runtimes/win-arm64/native/concrt140.dll new file mode 100755 index 0000000..7ce9e95 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-arm64/native/concrt140.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-arm64/native/cvextern.dll b/client/bin/Debug/net7.0/runtimes/win-arm64/native/cvextern.dll new file mode 100755 index 0000000..2aed76f Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-arm64/native/cvextern.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140.dll b/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140.dll new file mode 100755 index 0000000..30a72f3 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140_1.dll b/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140_1.dll new file mode 100755 index 0000000..642aeb2 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140_1.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140_2.dll b/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140_2.dll new file mode 100755 index 0000000..bb3e94b Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140_2.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140_atomic_wait.dll b/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140_atomic_wait.dll new file mode 100755 index 0000000..8031a98 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140_atomic_wait.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140_codecvt_ids.dll b/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140_codecvt_ids.dll new file mode 100755 index 0000000..5696e7b Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-arm64/native/msvcp140_codecvt_ids.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-arm64/native/vcruntime140.dll b/client/bin/Debug/net7.0/runtimes/win-arm64/native/vcruntime140.dll new file mode 100755 index 0000000..8449b93 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-arm64/native/vcruntime140.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-arm64/native/vcruntime140_1.dll b/client/bin/Debug/net7.0/runtimes/win-arm64/native/vcruntime140_1.dll new file mode 100755 index 0000000..c0944ba Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-arm64/native/vcruntime140_1.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x64/native/concrt140.dll b/client/bin/Debug/net7.0/runtimes/win-x64/native/concrt140.dll new file mode 100755 index 0000000..49bbca7 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x64/native/concrt140.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x64/native/cvextern.dll b/client/bin/Debug/net7.0/runtimes/win-x64/native/cvextern.dll new file mode 100755 index 0000000..d5f2afe Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x64/native/cvextern.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140.dll b/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140.dll new file mode 100755 index 0000000..eda8446 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140_1.dll b/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140_1.dll new file mode 100755 index 0000000..75050cb Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140_1.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140_2.dll b/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140_2.dll new file mode 100755 index 0000000..48cd4d9 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140_2.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140_atomic_wait.dll b/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140_atomic_wait.dll new file mode 100755 index 0000000..1ed2671 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140_atomic_wait.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140_codecvt_ids.dll b/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140_codecvt_ids.dll new file mode 100755 index 0000000..02f3d27 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x64/native/msvcp140_codecvt_ids.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x64/native/opencv_videoio_ffmpeg460_64.dll b/client/bin/Debug/net7.0/runtimes/win-x64/native/opencv_videoio_ffmpeg460_64.dll new file mode 100755 index 0000000..19ae39a Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x64/native/opencv_videoio_ffmpeg460_64.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x64/native/vcruntime140.dll b/client/bin/Debug/net7.0/runtimes/win-x64/native/vcruntime140.dll new file mode 100755 index 0000000..9cda5ce Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x64/native/vcruntime140.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x64/native/vcruntime140_1.dll b/client/bin/Debug/net7.0/runtimes/win-x64/native/vcruntime140_1.dll new file mode 100755 index 0000000..49f97fe Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x64/native/vcruntime140_1.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x86/native/concrt140.dll b/client/bin/Debug/net7.0/runtimes/win-x86/native/concrt140.dll new file mode 100755 index 0000000..01ce32a Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x86/native/concrt140.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x86/native/cvextern.dll b/client/bin/Debug/net7.0/runtimes/win-x86/native/cvextern.dll new file mode 100755 index 0000000..95c3f46 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x86/native/cvextern.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140.dll b/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140.dll new file mode 100755 index 0000000..e2650bb Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140_1.dll b/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140_1.dll new file mode 100755 index 0000000..fff5ff6 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140_1.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140_2.dll b/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140_2.dll new file mode 100755 index 0000000..6f1410f Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140_2.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140_atomic_wait.dll b/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140_atomic_wait.dll new file mode 100755 index 0000000..ecf3c62 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140_atomic_wait.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140_codecvt_ids.dll b/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140_codecvt_ids.dll new file mode 100755 index 0000000..8ee4bb9 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x86/native/msvcp140_codecvt_ids.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x86/native/opencv_videoio_ffmpeg460.dll b/client/bin/Debug/net7.0/runtimes/win-x86/native/opencv_videoio_ffmpeg460.dll new file mode 100755 index 0000000..98c2f2d Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x86/native/opencv_videoio_ffmpeg460.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win-x86/native/vcruntime140.dll b/client/bin/Debug/net7.0/runtimes/win-x86/native/vcruntime140.dll new file mode 100755 index 0000000..66d2e96 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win-x86/native/vcruntime140.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/client/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100755 index 0000000..66af198 Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/client/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/client/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll new file mode 100755 index 0000000..7c9e87b Binary files /dev/null and b/client/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll differ diff --git a/client/bin/Debug/net7.0/zxing.dll b/client/bin/Debug/net7.0/zxing.dll new file mode 100755 index 0000000..555930e Binary files /dev/null and b/client/bin/Debug/net7.0/zxing.dll differ diff --git a/client/client.csproj b/client/client.csproj new file mode 100644 index 0000000..f02677b --- /dev/null +++ b/client/client.csproj @@ -0,0 +1,10 @@ + + + + Exe + net7.0 + enable + enable + + + diff --git a/client/libcvextern.so b/client/libcvextern.so new file mode 100644 index 0000000..d163a85 Binary files /dev/null and b/client/libcvextern.so differ diff --git a/client/libs/emgu.cv.runtime.ubuntu.4.4.0.4099.nupkg b/client/libs/emgu.cv.runtime.ubuntu.4.4.0.4099.nupkg new file mode 100644 index 0000000..e29dd32 Binary files /dev/null and b/client/libs/emgu.cv.runtime.ubuntu.4.4.0.4099.nupkg differ diff --git a/client/libs/emgu.cv.runtime.ubuntu.4.4.0.4099/build/x64/libcvextern.so b/client/libs/emgu.cv.runtime.ubuntu.4.4.0.4099/build/x64/libcvextern.so new file mode 100644 index 0000000..d163a85 Binary files /dev/null and b/client/libs/emgu.cv.runtime.ubuntu.4.4.0.4099/build/x64/libcvextern.so differ diff --git a/client/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/client/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/client/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/client/obj/Debug/net7.0/apphost b/client/obj/Debug/net7.0/apphost new file mode 100755 index 0000000..f60562a Binary files /dev/null and b/client/obj/Debug/net7.0/apphost differ diff --git a/client/obj/Debug/net7.0/client.AssemblyInfo.cs b/client/obj/Debug/net7.0/client.AssemblyInfo.cs new file mode 100644 index 0000000..799fbd5 --- /dev/null +++ b/client/obj/Debug/net7.0/client.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("client")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("client")] +[assembly: System.Reflection.AssemblyTitleAttribute("client")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/client/obj/Debug/net7.0/client.AssemblyInfoInputs.cache b/client/obj/Debug/net7.0/client.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8d59788 --- /dev/null +++ b/client/obj/Debug/net7.0/client.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +bf7784d7de989d2ff82b72894d57569fb689b395 diff --git a/client/obj/Debug/net7.0/client.GeneratedMSBuildEditorConfig.editorconfig b/client/obj/Debug/net7.0/client.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9b45599 --- /dev/null +++ b/client/obj/Debug/net7.0/client.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = client +build_property.ProjectDir = /home/david/Projects/qrreader/client/ diff --git a/client/obj/Debug/net7.0/client.GlobalUsings.g.cs b/client/obj/Debug/net7.0/client.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/client/obj/Debug/net7.0/client.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/client/obj/Debug/net7.0/client.assets.cache b/client/obj/Debug/net7.0/client.assets.cache new file mode 100644 index 0000000..76a8adb Binary files /dev/null and b/client/obj/Debug/net7.0/client.assets.cache differ diff --git a/client/obj/Debug/net7.0/client.csproj.AssemblyReference.cache b/client/obj/Debug/net7.0/client.csproj.AssemblyReference.cache new file mode 100644 index 0000000..61c4b54 Binary files /dev/null and b/client/obj/Debug/net7.0/client.csproj.AssemblyReference.cache differ diff --git a/client/obj/Debug/net7.0/client.csproj.CoreCompileInputs.cache b/client/obj/Debug/net7.0/client.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..36b4cd6 --- /dev/null +++ b/client/obj/Debug/net7.0/client.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ad622ae64482c3f098f7132776d5a7cdaae55ec7 diff --git a/client/obj/Debug/net7.0/client.csproj.FileListAbsolute.txt b/client/obj/Debug/net7.0/client.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a8c0e73 --- /dev/null +++ b/client/obj/Debug/net7.0/client.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +/home/david/Projects/qrreader/client/obj/Debug/net7.0/client.csproj.AssemblyReference.cache +/home/david/Projects/qrreader/client/obj/Debug/net7.0/client.GeneratedMSBuildEditorConfig.editorconfig +/home/david/Projects/qrreader/client/obj/Debug/net7.0/client.AssemblyInfoInputs.cache +/home/david/Projects/qrreader/client/obj/Debug/net7.0/client.AssemblyInfo.cs +/home/david/Projects/qrreader/client/obj/Debug/net7.0/client.csproj.CoreCompileInputs.cache +/home/david/Projects/qrreader/client/bin/Debug/net7.0/client +/home/david/Projects/qrreader/client/bin/Debug/net7.0/client.deps.json +/home/david/Projects/qrreader/client/bin/Debug/net7.0/client.runtimeconfig.json +/home/david/Projects/qrreader/client/bin/Debug/net7.0/client.dll +/home/david/Projects/qrreader/client/bin/Debug/net7.0/client.pdb +/home/david/Projects/qrreader/client/obj/Debug/net7.0/client.dll +/home/david/Projects/qrreader/client/obj/Debug/net7.0/refint/client.dll +/home/david/Projects/qrreader/client/obj/Debug/net7.0/client.pdb +/home/david/Projects/qrreader/client/obj/Debug/net7.0/client.genruntimeconfig.cache +/home/david/Projects/qrreader/client/obj/Debug/net7.0/ref/client.dll diff --git a/client/obj/Debug/net7.0/client.dll b/client/obj/Debug/net7.0/client.dll new file mode 100644 index 0000000..3507913 Binary files /dev/null and b/client/obj/Debug/net7.0/client.dll differ diff --git a/client/obj/Debug/net7.0/client.genruntimeconfig.cache b/client/obj/Debug/net7.0/client.genruntimeconfig.cache new file mode 100644 index 0000000..f3cc2e1 --- /dev/null +++ b/client/obj/Debug/net7.0/client.genruntimeconfig.cache @@ -0,0 +1 @@ +12bdd522ff8e15fe7e21b186917799d7af7974db diff --git a/client/obj/Debug/net7.0/client.pdb b/client/obj/Debug/net7.0/client.pdb new file mode 100644 index 0000000..15d625d Binary files /dev/null and b/client/obj/Debug/net7.0/client.pdb differ diff --git a/client/obj/Debug/net7.0/ref/client.dll b/client/obj/Debug/net7.0/ref/client.dll new file mode 100644 index 0000000..fb67130 Binary files /dev/null and b/client/obj/Debug/net7.0/ref/client.dll differ diff --git a/client/obj/Debug/net7.0/refint/client.dll b/client/obj/Debug/net7.0/refint/client.dll new file mode 100644 index 0000000..fb67130 Binary files /dev/null and b/client/obj/Debug/net7.0/refint/client.dll differ diff --git a/client/obj/client.csproj.nuget.dgspec.json b/client/obj/client.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f3b3380 --- /dev/null +++ b/client/obj/client.csproj.nuget.dgspec.json @@ -0,0 +1,71 @@ +{ + "format": 1, + "restore": { + "/home/david/Projects/qrreader/client/client.csproj": {} + }, + "projects": { + "/home/david/Projects/qrreader/client/client.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/david/Projects/qrreader/client/client.csproj", + "projectName": "client", + "projectPath": "/home/david/Projects/qrreader/client/client.csproj", + "packagesPath": "/home/david/.nuget/packages/", + "outputPath": "/home/david/Projects/qrreader/client/obj/", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "/home/david/.local/share/godot/mono/GodotNuGetFallbackFolder" + ], + "configFilePaths": [ + "/home/david/.nuget/NuGet/NuGet.Config", + "/home/david/.nuget/NuGet/config/Godot.Offline.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[7.0.0, 7.0.0]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.100/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/client/obj/client.csproj.nuget.g.props b/client/obj/client.csproj.nuget.g.props new file mode 100644 index 0000000..b47b4d7 --- /dev/null +++ b/client/obj/client.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/david/.nuget/packages/ + /home/david/.nuget/packages/;/home/david/.local/share/godot/mono/GodotNuGetFallbackFolder + PackageReference + 6.4.0 + + + + + + \ No newline at end of file diff --git a/client/obj/client.csproj.nuget.g.targets b/client/obj/client.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/client/obj/client.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/client/obj/project.assets.json b/client/obj/project.assets.json new file mode 100644 index 0000000..ec34660 --- /dev/null +++ b/client/obj/project.assets.json @@ -0,0 +1,77 @@ +{ + "version": 3, + "targets": { + "net7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net7.0": [] + }, + "packageFolders": { + "/home/david/.nuget/packages/": {}, + "/home/david/.local/share/godot/mono/GodotNuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/david/Projects/qrreader/client/client.csproj", + "projectName": "client", + "projectPath": "/home/david/Projects/qrreader/client/client.csproj", + "packagesPath": "/home/david/.nuget/packages/", + "outputPath": "/home/david/Projects/qrreader/client/obj/", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "/home/david/.local/share/godot/mono/GodotNuGetFallbackFolder" + ], + "configFilePaths": [ + "/home/david/.nuget/NuGet/NuGet.Config", + "/home/david/.nuget/NuGet/config/Godot.Offline.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[7.0.0, 7.0.0]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.100/RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/client/obj/project.nuget.cache b/client/obj/project.nuget.cache new file mode 100644 index 0000000..bfa3b6e --- /dev/null +++ b/client/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "CE9PmFr63Yk9HwFs5xHXDmmLCNiMFEd2K+YzeuSWcpHW27YimPEAvEJAuPm7pRMNdzQuRLNA2Ca8LeEYUAQa3Q==", + "success": true, + "projectFilePath": "/home/david/Projects/qrreader/client/client.csproj", + "expectedPackageFiles": [ + "/home/david/.nuget/packages/microsoft.aspnetcore.app.ref/7.0.0/microsoft.aspnetcore.app.ref.7.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/client/qr_scan.py b/client/qr_scan.py new file mode 100644 index 0000000..81731f9 --- /dev/null +++ b/client/qr_scan.py @@ -0,0 +1,33 @@ +import cv2 +import numpy as np +from pyzbar.pyzbar import decode + + +def decoder(image): + gray_img = cv2.cvtColor(image,0) + barcode = decode(gray_img) + + for obj in barcode: + points = obj.polygon + (x,y,w,h) = obj.rect + pts = np.array(points, np.int32) + pts = pts.reshape((-1, 1, 2)) + cv2.polylines(image, [pts], True, (0, 255, 0), 3) + + barcodeData = obj.data.decode("utf-8") + barcodeType = obj.type + string = "Data " + str(barcodeData) + " | Type " + str(barcodeType) + + cv2.putText(frame, string, (x,y), cv2.FONT_HERSHEY_SIMPLEX,0.8,(255,0,0), 2) + print("Barcode: "+barcodeData +" | Type: "+barcodeType) + + +if __name__ == "__main__": + cap = cv2.VideoCapture(0) + while True: + ret, frame = cap.read() + decoder(frame) + cv2.imshow('Image', frame) + code = cv2.waitKey(10) + if code == ord('q'): + break \ No newline at end of file diff --git a/client/qr_scan2.py b/client/qr_scan2.py new file mode 100644 index 0000000..98470eb --- /dev/null +++ b/client/qr_scan2.py @@ -0,0 +1,44 @@ +import cv2 +from pyzbar import pyzbar + + +def read_barcodes(frame): + barcodes = pyzbar.decode(frame) + found = False + for barcode in barcodes: + x, y , w, h = barcode.rect + + + barcode_info = barcode.data.decode('utf-8') + cv2.rectangle(frame, (x, y),(x+w, y+h), (0, 255, 0), 2) + + font = cv2.FONT_HERSHEY_DUPLEX + cv2.putText(frame, barcode_info, (x + 6, y - 6), font, 0.5, (255, 255, 255), 1) + print(barcode_info, end="") + found = len(barcode_info) != 0 + + return frame, found + + +def main() -> None: + # Set video capture + camera = cv2.VideoCapture(0) + ret, frame = camera.read() + + # Run decoding until 'Esc' pressed + while ret: + ret, frame = camera.read() + frame, found = read_barcodes(frame) + cv2.imshow("", frame) + if found: + break + if cv2.waitKey(1) & 0xFF == 27: + break + + # Release camera and close app + camera.release() + cv2.destroyAllWindows() + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/icon.svg b/icon.svg new file mode 100644 index 0000000..adc26df --- /dev/null +++ b/icon.svg @@ -0,0 +1 @@ + diff --git a/icon.svg.import b/icon.svg.import new file mode 100644 index 0000000..0284a43 --- /dev/null +++ b/icon.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djr7ke1r23aew" +path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://icon.svg" +dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"] + +[params] + +compress/mode=0 +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/bptc_ldr=0 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/obj/Debug/net7.0/apphost b/obj/Debug/net7.0/apphost new file mode 100755 index 0000000..eeab65a Binary files /dev/null and b/obj/Debug/net7.0/apphost differ diff --git a/obj/Debug/net7.0/qrreader.AssemblyInfo.cs b/obj/Debug/net7.0/qrreader.AssemblyInfo.cs new file mode 100644 index 0000000..210b4ff --- /dev/null +++ b/obj/Debug/net7.0/qrreader.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("qrreader")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("qrreader")] +[assembly: System.Reflection.AssemblyTitleAttribute("qrreader")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net7.0/qrreader.AssemblyInfoInputs.cache b/obj/Debug/net7.0/qrreader.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8e6f1fe --- /dev/null +++ b/obj/Debug/net7.0/qrreader.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +bfc9ef1f924000ca5d80901a7edea874224a7ee3 diff --git a/obj/Debug/net7.0/qrreader.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0/qrreader.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d793fe8 --- /dev/null +++ b/obj/Debug/net7.0/qrreader.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = qrreader +build_property.ProjectDir = /home/david/Projects/qrreader/ diff --git a/obj/Debug/net7.0/qrreader.GlobalUsings.g.cs b/obj/Debug/net7.0/qrreader.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Debug/net7.0/qrreader.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/obj/Debug/net7.0/qrreader.assets.cache b/obj/Debug/net7.0/qrreader.assets.cache new file mode 100644 index 0000000..20f86d5 Binary files /dev/null and b/obj/Debug/net7.0/qrreader.assets.cache differ diff --git a/obj/Debug/net7.0/qrreader.csproj.AssemblyReference.cache b/obj/Debug/net7.0/qrreader.csproj.AssemblyReference.cache new file mode 100644 index 0000000..880552a Binary files /dev/null and b/obj/Debug/net7.0/qrreader.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net7.0/qrreader.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0/qrreader.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..33ac30c --- /dev/null +++ b/obj/Debug/net7.0/qrreader.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2be77d7175342c771cf474f13a7b0147d668b9c3 diff --git a/obj/Debug/net7.0/qrreader.csproj.FileListAbsolute.txt b/obj/Debug/net7.0/qrreader.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..fb31b67 --- /dev/null +++ b/obj/Debug/net7.0/qrreader.csproj.FileListAbsolute.txt @@ -0,0 +1,5 @@ +/home/david/Projects/qrreader/obj/Debug/net7.0/qrreader.csproj.AssemblyReference.cache +/home/david/Projects/qrreader/obj/Debug/net7.0/qrreader.GeneratedMSBuildEditorConfig.editorconfig +/home/david/Projects/qrreader/obj/Debug/net7.0/qrreader.AssemblyInfoInputs.cache +/home/david/Projects/qrreader/obj/Debug/net7.0/qrreader.AssemblyInfo.cs +/home/david/Projects/qrreader/obj/Debug/net7.0/qrreader.csproj.CoreCompileInputs.cache diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..ceb61ea --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,2459 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "AForge/2.2.5": { + "type": "package", + "compile": { + "lib/AForge.dll": {} + }, + "runtime": { + "lib/AForge.dll": {} + } + }, + "AForge.Imaging/2.2.5": { + "type": "package", + "dependencies": { + "AForge": "2.2.5", + "AForge.Math": "2.2.5" + }, + "compile": { + "lib/AForge.Imaging.dll": {} + }, + "runtime": { + "lib/AForge.Imaging.dll": {} + } + }, + "AForge.Math/2.2.5": { + "type": "package", + "dependencies": { + "AForge": "2.2.5" + }, + "compile": { + "lib/AForge.Math.dll": {} + }, + "runtime": { + "lib/AForge.Math.dll": {} + } + }, + "AForge.Video/2.2.5": { + "type": "package", + "dependencies": { + "AForge": "2.2.5" + }, + "compile": { + "lib/AForge.Video.dll": {} + }, + "runtime": { + "lib/AForge.Video.dll": {} + } + }, + "AForge.Video.DirectShow/2.2.5": { + "type": "package", + "dependencies": { + "AForge.Video": "2.2.5" + }, + "compile": { + "lib/AForge.Video.DirectShow.dll": {} + }, + "runtime": { + "lib/AForge.Video.DirectShow.dll": {} + } + }, + "Emgu.CV/4.6.0.5131": { + "type": "package", + "dependencies": { + "System.Drawing.Primitives": "4.3.0", + "System.Runtime": "4.3.1", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Emgu.CV.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Emgu.CV.dll": { + "related": ".xml" + } + } + }, + "Emgu.CV.Bitmap/4.6.0.5131": { + "type": "package", + "dependencies": { + "Emgu.CV": "4.6.0.5131", + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Emgu.CV.Bitmap.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Emgu.CV.Bitmap.dll": { + "related": ".xml" + } + } + }, + "Emgu.CV.runtime.windows/4.6.0.5131": { + "type": "package", + "dependencies": { + "Emgu.CV": "4.6.0.5131", + "Emgu.runtime.windows.msvc.rt.arm64": "19.33.31630", + "Emgu.runtime.windows.msvc.rt.x64": "19.33.31630", + "Emgu.runtime.windows.msvc.rt.x86": "19.33.31630" + }, + "runtimeTargets": { + "runtimes/win-arm64/native/cvextern.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/cvextern.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/opencv_videoio_ffmpeg460_64.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/cvextern.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/opencv_videoio_ffmpeg460.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Emgu.runtime.windows.msvc.rt.arm64/19.33.31630": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/concrt140.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/msvcp140.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/msvcp140_1.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/msvcp140_2.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/msvcp140_atomic_wait.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/msvcp140_codecvt_ids.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/vcruntime140.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/vcruntime140_1.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "Emgu.runtime.windows.msvc.rt.x64/19.33.31630": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/concrt140.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/msvcp140.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/msvcp140_1.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/msvcp140_2.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/msvcp140_atomic_wait.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/msvcp140_codecvt_ids.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/vcruntime140.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/vcruntime140_1.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "Emgu.runtime.windows.msvc.rt.x86/19.33.31630": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/concrt140.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/msvcp140.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/msvcp140_1.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/msvcp140_2.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/msvcp140_atomic_wait.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/msvcp140_codecvt_ids.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/vcruntime140.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "FlashCap/1.4.0": { + "type": "package", + "dependencies": { + "FlashCap.Core": "1.4.0" + }, + "compile": { + "lib/net7.0/FlashCap.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/FlashCap.dll": { + "related": ".xml" + } + } + }, + "FlashCap.Core/1.4.0": { + "type": "package", + "compile": { + "lib/net7.0/FlashCap.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/FlashCap.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.3": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "SixLabors.ImageSharp/2.1.3": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "5.0.0" + }, + "compile": { + "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": { + "related": ".xml" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Drawing.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Drawing.Primitives.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Reactive/5.0.0": { + "type": "package", + "compile": { + "lib/net5.0/System.Reactive.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/System.Reactive.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net5.0/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "Microsoft.NETCore.Targets": "1.1.3" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "ZXing.Net/0.16.8": { + "type": "package", + "compile": { + "lib/net6.0/zxing.dll": { + "related": ".XML" + } + }, + "runtime": { + "lib/net6.0/zxing.dll": { + "related": ".XML" + } + } + }, + "ZXing.Net.Bindings.Windows.Compatibility/0.16.10": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0", + "ZXing.Net": "0.16.7" + }, + "compile": { + "lib/net6.0/ZXing.Windows.Compatibility.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/ZXing.Windows.Compatibility.dll": { + "related": ".pdb;.xml" + } + } + } + } + }, + "libraries": { + "AForge/2.2.5": { + "sha512": "clkumhM9DggqIzEXAHgVLeWO4arG5YfoPr7J4jfjJx35AoeEIJSSm49J25bwp/9mXQYLwi7y1Wunc8qgYJsGxg==", + "type": "package", + "path": "aforge/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "aforge.2.2.5.nupkg.sha512", + "aforge.nuspec", + "lib/AForge.dll", + "lib/AForge.xml" + ] + }, + "AForge.Imaging/2.2.5": { + "sha512": "n8l7Zdsm89EFW9Uz4uCO3D428Gu4Q56YxixSMJPruen1c30R8R9Mm8AreTdoOi2XjN5id04JwFFlXYTk8pIIfw==", + "type": "package", + "path": "aforge.imaging/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "aforge.imaging.2.2.5.nupkg.sha512", + "aforge.imaging.nuspec", + "lib/AForge.Imaging.dll", + "lib/AForge.Imaging.xml" + ] + }, + "AForge.Math/2.2.5": { + "sha512": "pmT1WobVv13vMxwXhCu8sRunxjiUHyURWS0+dsW/aBPi06xiyYIdCLHI6jph9Axb4QoLIlb85eBI6zd2EAbGIg==", + "type": "package", + "path": "aforge.math/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "aforge.math.2.2.5.nupkg.sha512", + "aforge.math.nuspec", + "lib/AForge.Math.dll", + "lib/AForge.Math.xml" + ] + }, + "AForge.Video/2.2.5": { + "sha512": "XqzcOXtBUagEPRqg/00oayxlCPmxP4284SdM62mVotsNoD03fs19BrzdMBfhUOOYPyd0B/IXH7tEWnSDmc2gxA==", + "type": "package", + "path": "aforge.video/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "aforge.video.2.2.5.nupkg.sha512", + "aforge.video.nuspec", + "lib/AForge.Video.dll", + "lib/AForge.Video.xml" + ] + }, + "AForge.Video.DirectShow/2.2.5": { + "sha512": "pEch6felU/RGAbl0A7yjaQjsGxwiRFU9R+qBqR92wQo++XhzPLeQaZHnAPIBYaG7MfoqtjgCDkK4z3Tra4VQ3w==", + "type": "package", + "path": "aforge.video.directshow/2.2.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "aforge.video.directshow.2.2.5.nupkg.sha512", + "aforge.video.directshow.nuspec", + "lib/AForge.Video.DirectShow.dll", + "lib/AForge.Video.DirectShow.xml" + ] + }, + "Emgu.CV/4.6.0.5131": { + "sha512": "pRtYFTe+IZBoxm79cfkAS2QHnmLiz6upyKJNUnxUyVrOlw+QoLL7lx1siXCruvOVU5wkxCqOCBYDHnDNBSURsQ==", + "type": "package", + "path": "emgu.cv/4.6.0.5131", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "docs/README.md", + "emgu.cv.4.6.0.5131.nupkg.sha512", + "emgu.cv.nuspec", + "icon.png", + "lib/net6.0-ios11.0/Emgu.CV.dll", + "lib/net6.0-ios11.0/Emgu.CV.xml", + "lib/net6.0-maccatalyst13.2/Emgu.CV.dll", + "lib/net6.0-maccatalyst13.2/Emgu.CV.xml", + "lib/netstandard2.0/Emgu.CV.dll", + "lib/netstandard2.0/Emgu.CV.xml", + "lib/xamarinios10/Emgu.CV.dll", + "lib/xamarinios10/Emgu.CV.xml" + ] + }, + "Emgu.CV.Bitmap/4.6.0.5131": { + "sha512": "T+Gm73BlAd+88BpMf8qpWtG5oX/a8/J3GIsYYKJsrcYtj6IWC15vBu8BXeasseZpdDNFfSmOrKJVWDEG1G9ICQ==", + "type": "package", + "path": "emgu.cv.bitmap/4.6.0.5131", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "docs/README.md", + "emgu.cv.bitmap.4.6.0.5131.nupkg.sha512", + "emgu.cv.bitmap.nuspec", + "lib/netstandard2.0/Emgu.CV.Bitmap.dll", + "lib/netstandard2.0/Emgu.CV.Bitmap.xml", + "nuget_icon.png" + ] + }, + "Emgu.CV.runtime.windows/4.6.0.5131": { + "sha512": "YAybhlr28ETP2Uv7j1Wg4cxF5CJfgbOT3FQ9602ZY0kZgJKV3qDaUn6ZdUMalO5HocU9czCxHEwHhQH+645XZQ==", + "type": "package", + "path": "emgu.cv.runtime.windows/4.6.0.5131", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "docs/README.md", + "docs/build_info_arm64.inc", + "docs/build_info_x64.inc", + "docs/build_info_x86.inc", + "emgu.cv.runtime.windows.4.6.0.5131.nupkg.sha512", + "emgu.cv.runtime.windows.nuspec", + "icon.png", + "runtimes/win-arm64/native/cvextern.dll", + "runtimes/win-x64/native/cvextern.dll", + "runtimes/win-x64/native/opencv_videoio_ffmpeg460_64.dll", + "runtimes/win-x86/native/cvextern.dll", + "runtimes/win-x86/native/opencv_videoio_ffmpeg460.dll" + ] + }, + "Emgu.runtime.windows.msvc.rt.arm64/19.33.31630": { + "sha512": "Pbu8A7ghkM9HeKSS012SYvrejpj3Hpo5JKF3NaQ+0klv3cu47gbt2W+RaEhcXZZWelPmvgweXBjSVTef0HfTrw==", + "type": "package", + "path": "emgu.runtime.windows.msvc.rt.arm64/19.33.31630", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "emgu.runtime.windows.msvc.rt.arm64.19.33.31630.nupkg.sha512", + "emgu.runtime.windows.msvc.rt.arm64.nuspec", + "icon.png", + "runtimes/win-arm64/native/concrt140.dll", + "runtimes/win-arm64/native/msvcp140.dll", + "runtimes/win-arm64/native/msvcp140_1.dll", + "runtimes/win-arm64/native/msvcp140_2.dll", + "runtimes/win-arm64/native/msvcp140_atomic_wait.dll", + "runtimes/win-arm64/native/msvcp140_codecvt_ids.dll", + "runtimes/win-arm64/native/vcruntime140.dll", + "runtimes/win-arm64/native/vcruntime140_1.dll" + ] + }, + "Emgu.runtime.windows.msvc.rt.x64/19.33.31630": { + "sha512": "sBIDz7mLJgYKgmut7WNwuCG5/+VTwsf+Oubd430QfdF4bgJPJoUCQ7P9OKvTvqQo1t95DpgdyjxNloDVCGUIFQ==", + "type": "package", + "path": "emgu.runtime.windows.msvc.rt.x64/19.33.31630", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "emgu.runtime.windows.msvc.rt.x64.19.33.31630.nupkg.sha512", + "emgu.runtime.windows.msvc.rt.x64.nuspec", + "icon.png", + "runtimes/win-x64/native/concrt140.dll", + "runtimes/win-x64/native/msvcp140.dll", + "runtimes/win-x64/native/msvcp140_1.dll", + "runtimes/win-x64/native/msvcp140_2.dll", + "runtimes/win-x64/native/msvcp140_atomic_wait.dll", + "runtimes/win-x64/native/msvcp140_codecvt_ids.dll", + "runtimes/win-x64/native/vcruntime140.dll", + "runtimes/win-x64/native/vcruntime140_1.dll" + ] + }, + "Emgu.runtime.windows.msvc.rt.x86/19.33.31630": { + "sha512": "Jwqm4yrJRDWs4rUmcpwUVvDuISRgp6WJvCX/n1rTy52GjnWKvzTYOPvhKiAH2alB/bBGbNhyP5UvmhUeN3dOXw==", + "type": "package", + "path": "emgu.runtime.windows.msvc.rt.x86/19.33.31630", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "emgu.runtime.windows.msvc.rt.x86.19.33.31630.nupkg.sha512", + "emgu.runtime.windows.msvc.rt.x86.nuspec", + "icon.png", + "runtimes/win-x86/native/concrt140.dll", + "runtimes/win-x86/native/msvcp140.dll", + "runtimes/win-x86/native/msvcp140_1.dll", + "runtimes/win-x86/native/msvcp140_2.dll", + "runtimes/win-x86/native/msvcp140_atomic_wait.dll", + "runtimes/win-x86/native/msvcp140_codecvt_ids.dll", + "runtimes/win-x86/native/vcruntime140.dll" + ] + }, + "FlashCap/1.4.0": { + "sha512": "ixxoab11r00EMfGjeC/KCGfr8H38Q2FC4LTuR+IZPNTuuMDdkKxUcd0hd3i7UI82xqwNiTbsb0c4c4v0bSce3Q==", + "type": "package", + "path": "flashcap/1.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "FlashCap.100.png", + "flashcap.1.4.0.nupkg.sha512", + "flashcap.nuspec", + "lib/net35/FlashCap.dll", + "lib/net35/FlashCap.xml", + "lib/net40/FlashCap.dll", + "lib/net40/FlashCap.xml", + "lib/net45/FlashCap.dll", + "lib/net45/FlashCap.xml", + "lib/net461/FlashCap.dll", + "lib/net461/FlashCap.xml", + "lib/net48/FlashCap.dll", + "lib/net48/FlashCap.xml", + "lib/net5.0/FlashCap.dll", + "lib/net5.0/FlashCap.xml", + "lib/net6.0/FlashCap.dll", + "lib/net6.0/FlashCap.xml", + "lib/net7.0/FlashCap.dll", + "lib/net7.0/FlashCap.xml", + "lib/netcoreapp2.0/FlashCap.dll", + "lib/netcoreapp2.0/FlashCap.xml", + "lib/netcoreapp2.1/FlashCap.dll", + "lib/netcoreapp2.1/FlashCap.xml", + "lib/netcoreapp2.2/FlashCap.dll", + "lib/netcoreapp2.2/FlashCap.xml", + "lib/netcoreapp3.0/FlashCap.dll", + "lib/netcoreapp3.0/FlashCap.xml", + "lib/netcoreapp3.1/FlashCap.dll", + "lib/netcoreapp3.1/FlashCap.xml", + "lib/netstandard1.3/FlashCap.dll", + "lib/netstandard1.3/FlashCap.xml", + "lib/netstandard2.0/FlashCap.dll", + "lib/netstandard2.0/FlashCap.xml", + "lib/netstandard2.1/FlashCap.dll", + "lib/netstandard2.1/FlashCap.xml" + ] + }, + "FlashCap.Core/1.4.0": { + "sha512": "smsAvwFIYUo7zUwfFUHLtjy1RmFUIZgjpUs5ANnH1WQ2BtXfmWl8QexsE1aK5okQHhyF7JhJuW3CBatXixT02w==", + "type": "package", + "path": "flashcap.core/1.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "FlashCap.100.png", + "flashcap.core.1.4.0.nupkg.sha512", + "flashcap.core.nuspec", + "lib/net35/FlashCap.Core.dll", + "lib/net35/FlashCap.Core.xml", + "lib/net40/FlashCap.Core.dll", + "lib/net40/FlashCap.Core.xml", + "lib/net45/FlashCap.Core.dll", + "lib/net45/FlashCap.Core.xml", + "lib/net461/FlashCap.Core.dll", + "lib/net461/FlashCap.Core.xml", + "lib/net48/FlashCap.Core.dll", + "lib/net48/FlashCap.Core.xml", + "lib/net5.0/FlashCap.Core.dll", + "lib/net5.0/FlashCap.Core.xml", + "lib/net6.0/FlashCap.Core.dll", + "lib/net6.0/FlashCap.Core.xml", + "lib/net7.0/FlashCap.Core.dll", + "lib/net7.0/FlashCap.Core.xml", + "lib/netcoreapp2.0/FlashCap.Core.dll", + "lib/netcoreapp2.0/FlashCap.Core.xml", + "lib/netcoreapp2.1/FlashCap.Core.dll", + "lib/netcoreapp2.1/FlashCap.Core.xml", + "lib/netcoreapp2.2/FlashCap.Core.dll", + "lib/netcoreapp2.2/FlashCap.Core.xml", + "lib/netcoreapp3.0/FlashCap.Core.dll", + "lib/netcoreapp3.0/FlashCap.Core.xml", + "lib/netcoreapp3.1/FlashCap.Core.dll", + "lib/netcoreapp3.1/FlashCap.Core.xml", + "lib/netstandard1.3/FlashCap.Core.dll", + "lib/netstandard1.3/FlashCap.Core.xml", + "lib/netstandard2.0/FlashCap.Core.dll", + "lib/netstandard2.0/FlashCap.Core.xml", + "lib/netstandard2.1/FlashCap.Core.dll", + "lib/netstandard2.1/FlashCap.Core.xml" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.3": { + "sha512": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.3.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "SixLabors.ImageSharp/2.1.3": { + "sha512": "8yonNRWX3vUE9k29ta0Hbfa0AEc0hbDjSH/nZ3vOTJEXmY6hLnGsjDKoz96Z+AgOsrdkAu6PdL/Ebaf70aitzw==", + "type": "package", + "path": "sixlabors.imagesharp/2.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net472/SixLabors.ImageSharp.dll", + "lib/net472/SixLabors.ImageSharp.xml", + "lib/netcoreapp2.1/SixLabors.ImageSharp.dll", + "lib/netcoreapp2.1/SixLabors.ImageSharp.xml", + "lib/netcoreapp3.1/SixLabors.ImageSharp.dll", + "lib/netcoreapp3.1/SixLabors.ImageSharp.xml", + "lib/netstandard2.0/SixLabors.ImageSharp.dll", + "lib/netstandard2.0/SixLabors.ImageSharp.xml", + "lib/netstandard2.1/SixLabors.ImageSharp.dll", + "lib/netstandard2.1/SixLabors.ImageSharp.xml", + "sixlabors.imagesharp.128.png", + "sixlabors.imagesharp.2.1.3.nupkg.sha512", + "sixlabors.imagesharp.nuspec" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Primitives/4.3.0": { + "sha512": "1QU/c35gwdhvj77fkScXQQbjiVAqIL3fEYn/19NE0CV/ic5TN5PyWAft8HsrbRd4SBLEoErNCkWSzMDc0MmbRw==", + "type": "package", + "path": "system.drawing.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Drawing.Primitives.dll", + "lib/netstandard1.1/System.Drawing.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Drawing.Primitives.dll", + "ref/netstandard1.1/System.Drawing.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.drawing.primitives.4.3.0.nupkg.sha512", + "system.drawing.primitives.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.Reactive/5.0.0": { + "sha512": "erBZjkQHWL9jpasCE/0qKAryzVBJFxGHVBAvgRN1bzM0q2s1S4oYREEEL0Vb+1kA/6BKb5FjUZMp5VXmy+gzkQ==", + "type": "package", + "path": "system.reactive/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net5.0/_._", + "build/netcoreapp3.1/System.Reactive.dll", + "build/netcoreapp3.1/System.Reactive.targets", + "build/netcoreapp3.1/System.Reactive.xml", + "buildTransitive/net5.0/_._", + "buildTransitive/netcoreapp3.1/System.Reactive.targets", + "lib/net472/System.Reactive.dll", + "lib/net472/System.Reactive.xml", + "lib/net5.0-windows10.0.19041/System.Reactive.dll", + "lib/net5.0-windows10.0.19041/System.Reactive.xml", + "lib/net5.0/System.Reactive.dll", + "lib/net5.0/System.Reactive.xml", + "lib/netcoreapp3.1/_._", + "lib/netstandard2.0/System.Reactive.dll", + "lib/netstandard2.0/System.Reactive.xml", + "lib/uap10.0.16299/System.Reactive.dll", + "lib/uap10.0.16299/System.Reactive.pri", + "lib/uap10.0.16299/System.Reactive.xml", + "system.reactive.5.0.0.nupkg.sha512", + "system.reactive.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.1": { + "sha512": "abhfv1dTK6NXOmu4bgHIONxHyEqFjW8HwXPmpY9gmll+ix9UNo4XDcmzJn6oLooftxNssVHdJC1pGT9jkSynQg==", + "type": "package", + "path": "system.runtime/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.1.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", + "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/5.0.0": { + "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", + "type": "package", + "path": "system.text.encoding.codepages/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.5.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "ZXing.Net/0.16.8": { + "sha512": "Cbbe+x7I7E+VJ0VxU1fPc7AktIw/9xea/ZY/fh38sXqTQ75LJp9ooGUjpzFqfpPfIKozAoXgJ4yvY4GzKpPBzQ==", + "type": "package", + "path": "zxing.net/0.16.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/native/zxing.XML", + "lib/native/zxing.pri", + "lib/native/zxing.winmd", + "lib/net20-cf/zxing.ce2.0.dll", + "lib/net20-cf/zxing.ce2.0.xml", + "lib/net20/zxing.XML", + "lib/net20/zxing.dll", + "lib/net35-cf/zxing.ce3.5.dll", + "lib/net35-cf/zxing.ce3.5.xml", + "lib/net35/zxing.XML", + "lib/net35/zxing.dll", + "lib/net40/zxing.XML", + "lib/net40/zxing.dll", + "lib/net40/zxing.presentation.XML", + "lib/net40/zxing.presentation.dll", + "lib/net45/zxing.XML", + "lib/net45/zxing.dll", + "lib/net45/zxing.presentation.XML", + "lib/net45/zxing.presentation.dll", + "lib/net461/zxing.XML", + "lib/net461/zxing.dll", + "lib/net461/zxing.presentation.XML", + "lib/net461/zxing.presentation.dll", + "lib/net47/zxing.XML", + "lib/net47/zxing.dll", + "lib/net47/zxing.presentation.XML", + "lib/net47/zxing.presentation.dll", + "lib/net48/zxing.XML", + "lib/net48/zxing.dll", + "lib/net48/zxing.presentation.XML", + "lib/net48/zxing.presentation.dll", + "lib/net5.0/zxing.XML", + "lib/net5.0/zxing.dll", + "lib/net6.0/zxing.XML", + "lib/net6.0/zxing.dll", + "lib/netcoreapp3.0/zxing.dll", + "lib/netcoreapp3.0/zxing.xml", + "lib/netcoreapp3.1/zxing.dll", + "lib/netcoreapp3.1/zxing.xml", + "lib/netstandard1.0/zxing.dll", + "lib/netstandard1.0/zxing.xml", + "lib/netstandard1.1/zxing.dll", + "lib/netstandard1.1/zxing.xml", + "lib/netstandard1.3/zxing.dll", + "lib/netstandard1.3/zxing.xml", + "lib/netstandard2.0/zxing.dll", + "lib/netstandard2.0/zxing.xml", + "lib/netstandard2.1/zxing.dll", + "lib/netstandard2.1/zxing.xml", + "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML", + "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll", + "lib/sl3-wp/zxing.wp7.0.XML", + "lib/sl3-wp/zxing.wp7.0.dll", + "lib/sl4-wp71/zxing.wp7.1.XML", + "lib/sl4-wp71/zxing.wp7.1.dll", + "lib/sl4/zxing.sl4.XML", + "lib/sl4/zxing.sl4.dll", + "lib/sl5/zxing.sl5.XML", + "lib/sl5/zxing.sl5.dll", + "lib/uap10/zxing.dll", + "lib/uap10/zxing.pri", + "lib/uap10/zxing.xml", + "lib/windows8-managed/zxing.winrt.XML", + "lib/windows8-managed/zxing.winrt.dll", + "lib/windows8/zxing.XML", + "lib/windows8/zxing.pri", + "lib/windows8/zxing.winmd", + "lib/wp8/zxing.wp8.0.XML", + "lib/wp8/zxing.wp8.0.dll", + "logo.jpg", + "zxing.net.0.16.8.nupkg.sha512", + "zxing.net.nuspec" + ] + }, + "ZXing.Net.Bindings.Windows.Compatibility/0.16.10": { + "sha512": "euWnxHf1jJ+jYyOjX/TAv9uVx4LKJPaUbuUG3O1F3Vkyp0LaXmutgKaJqHITvomyFp+cGt4N3CdC1Ftd5fQkmw==", + "type": "package", + "path": "zxing.net.bindings.windows.compatibility/0.16.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/ZXing.Windows.Compatibility.dll", + "lib/net5.0/ZXing.Windows.Compatibility.pdb", + "lib/net5.0/ZXing.Windows.Compatibility.xml", + "lib/net6.0/ZXing.Windows.Compatibility.dll", + "lib/net6.0/ZXing.Windows.Compatibility.pdb", + "lib/net6.0/ZXing.Windows.Compatibility.xml", + "lib/netcoreapp3.0/ZXing.Windows.Compatibility.dll", + "lib/netcoreapp3.0/ZXing.Windows.Compatibility.pdb", + "lib/netcoreapp3.0/ZXing.Windows.Compatibility.xml", + "lib/netcoreapp3.1/ZXing.Windows.Compatibility.dll", + "lib/netcoreapp3.1/ZXing.Windows.Compatibility.pdb", + "lib/netcoreapp3.1/ZXing.Windows.Compatibility.xml", + "lib/netstandard2.0/ZXing.Windows.Compatibility.dll", + "lib/netstandard2.0/ZXing.Windows.Compatibility.pdb", + "lib/netstandard2.0/ZXing.Windows.Compatibility.xml", + "lib/netstandard2.1/ZXing.Windows.Compatibility.dll", + "lib/netstandard2.1/ZXing.Windows.Compatibility.pdb", + "lib/netstandard2.1/ZXing.Windows.Compatibility.xml", + "logo.jpg", + "zxing.net.bindings.windows.compatibility.0.16.10.nupkg.sha512", + "zxing.net.bindings.windows.compatibility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "AForge >= 2.2.5", + "AForge.Imaging >= 2.2.5", + "AForge.Math >= 2.2.5", + "AForge.Video >= 2.2.5", + "AForge.Video.DirectShow >= 2.2.5", + "Emgu.CV >= 4.6.0.5131", + "Emgu.CV.Bitmap >= 4.6.0.5131", + "Emgu.CV.runtime.windows >= 4.6.0.5131", + "FlashCap >= 1.4.0", + "SixLabors.ImageSharp >= 2.1.3", + "System.Reactive >= 5.0.0", + "ZXing.Net >= 0.16.8", + "ZXing.Net.Bindings.Windows.Compatibility >= 0.16.10" + ] + }, + "packageFolders": { + "/home/david/.nuget/packages/": {}, + "/home/david/.local/share/godot/mono/GodotNuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/david/Projects/qrreader/qrreader.csproj", + "projectName": "qrreader", + "projectPath": "/home/david/Projects/qrreader/qrreader.csproj", + "packagesPath": "/home/david/.nuget/packages/", + "outputPath": "/home/david/Projects/qrreader/obj/", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "/home/david/.local/share/godot/mono/GodotNuGetFallbackFolder" + ], + "configFilePaths": [ + "/home/david/.nuget/NuGet/NuGet.Config", + "/home/david/.nuget/NuGet/config/Godot.Offline.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "AForge": { + "target": "Package", + "version": "[2.2.5, )" + }, + "AForge.Imaging": { + "target": "Package", + "version": "[2.2.5, )" + }, + "AForge.Math": { + "target": "Package", + "version": "[2.2.5, )" + }, + "AForge.Video": { + "target": "Package", + "version": "[2.2.5, )" + }, + "AForge.Video.DirectShow": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Emgu.CV": { + "target": "Package", + "version": "[4.6.0.5131, )" + }, + "Emgu.CV.Bitmap": { + "target": "Package", + "version": "[4.6.0.5131, )" + }, + "Emgu.CV.runtime.windows": { + "target": "Package", + "version": "[4.6.0.5131, )" + }, + "FlashCap": { + "target": "Package", + "version": "[1.4.0, )" + }, + "SixLabors.ImageSharp": { + "target": "Package", + "version": "[2.1.3, )" + }, + "System.Reactive": { + "target": "Package", + "version": "[5.0.0, )" + }, + "ZXing.Net": { + "target": "Package", + "version": "[0.16.8, )" + }, + "ZXing.Net.Bindings.Windows.Compatibility": { + "target": "Package", + "version": "[0.16.10, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[7.0.0, 7.0.0]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.100/RuntimeIdentifierGraph.json" + } + } + }, + "logs": [ + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'AForge 2.2.5' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0'. This package may not be fully compatible with your project.", + "libraryId": "AForge", + "targetGraphs": [ + "net7.0" + ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'AForge.Imaging 2.2.5' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0'. This package may not be fully compatible with your project.", + "libraryId": "AForge.Imaging", + "targetGraphs": [ + "net7.0" + ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'AForge.Math 2.2.5' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0'. This package may not be fully compatible with your project.", + "libraryId": "AForge.Math", + "targetGraphs": [ + "net7.0" + ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'AForge.Video 2.2.5' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0'. This package may not be fully compatible with your project.", + "libraryId": "AForge.Video", + "targetGraphs": [ + "net7.0" + ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'AForge.Video.DirectShow 2.2.5' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0'. This package may not be fully compatible with your project.", + "libraryId": "AForge.Video.DirectShow", + "targetGraphs": [ + "net7.0" + ] + } + ] +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..f860241 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,100 @@ +{ + "version": 2, + "dgSpecHash": "nFSLV0NHH8CPR1cNOhQWG75UORYL/Pn1kzUBNPsUYxhqaUrMbmXlwfDHoOysrTE8Hs/HxJpfw/q0iwNWv92O/A==", + "success": true, + "projectFilePath": "/home/david/Projects/qrreader/qrreader.csproj", + "expectedPackageFiles": [ + "/home/david/.nuget/packages/aforge/2.2.5/aforge.2.2.5.nupkg.sha512", + "/home/david/.nuget/packages/aforge.imaging/2.2.5/aforge.imaging.2.2.5.nupkg.sha512", + "/home/david/.nuget/packages/aforge.math/2.2.5/aforge.math.2.2.5.nupkg.sha512", + "/home/david/.nuget/packages/aforge.video/2.2.5/aforge.video.2.2.5.nupkg.sha512", + "/home/david/.nuget/packages/aforge.video.directshow/2.2.5/aforge.video.directshow.2.2.5.nupkg.sha512", + "/home/david/.nuget/packages/emgu.cv/4.6.0.5131/emgu.cv.4.6.0.5131.nupkg.sha512", + "/home/david/.nuget/packages/emgu.cv.bitmap/4.6.0.5131/emgu.cv.bitmap.4.6.0.5131.nupkg.sha512", + "/home/david/.nuget/packages/emgu.cv.runtime.windows/4.6.0.5131/emgu.cv.runtime.windows.4.6.0.5131.nupkg.sha512", + "/home/david/.nuget/packages/emgu.runtime.windows.msvc.rt.arm64/19.33.31630/emgu.runtime.windows.msvc.rt.arm64.19.33.31630.nupkg.sha512", + "/home/david/.nuget/packages/emgu.runtime.windows.msvc.rt.x64/19.33.31630/emgu.runtime.windows.msvc.rt.x64.19.33.31630.nupkg.sha512", + "/home/david/.nuget/packages/emgu.runtime.windows.msvc.rt.x86/19.33.31630/emgu.runtime.windows.msvc.rt.x86.19.33.31630.nupkg.sha512", + "/home/david/.nuget/packages/flashcap/1.4.0/flashcap.1.4.0.nupkg.sha512", + "/home/david/.nuget/packages/flashcap.core/1.4.0/flashcap.core.1.4.0.nupkg.sha512", + "/home/david/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "/home/david/.nuget/packages/microsoft.netcore.targets/1.1.3/microsoft.netcore.targets.1.1.3.nupkg.sha512", + "/home/david/.nuget/packages/microsoft.win32.systemevents/6.0.0/microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "/home/david/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/sixlabors.imagesharp/2.1.3/sixlabors.imagesharp.2.1.3.nupkg.sha512", + "/home/david/.nuget/packages/system.drawing.common/6.0.0/system.drawing.common.6.0.0.nupkg.sha512", + "/home/david/.nuget/packages/system.drawing.primitives/4.3.0/system.drawing.primitives.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.reactive/5.0.0/system.reactive.5.0.0.nupkg.sha512", + "/home/david/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.runtime/4.3.1/system.runtime.4.3.1.nupkg.sha512", + "/home/david/.nuget/packages/system.runtime.compilerservices.unsafe/5.0.0/system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "/home/david/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.text.encoding.codepages/5.0.0/system.text.encoding.codepages.5.0.0.nupkg.sha512", + "/home/david/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", + "/home/david/.nuget/packages/zxing.net/0.16.8/zxing.net.0.16.8.nupkg.sha512", + "/home/david/.nuget/packages/zxing.net.bindings.windows.compatibility/0.16.10/zxing.net.bindings.windows.compatibility.0.16.10.nupkg.sha512", + "/home/david/.nuget/packages/microsoft.aspnetcore.app.ref/7.0.0/microsoft.aspnetcore.app.ref.7.0.0.nupkg.sha512" + ], + "logs": [ + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'AForge 2.2.5' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0'. This package may not be fully compatible with your project.", + "libraryId": "AForge", + "targetGraphs": [ + "net7.0" + ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'AForge.Imaging 2.2.5' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0'. This package may not be fully compatible with your project.", + "libraryId": "AForge.Imaging", + "targetGraphs": [ + "net7.0" + ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'AForge.Math 2.2.5' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0'. This package may not be fully compatible with your project.", + "libraryId": "AForge.Math", + "targetGraphs": [ + "net7.0" + ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'AForge.Video 2.2.5' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0'. This package may not be fully compatible with your project.", + "libraryId": "AForge.Video", + "targetGraphs": [ + "net7.0" + ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'AForge.Video.DirectShow 2.2.5' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0'. This package may not be fully compatible with your project.", + "libraryId": "AForge.Video.DirectShow", + "targetGraphs": [ + "net7.0" + ] + } + ] +} \ No newline at end of file diff --git a/obj/qrreader.csproj.nuget.dgspec.json b/obj/qrreader.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f5d94be --- /dev/null +++ b/obj/qrreader.csproj.nuget.dgspec.json @@ -0,0 +1,125 @@ +{ + "format": 1, + "restore": { + "/home/david/Projects/qrreader/qrreader.csproj": {} + }, + "projects": { + "/home/david/Projects/qrreader/qrreader.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/david/Projects/qrreader/qrreader.csproj", + "projectName": "qrreader", + "projectPath": "/home/david/Projects/qrreader/qrreader.csproj", + "packagesPath": "/home/david/.nuget/packages/", + "outputPath": "/home/david/Projects/qrreader/obj/", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "/home/david/.local/share/godot/mono/GodotNuGetFallbackFolder" + ], + "configFilePaths": [ + "/home/david/.nuget/NuGet/NuGet.Config", + "/home/david/.nuget/NuGet/config/Godot.Offline.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "AForge": { + "target": "Package", + "version": "[2.2.5, )" + }, + "AForge.Imaging": { + "target": "Package", + "version": "[2.2.5, )" + }, + "AForge.Math": { + "target": "Package", + "version": "[2.2.5, )" + }, + "AForge.Video": { + "target": "Package", + "version": "[2.2.5, )" + }, + "AForge.Video.DirectShow": { + "target": "Package", + "version": "[2.2.5, )" + }, + "Emgu.CV": { + "target": "Package", + "version": "[4.6.0.5131, )" + }, + "Emgu.CV.Bitmap": { + "target": "Package", + "version": "[4.6.0.5131, )" + }, + "Emgu.CV.runtime.windows": { + "target": "Package", + "version": "[4.6.0.5131, )" + }, + "FlashCap": { + "target": "Package", + "version": "[1.4.0, )" + }, + "SixLabors.ImageSharp": { + "target": "Package", + "version": "[2.1.3, )" + }, + "System.Reactive": { + "target": "Package", + "version": "[5.0.0, )" + }, + "ZXing.Net": { + "target": "Package", + "version": "[0.16.8, )" + }, + "ZXing.Net.Bindings.Windows.Compatibility": { + "target": "Package", + "version": "[0.16.10, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[7.0.0, 7.0.0]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.100/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/qrreader.csproj.nuget.g.props b/obj/qrreader.csproj.nuget.g.props new file mode 100644 index 0000000..b47b4d7 --- /dev/null +++ b/obj/qrreader.csproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/david/.nuget/packages/ + /home/david/.nuget/packages/;/home/david/.local/share/godot/mono/GodotNuGetFallbackFolder + PackageReference + 6.4.0 + + + + + + \ No newline at end of file diff --git a/obj/qrreader.csproj.nuget.g.targets b/obj/qrreader.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/qrreader.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..a4d24f5 --- /dev/null +++ b/project.godot @@ -0,0 +1,24 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=5 + +[application] + +config/name="Qrreader" +run/main_scene="res://ui/main.tscn" +config/features=PackedStringArray("4.0", "Mobile") +config/icon="res://icon.svg" + +[dotnet] + +project/assembly_name="Qrreader" + +[rendering] + +renderer/rendering_method="mobile" diff --git a/qrreader.csproj b/qrreader.csproj new file mode 100644 index 0000000..92321cd --- /dev/null +++ b/qrreader.csproj @@ -0,0 +1,26 @@ + + + + Exe + net7.0 + enable + enable + + + + + + + + + + + + + + + + + + + diff --git a/server/Program.cs b/server/Program.cs new file mode 100644 index 0000000..48863a6 --- /dev/null +++ b/server/Program.cs @@ -0,0 +1,25 @@ +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. + +builder.Services.AddControllers(); +// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle +builder.Services.AddEndpointsApiExplorer(); +builder.Services.AddSwaggerGen(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.UseSwagger(); + app.UseSwaggerUI(); +} + +app.UseHttpsRedirection(); + +app.UseAuthorization(); + +app.MapControllers(); + +app.Run(); diff --git a/server/Properties/launchSettings.json b/server/Properties/launchSettings.json new file mode 100644 index 0000000..887a286 --- /dev/null +++ b/server/Properties/launchSettings.json @@ -0,0 +1,41 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:62150", + "sslPort": 44340 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "https://localhost:7001;http://localhost:5257", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "https://localhost:7118;http://localhost:5257", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/server/QrScannerController.cs b/server/QrScannerController.cs new file mode 100644 index 0000000..b2c3465 --- /dev/null +++ b/server/QrScannerController.cs @@ -0,0 +1,66 @@ +using Microsoft.AspNetCore.Mvc; +using QrScanner.Models; + +namespace server.Controllers; + +[ApiController] +[Route("")] +public class QrScannerController : ControllerBase +{ + const string db_connection_url = @"mongodb://localhost:27017"; + const string db_name = @"qr_scanner"; + const string col_codes = @"codes"; + const string col_info = @"info"; + + public QrScannerController(){ + client = new MongoClient(db_connection_url); + db = client.GetDatabase(db_name); + } + + + [HttpGet("ping")] + public ActionResult ping(){ + string message = "Ping received from server."; + Console.WriteLine($"Sent message: {message}"); + return Ok(message); + } + + + [HttpGet("info")] + public IActionResult info(){ + + return Ok(); + } + + [HttpGet("scan")] + public async Task scan(string code){ + Console.WriteLine(code); + return Ok(); + } + + + public async Task _store_cost(string code){ + + } + + + public async Task _fetch_one(string collection){ + Console.WriteLine($"_fetch_one(): Fetching first found data from '{db_name}.{col_codes}'"); + var col = db.GetCollection(collection); + return await col.Find(new BsonDocument{}).FirstOrDefaultAsync(); + } + + + public async Task> _fetch_code(string field, T value){ + Console.WriteLine($"_fetch_code(): Fetching QR code from '{db_name}.{col_codes}'"); + var col = db.GetCollection(col_codes); + var filter = Builders.Filter.Eq(field, value); + return await Ok(col.Find(filter).FirstOrDefaultAsync()); + } + + + public async Task>> _fetch_all_codes(){ + var col = db.GetCollection(col_info); + return await col.Find(new BsonDocument{}).ToListAsync(); + } +} diff --git a/server/QrScannerModel.cs b/server/QrScannerModel.cs new file mode 100644 index 0000000..86b72af --- /dev/null +++ b/server/QrScannerModel.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNetCore.Identity; +using MongoDB.Bson; +using MongoDB.Bson.Serialization.Attributes; + +namespace QrScanner.Models; + +[BsonIgnoreExtraElements] +public class QrCode +{ + public ObjectId _id { get; set; } + public string data { get; set; } +} diff --git a/server/appsettings.Development.json b/server/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/server/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/server/appsettings.json b/server/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/server/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/server/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll b/server/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100755 index 0000000..1cccfde Binary files /dev/null and b/server/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/server/bin/Debug/net7.0/Microsoft.OpenApi.dll b/server/bin/Debug/net7.0/Microsoft.OpenApi.dll new file mode 100755 index 0000000..1e0998d Binary files /dev/null and b/server/bin/Debug/net7.0/Microsoft.OpenApi.dll differ diff --git a/server/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll b/server/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100755 index 0000000..e9b8cf7 Binary files /dev/null and b/server/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/server/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/server/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100755 index 0000000..68e38a2 Binary files /dev/null and b/server/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/server/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/server/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100755 index 0000000..9c52aed Binary files /dev/null and b/server/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/server/bin/Debug/net7.0/appsettings.Development.json b/server/bin/Debug/net7.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/server/bin/Debug/net7.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/server/bin/Debug/net7.0/appsettings.json b/server/bin/Debug/net7.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/server/bin/Debug/net7.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/server/bin/Debug/net7.0/server b/server/bin/Debug/net7.0/server new file mode 100755 index 0000000..72f2a53 Binary files /dev/null and b/server/bin/Debug/net7.0/server differ diff --git a/server/bin/Debug/net7.0/server.deps.json b/server/bin/Debug/net7.0/server.deps.json new file mode 100644 index 0000000..5f9b9ca --- /dev/null +++ b/server/bin/Debug/net7.0/server.deps.json @@ -0,0 +1,134 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "server/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.OpenApi": "7.0.0", + "Swashbuckle.AspNetCore": "6.4.0" + }, + "runtime": { + "server.dll": {} + } + }, + "Microsoft.AspNetCore.OpenApi/7.0.0": { + "dependencies": { + "Microsoft.OpenApi": "1.4.3" + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.OpenApi/1.4.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.4.3.0", + "fileVersion": "1.4.3.0" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.4.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + } + } + }, + "libraries": { + "server/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.OpenApi/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P1mkNhZ3IwU3phNLIUkgqVXb1exnooTalIYwpSON3oKKkcRtACDgS4WpO+xnwFw4KzV0bmgkUqB3acXxIefvvg==", + "path": "microsoft.aspnetcore.openapi/7.0.0", + "hashPath": "microsoft.aspnetcore.openapi.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.OpenApi/1.4.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", + "path": "microsoft.openapi/1.4.3", + "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/server/bin/Debug/net7.0/server.dll b/server/bin/Debug/net7.0/server.dll new file mode 100644 index 0000000..5a92fad Binary files /dev/null and b/server/bin/Debug/net7.0/server.dll differ diff --git a/server/bin/Debug/net7.0/server.pdb b/server/bin/Debug/net7.0/server.pdb new file mode 100644 index 0000000..3c65778 Binary files /dev/null and b/server/bin/Debug/net7.0/server.pdb differ diff --git a/server/bin/Debug/net7.0/server.runtimeconfig.json b/server/bin/Debug/net7.0/server.runtimeconfig.json new file mode 100644 index 0000000..f784548 --- /dev/null +++ b/server/bin/Debug/net7.0/server.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "7.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/server/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/server/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/server/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/server/obj/Debug/net7.0/apphost b/server/obj/Debug/net7.0/apphost new file mode 100755 index 0000000..72f2a53 Binary files /dev/null and b/server/obj/Debug/net7.0/apphost differ diff --git a/server/obj/Debug/net7.0/ref/server.dll b/server/obj/Debug/net7.0/ref/server.dll new file mode 100644 index 0000000..f85a917 Binary files /dev/null and b/server/obj/Debug/net7.0/ref/server.dll differ diff --git a/server/obj/Debug/net7.0/refint/server.dll b/server/obj/Debug/net7.0/refint/server.dll new file mode 100644 index 0000000..f85a917 Binary files /dev/null and b/server/obj/Debug/net7.0/refint/server.dll differ diff --git a/server/obj/Debug/net7.0/server.AssemblyInfo.cs b/server/obj/Debug/net7.0/server.AssemblyInfo.cs new file mode 100644 index 0000000..1571d82 --- /dev/null +++ b/server/obj/Debug/net7.0/server.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("server")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("server")] +[assembly: System.Reflection.AssemblyTitleAttribute("server")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/server/obj/Debug/net7.0/server.AssemblyInfoInputs.cache b/server/obj/Debug/net7.0/server.AssemblyInfoInputs.cache new file mode 100644 index 0000000..3eb5fab --- /dev/null +++ b/server/obj/Debug/net7.0/server.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7550e82ffe0e1175cb956ef1940dcdca83c9a728 diff --git a/server/obj/Debug/net7.0/server.GeneratedMSBuildEditorConfig.editorconfig b/server/obj/Debug/net7.0/server.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2237821 --- /dev/null +++ b/server/obj/Debug/net7.0/server.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = server +build_property.RootNamespace = server +build_property.ProjectDir = /home/david/Projects/qrreader/server/ +build_property.RazorLangVersion = 7.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /home/david/Projects/qrreader/server +build_property._RazorSourceGeneratorDebug = diff --git a/server/obj/Debug/net7.0/server.GlobalUsings.g.cs b/server/obj/Debug/net7.0/server.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/server/obj/Debug/net7.0/server.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/server/obj/Debug/net7.0/server.MvcApplicationPartsAssemblyInfo.cache b/server/obj/Debug/net7.0/server.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/server/obj/Debug/net7.0/server.MvcApplicationPartsAssemblyInfo.cs b/server/obj/Debug/net7.0/server.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..7a8df11 --- /dev/null +++ b/server/obj/Debug/net7.0/server.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/server/obj/Debug/net7.0/server.assets.cache b/server/obj/Debug/net7.0/server.assets.cache new file mode 100644 index 0000000..3ff8536 Binary files /dev/null and b/server/obj/Debug/net7.0/server.assets.cache differ diff --git a/server/obj/Debug/net7.0/server.csproj.AssemblyReference.cache b/server/obj/Debug/net7.0/server.csproj.AssemblyReference.cache new file mode 100644 index 0000000..dd4d2f0 Binary files /dev/null and b/server/obj/Debug/net7.0/server.csproj.AssemblyReference.cache differ diff --git a/server/obj/Debug/net7.0/server.csproj.CopyComplete b/server/obj/Debug/net7.0/server.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/server/obj/Debug/net7.0/server.csproj.CoreCompileInputs.cache b/server/obj/Debug/net7.0/server.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ac461b8 --- /dev/null +++ b/server/obj/Debug/net7.0/server.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +b3261edc6825aa7f93019f79e87ac029c3ada739 diff --git a/server/obj/Debug/net7.0/server.csproj.FileListAbsolute.txt b/server/obj/Debug/net7.0/server.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..05f8b6a --- /dev/null +++ b/server/obj/Debug/net7.0/server.csproj.FileListAbsolute.txt @@ -0,0 +1,33 @@ +/home/david/Projects/qrreader/server/obj/Debug/net7.0/server.csproj.AssemblyReference.cache +/home/david/Projects/qrreader/server/obj/Debug/net7.0/server.GeneratedMSBuildEditorConfig.editorconfig +/home/david/Projects/qrreader/server/obj/Debug/net7.0/server.AssemblyInfoInputs.cache +/home/david/Projects/qrreader/server/obj/Debug/net7.0/server.AssemblyInfo.cs +/home/david/Projects/qrreader/server/obj/Debug/net7.0/server.csproj.CoreCompileInputs.cache +/home/david/Projects/qrreader/server/obj/Debug/net7.0/server.MvcApplicationPartsAssemblyInfo.cs +/home/david/Projects/qrreader/server/obj/Debug/net7.0/server.MvcApplicationPartsAssemblyInfo.cache +/home/david/Projects/qrreader/server/bin/Debug/net7.0/appsettings.Development.json +/home/david/Projects/qrreader/server/bin/Debug/net7.0/appsettings.json +/home/david/Projects/qrreader/server/bin/Debug/net7.0/server +/home/david/Projects/qrreader/server/bin/Debug/net7.0/server.deps.json +/home/david/Projects/qrreader/server/bin/Debug/net7.0/server.runtimeconfig.json +/home/david/Projects/qrreader/server/bin/Debug/net7.0/server.dll +/home/david/Projects/qrreader/server/bin/Debug/net7.0/server.pdb +/home/david/Projects/qrreader/server/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll +/home/david/Projects/qrreader/server/bin/Debug/net7.0/Microsoft.OpenApi.dll +/home/david/Projects/qrreader/server/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll +/home/david/Projects/qrreader/server/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/home/david/Projects/qrreader/server/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/home/david/Projects/qrreader/server/obj/Debug/net7.0/staticwebassets/msbuild.server.Microsoft.AspNetCore.StaticWebAssets.props +/home/david/Projects/qrreader/server/obj/Debug/net7.0/staticwebassets/msbuild.build.server.props +/home/david/Projects/qrreader/server/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.server.props +/home/david/Projects/qrreader/server/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.server.props +/home/david/Projects/qrreader/server/obj/Debug/net7.0/staticwebassets.pack.json +/home/david/Projects/qrreader/server/obj/Debug/net7.0/staticwebassets.build.json +/home/david/Projects/qrreader/server/obj/Debug/net7.0/staticwebassets.development.json +/home/david/Projects/qrreader/server/obj/Debug/net7.0/scopedcss/bundle/server.styles.css +/home/david/Projects/qrreader/server/obj/Debug/net7.0/server.csproj.CopyComplete +/home/david/Projects/qrreader/server/obj/Debug/net7.0/server.dll +/home/david/Projects/qrreader/server/obj/Debug/net7.0/refint/server.dll +/home/david/Projects/qrreader/server/obj/Debug/net7.0/server.pdb +/home/david/Projects/qrreader/server/obj/Debug/net7.0/server.genruntimeconfig.cache +/home/david/Projects/qrreader/server/obj/Debug/net7.0/ref/server.dll diff --git a/server/obj/Debug/net7.0/server.dll b/server/obj/Debug/net7.0/server.dll new file mode 100644 index 0000000..5a92fad Binary files /dev/null and b/server/obj/Debug/net7.0/server.dll differ diff --git a/server/obj/Debug/net7.0/server.genruntimeconfig.cache b/server/obj/Debug/net7.0/server.genruntimeconfig.cache new file mode 100644 index 0000000..b7cad27 --- /dev/null +++ b/server/obj/Debug/net7.0/server.genruntimeconfig.cache @@ -0,0 +1 @@ +006fa822ce65a3c1db35a3615626d5728048c013 diff --git a/server/obj/Debug/net7.0/server.pdb b/server/obj/Debug/net7.0/server.pdb new file mode 100644 index 0000000..3c65778 Binary files /dev/null and b/server/obj/Debug/net7.0/server.pdb differ diff --git a/server/obj/Debug/net7.0/staticwebassets.build.json b/server/obj/Debug/net7.0/staticwebassets.build.json new file mode 100644 index 0000000..dc45793 --- /dev/null +++ b/server/obj/Debug/net7.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "wHmTdzQjOI+52yc/ssik8jb3aBon0KdSXd8S7aZ3iSw=", + "Source": "server", + "BasePath": "_content/server", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/server/obj/Debug/net7.0/staticwebassets/msbuild.build.server.props b/server/obj/Debug/net7.0/staticwebassets/msbuild.build.server.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/server/obj/Debug/net7.0/staticwebassets/msbuild.build.server.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/server/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.server.props b/server/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.server.props new file mode 100644 index 0000000..d5ce175 --- /dev/null +++ b/server/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.server.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/server/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.server.props b/server/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.server.props new file mode 100644 index 0000000..c77bb9b --- /dev/null +++ b/server/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.server.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/server/obj/project.assets.json b/server/obj/project.assets.json new file mode 100644 index 0000000..dab1c1a --- /dev/null +++ b/server/obj/project.assets.json @@ -0,0 +1,542 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "Microsoft.AspNetCore.OpenApi/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.4.3" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "build": { + "build/Microsoft.Extensions.ApiDescription.Server.props": {}, + "build/Microsoft.Extensions.ApiDescription.Server.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} + } + }, + "Microsoft.OpenApi/1.4.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + }, + "build": { + "build/Swashbuckle.AspNetCore.props": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "Microsoft.AspNetCore.OpenApi/7.0.0": { + "sha512": "P1mkNhZ3IwU3phNLIUkgqVXb1exnooTalIYwpSON3oKKkcRtACDgS4WpO+xnwFw4KzV0bmgkUqB3acXxIefvvg==", + "type": "package", + "path": "microsoft.aspnetcore.openapi/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll", + "lib/net7.0/Microsoft.AspNetCore.OpenApi.xml", + "microsoft.aspnetcore.openapi.7.0.0.nupkg.sha512", + "microsoft.aspnetcore.openapi.nuspec" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461-x86/Microsoft.Win32.Primitives.dll", + "tools/net461-x86/System.AppContext.dll", + "tools/net461-x86/System.Buffers.dll", + "tools/net461-x86/System.Collections.Concurrent.dll", + "tools/net461-x86/System.Collections.NonGeneric.dll", + "tools/net461-x86/System.Collections.Specialized.dll", + "tools/net461-x86/System.Collections.dll", + "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll", + "tools/net461-x86/System.ComponentModel.Primitives.dll", + "tools/net461-x86/System.ComponentModel.TypeConverter.dll", + "tools/net461-x86/System.ComponentModel.dll", + "tools/net461-x86/System.Console.dll", + "tools/net461-x86/System.Data.Common.dll", + "tools/net461-x86/System.Diagnostics.Contracts.dll", + "tools/net461-x86/System.Diagnostics.Debug.dll", + "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll", + "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll", + "tools/net461-x86/System.Diagnostics.Process.dll", + "tools/net461-x86/System.Diagnostics.StackTrace.dll", + "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461-x86/System.Diagnostics.Tools.dll", + "tools/net461-x86/System.Diagnostics.TraceSource.dll", + "tools/net461-x86/System.Diagnostics.Tracing.dll", + "tools/net461-x86/System.Drawing.Primitives.dll", + "tools/net461-x86/System.Dynamic.Runtime.dll", + "tools/net461-x86/System.Globalization.Calendars.dll", + "tools/net461-x86/System.Globalization.Extensions.dll", + "tools/net461-x86/System.Globalization.dll", + "tools/net461-x86/System.IO.Compression.ZipFile.dll", + "tools/net461-x86/System.IO.Compression.dll", + "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll", + "tools/net461-x86/System.IO.FileSystem.Primitives.dll", + "tools/net461-x86/System.IO.FileSystem.Watcher.dll", + "tools/net461-x86/System.IO.FileSystem.dll", + "tools/net461-x86/System.IO.IsolatedStorage.dll", + "tools/net461-x86/System.IO.MemoryMappedFiles.dll", + "tools/net461-x86/System.IO.Pipes.dll", + "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll", + "tools/net461-x86/System.IO.dll", + "tools/net461-x86/System.Linq.Expressions.dll", + "tools/net461-x86/System.Linq.Parallel.dll", + "tools/net461-x86/System.Linq.Queryable.dll", + "tools/net461-x86/System.Linq.dll", + "tools/net461-x86/System.Memory.dll", + "tools/net461-x86/System.Net.Http.dll", + "tools/net461-x86/System.Net.NameResolution.dll", + "tools/net461-x86/System.Net.NetworkInformation.dll", + "tools/net461-x86/System.Net.Ping.dll", + "tools/net461-x86/System.Net.Primitives.dll", + "tools/net461-x86/System.Net.Requests.dll", + "tools/net461-x86/System.Net.Security.dll", + "tools/net461-x86/System.Net.Sockets.dll", + "tools/net461-x86/System.Net.WebHeaderCollection.dll", + "tools/net461-x86/System.Net.WebSockets.Client.dll", + "tools/net461-x86/System.Net.WebSockets.dll", + "tools/net461-x86/System.Numerics.Vectors.dll", + "tools/net461-x86/System.ObjectModel.dll", + "tools/net461-x86/System.Reflection.Extensions.dll", + "tools/net461-x86/System.Reflection.Primitives.dll", + "tools/net461-x86/System.Reflection.dll", + "tools/net461-x86/System.Resources.Reader.dll", + "tools/net461-x86/System.Resources.ResourceManager.dll", + "tools/net461-x86/System.Resources.Writer.dll", + "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461-x86/System.Runtime.Extensions.dll", + "tools/net461-x86/System.Runtime.Handles.dll", + "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461-x86/System.Runtime.InteropServices.dll", + "tools/net461-x86/System.Runtime.Numerics.dll", + "tools/net461-x86/System.Runtime.Serialization.Formatters.dll", + "tools/net461-x86/System.Runtime.Serialization.Json.dll", + "tools/net461-x86/System.Runtime.Serialization.Primitives.dll", + "tools/net461-x86/System.Runtime.Serialization.Xml.dll", + "tools/net461-x86/System.Runtime.dll", + "tools/net461-x86/System.Security.Claims.dll", + "tools/net461-x86/System.Security.Cryptography.Algorithms.dll", + "tools/net461-x86/System.Security.Cryptography.Csp.dll", + "tools/net461-x86/System.Security.Cryptography.Encoding.dll", + "tools/net461-x86/System.Security.Cryptography.Primitives.dll", + "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll", + "tools/net461-x86/System.Security.Principal.dll", + "tools/net461-x86/System.Security.SecureString.dll", + "tools/net461-x86/System.Text.Encoding.Extensions.dll", + "tools/net461-x86/System.Text.Encoding.dll", + "tools/net461-x86/System.Text.RegularExpressions.dll", + "tools/net461-x86/System.Threading.Overlapped.dll", + "tools/net461-x86/System.Threading.Tasks.Parallel.dll", + "tools/net461-x86/System.Threading.Tasks.dll", + "tools/net461-x86/System.Threading.Thread.dll", + "tools/net461-x86/System.Threading.ThreadPool.dll", + "tools/net461-x86/System.Threading.Timer.dll", + "tools/net461-x86/System.Threading.dll", + "tools/net461-x86/System.ValueTuple.dll", + "tools/net461-x86/System.Xml.ReaderWriter.dll", + "tools/net461-x86/System.Xml.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.dll", + "tools/net461-x86/System.Xml.XmlDocument.dll", + "tools/net461-x86/System.Xml.XmlSerializer.dll", + "tools/net461-x86/netstandard.dll", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/net461/Microsoft.Win32.Primitives.dll", + "tools/net461/System.AppContext.dll", + "tools/net461/System.Buffers.dll", + "tools/net461/System.Collections.Concurrent.dll", + "tools/net461/System.Collections.NonGeneric.dll", + "tools/net461/System.Collections.Specialized.dll", + "tools/net461/System.Collections.dll", + "tools/net461/System.ComponentModel.EventBasedAsync.dll", + "tools/net461/System.ComponentModel.Primitives.dll", + "tools/net461/System.ComponentModel.TypeConverter.dll", + "tools/net461/System.ComponentModel.dll", + "tools/net461/System.Console.dll", + "tools/net461/System.Data.Common.dll", + "tools/net461/System.Diagnostics.Contracts.dll", + "tools/net461/System.Diagnostics.Debug.dll", + "tools/net461/System.Diagnostics.DiagnosticSource.dll", + "tools/net461/System.Diagnostics.FileVersionInfo.dll", + "tools/net461/System.Diagnostics.Process.dll", + "tools/net461/System.Diagnostics.StackTrace.dll", + "tools/net461/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461/System.Diagnostics.Tools.dll", + "tools/net461/System.Diagnostics.TraceSource.dll", + "tools/net461/System.Diagnostics.Tracing.dll", + "tools/net461/System.Drawing.Primitives.dll", + "tools/net461/System.Dynamic.Runtime.dll", + "tools/net461/System.Globalization.Calendars.dll", + "tools/net461/System.Globalization.Extensions.dll", + "tools/net461/System.Globalization.dll", + "tools/net461/System.IO.Compression.ZipFile.dll", + "tools/net461/System.IO.Compression.dll", + "tools/net461/System.IO.FileSystem.DriveInfo.dll", + "tools/net461/System.IO.FileSystem.Primitives.dll", + "tools/net461/System.IO.FileSystem.Watcher.dll", + "tools/net461/System.IO.FileSystem.dll", + "tools/net461/System.IO.IsolatedStorage.dll", + "tools/net461/System.IO.MemoryMappedFiles.dll", + "tools/net461/System.IO.Pipes.dll", + "tools/net461/System.IO.UnmanagedMemoryStream.dll", + "tools/net461/System.IO.dll", + "tools/net461/System.Linq.Expressions.dll", + "tools/net461/System.Linq.Parallel.dll", + "tools/net461/System.Linq.Queryable.dll", + "tools/net461/System.Linq.dll", + "tools/net461/System.Memory.dll", + "tools/net461/System.Net.Http.dll", + "tools/net461/System.Net.NameResolution.dll", + "tools/net461/System.Net.NetworkInformation.dll", + "tools/net461/System.Net.Ping.dll", + "tools/net461/System.Net.Primitives.dll", + "tools/net461/System.Net.Requests.dll", + "tools/net461/System.Net.Security.dll", + "tools/net461/System.Net.Sockets.dll", + "tools/net461/System.Net.WebHeaderCollection.dll", + "tools/net461/System.Net.WebSockets.Client.dll", + "tools/net461/System.Net.WebSockets.dll", + "tools/net461/System.Numerics.Vectors.dll", + "tools/net461/System.ObjectModel.dll", + "tools/net461/System.Reflection.Extensions.dll", + "tools/net461/System.Reflection.Primitives.dll", + "tools/net461/System.Reflection.dll", + "tools/net461/System.Resources.Reader.dll", + "tools/net461/System.Resources.ResourceManager.dll", + "tools/net461/System.Resources.Writer.dll", + "tools/net461/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461/System.Runtime.Extensions.dll", + "tools/net461/System.Runtime.Handles.dll", + "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461/System.Runtime.InteropServices.dll", + "tools/net461/System.Runtime.Numerics.dll", + "tools/net461/System.Runtime.Serialization.Formatters.dll", + "tools/net461/System.Runtime.Serialization.Json.dll", + "tools/net461/System.Runtime.Serialization.Primitives.dll", + "tools/net461/System.Runtime.Serialization.Xml.dll", + "tools/net461/System.Runtime.dll", + "tools/net461/System.Security.Claims.dll", + "tools/net461/System.Security.Cryptography.Algorithms.dll", + "tools/net461/System.Security.Cryptography.Csp.dll", + "tools/net461/System.Security.Cryptography.Encoding.dll", + "tools/net461/System.Security.Cryptography.Primitives.dll", + "tools/net461/System.Security.Cryptography.X509Certificates.dll", + "tools/net461/System.Security.Principal.dll", + "tools/net461/System.Security.SecureString.dll", + "tools/net461/System.Text.Encoding.Extensions.dll", + "tools/net461/System.Text.Encoding.dll", + "tools/net461/System.Text.RegularExpressions.dll", + "tools/net461/System.Threading.Overlapped.dll", + "tools/net461/System.Threading.Tasks.Parallel.dll", + "tools/net461/System.Threading.Tasks.dll", + "tools/net461/System.Threading.Thread.dll", + "tools/net461/System.Threading.ThreadPool.dll", + "tools/net461/System.Threading.Timer.dll", + "tools/net461/System.Threading.dll", + "tools/net461/System.ValueTuple.dll", + "tools/net461/System.Xml.ReaderWriter.dll", + "tools/net461/System.Xml.XDocument.dll", + "tools/net461/System.Xml.XPath.XDocument.dll", + "tools/net461/System.Xml.XPath.dll", + "tools/net461/System.Xml.XmlDocument.dll", + "tools/net461/System.Xml.XmlSerializer.dll", + "tools/net461/netstandard.dll", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json", + "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" + ] + }, + "Microsoft.OpenApi/1.4.3": { + "sha512": "rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", + "type": "package", + "path": "microsoft.openapi/1.4.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.4.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.4.0": { + "sha512": "eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "sha512": "nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "sha512": "lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "sha512": "1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "Microsoft.AspNetCore.OpenApi >= 7.0.0", + "Swashbuckle.AspNetCore >= 6.4.0" + ] + }, + "packageFolders": { + "/home/david/.nuget/packages/": {}, + "/home/david/.local/share/godot/mono/GodotNuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/david/Projects/qrreader/server/server.csproj", + "projectName": "server", + "projectPath": "/home/david/Projects/qrreader/server/server.csproj", + "packagesPath": "/home/david/.nuget/packages/", + "outputPath": "/home/david/Projects/qrreader/server/obj/", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "/home/david/.local/share/godot/mono/GodotNuGetFallbackFolder" + ], + "configFilePaths": [ + "/home/david/.nuget/NuGet/NuGet.Config", + "/home/david/.nuget/NuGet/config/Godot.Offline.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[7.0.0, 7.0.0]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.100/RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/server/obj/project.nuget.cache b/server/obj/project.nuget.cache new file mode 100644 index 0000000..d4f797a --- /dev/null +++ b/server/obj/project.nuget.cache @@ -0,0 +1,17 @@ +{ + "version": 2, + "dgSpecHash": "4faEhlBZBQR4XA0l9Y6MFsKfDZClrafWyifqY19d8L7kHM1fRhvGnHU4aM4iuD5ccVI8H73T8cGuDoNAUHY4gA==", + "success": true, + "projectFilePath": "/home/david/Projects/qrreader/server/server.csproj", + "expectedPackageFiles": [ + "/home/david/.nuget/packages/microsoft.aspnetcore.openapi/7.0.0/microsoft.aspnetcore.openapi.7.0.0.nupkg.sha512", + "/home/david/.nuget/packages/microsoft.extensions.apidescription.server/6.0.5/microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "/home/david/.nuget/packages/microsoft.openapi/1.4.3/microsoft.openapi.1.4.3.nupkg.sha512", + "/home/david/.nuget/packages/swashbuckle.aspnetcore/6.4.0/swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "/home/david/.nuget/packages/swashbuckle.aspnetcore.swagger/6.4.0/swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "/home/david/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.4.0/swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "/home/david/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.4.0/swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "/home/david/.nuget/packages/microsoft.aspnetcore.app.ref/7.0.0/microsoft.aspnetcore.app.ref.7.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/server/obj/server.csproj.nuget.dgspec.json b/server/obj/server.csproj.nuget.dgspec.json new file mode 100644 index 0000000..4956870 --- /dev/null +++ b/server/obj/server.csproj.nuget.dgspec.json @@ -0,0 +1,84 @@ +{ + "format": 1, + "restore": { + "/home/david/Projects/qrreader/server/server.csproj": {} + }, + "projects": { + "/home/david/Projects/qrreader/server/server.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/david/Projects/qrreader/server/server.csproj", + "projectName": "server", + "projectPath": "/home/david/Projects/qrreader/server/server.csproj", + "packagesPath": "/home/david/.nuget/packages/", + "outputPath": "/home/david/Projects/qrreader/server/obj/", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "/home/david/.local/share/godot/mono/GodotNuGetFallbackFolder" + ], + "configFilePaths": [ + "/home/david/.nuget/NuGet/NuGet.Config", + "/home/david/.nuget/NuGet/config/Godot.Offline.Config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[7.0.0, 7.0.0]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.100/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/server/obj/server.csproj.nuget.g.props b/server/obj/server.csproj.nuget.g.props new file mode 100644 index 0000000..ea22b63 --- /dev/null +++ b/server/obj/server.csproj.nuget.g.props @@ -0,0 +1,23 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/david/.nuget/packages/ + /home/david/.nuget/packages/;/home/david/.local/share/godot/mono/GodotNuGetFallbackFolder + PackageReference + 6.4.0 + + + + + + + + + + + /home/david/.nuget/packages/microsoft.extensions.apidescription.server/6.0.5 + + \ No newline at end of file diff --git a/server/obj/server.csproj.nuget.g.targets b/server/obj/server.csproj.nuget.g.targets new file mode 100644 index 0000000..04427d8 --- /dev/null +++ b/server/obj/server.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/server/server.csproj b/server/server.csproj new file mode 100644 index 0000000..ce90fce --- /dev/null +++ b/server/server.csproj @@ -0,0 +1,14 @@ + + + + net7.0 + enable + enable + + + + + + + + diff --git a/ui/main.gd b/ui/main.gd new file mode 100644 index 0000000..df7a105 --- /dev/null +++ b/ui/main.gd @@ -0,0 +1,38 @@ +extends PanelContainer + + +@onready var buttons = %Buttons +@onready var outputs = %Outputs + + +var server_pid: int = -1 + + +func _ready() -> void: + buttons.get_node("Client").pressed.connect(_start_client) + buttons.get_node("Server").pressed.connect(_start_server) + + +func _start_server() -> void: +# server_pid = OS.create_process("dotnet", ["run", "--project", "server"]) + server_pid = OS.create_process("server/bin/Debug/net7.0/server", []) + if server_pid > 0: + buttons.get_node("Server").set_text("Kill Server") + + +func _start_client() -> void: + outputs.get_node("../../..").show() + var output = [] +# OS.execute("dotnet", ["run", "--project", "client"], output) + OS.execute("client/bin/Debug/net7.0/client", [], output) + for line in output: + print(line) + var label = Label.new() + label.set_text(line) + outputs.add_child(label) + + +func _kill_server() -> void: + if server_pid > 0: + OS.kill(server_pid) + buttons.get_node("Server").set_text("Start Server") diff --git a/ui/main.tscn b/ui/main.tscn new file mode 100644 index 0000000..0f2fd11 --- /dev/null +++ b/ui/main.tscn @@ -0,0 +1,56 @@ +[gd_scene load_steps=2 format=3 uid="uid://disq4a3p08bqh"] + +[ext_resource type="Script" path="res://ui/main.gd" id="1_8ft67"] + +[node name="MainUI" type="PanelContainer"] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_8ft67") + +[node name="MarginContainer" type="MarginContainer" parent="."] +layout_mode = 2 +theme_override_constants/margin_left = 16 +theme_override_constants/margin_top = 16 +theme_override_constants/margin_right = 16 +theme_override_constants/margin_bottom = 16 + +[node name="CenterContainer" type="CenterContainer" parent="MarginContainer"] +layout_mode = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/CenterContainer"] +layout_mode = 2 + +[node name="PanelContainer" type="PanelContainer" parent="MarginContainer/CenterContainer/VBoxContainer"] +visible = false +layout_mode = 2 + +[node name="MarginContainer" type="MarginContainer" parent="MarginContainer/CenterContainer/VBoxContainer/PanelContainer"] +layout_mode = 2 +theme_override_constants/margin_left = 8 +theme_override_constants/margin_top = 8 +theme_override_constants/margin_right = 8 +theme_override_constants/margin_bottom = 8 + +[node name="ScrollContainer" type="ScrollContainer" parent="MarginContainer/CenterContainer/VBoxContainer/PanelContainer/MarginContainer"] +custom_minimum_size = Vector2(300, 300) +layout_mode = 2 + +[node name="Outputs" type="VBoxContainer" parent="MarginContainer/CenterContainer/VBoxContainer/PanelContainer/MarginContainer/ScrollContainer"] +unique_name_in_owner = true +layout_mode = 2 + +[node name="Buttons" type="VBoxContainer" parent="MarginContainer/CenterContainer/VBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 + +[node name="Client" type="Button" parent="MarginContainer/CenterContainer/VBoxContainer/Buttons"] +layout_mode = 2 +text = "Scan QR Code" + +[node name="Server" type="Button" parent="MarginContainer/CenterContainer/VBoxContainer/Buttons"] +visible = false +layout_mode = 2 +text = "Start Server"