From 86fce3dae18cabbfc97ec2cfaec3be2f0defd348 Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 9 Nov 2024 20:09:35 +0100 Subject: [PATCH] initial commit --- Nop.Plugin.Misc.BillingoInvoicing/.gitignore | 365 + .../Areas/Admin/Views/_ViewImports.cshtml | 10 + .../BillingoInvoicingDefaults.cs | 16 + .../BillingoInvoicingPlugin.cs | 72 + .../BillingoInvoicingSettings.cs | 15 + .../BillingoInvoicingController.cs | 81 + .../Infrastructure/PluginNopStartup.cs | 30 + .../Infrastructure/RouteProvider.cs | 29 + .../Infrastructure/ViewLocationExpander.cs | 27 + Nop.Plugin.Misc.BillingoInvoicing/LICENSE.txt | 21 + .../Models/ConfigurationModel.cs | 18 + .../Nop.Plugin.Misc.BillingoInvoicing.csproj | 46 + Nop.Plugin.Misc.BillingoInvoicing/README.md | 35 + .../Services/BillingoClientService.cs | 13556 ++++++++++++++++ .../Services/BillingoEmailMessageService.cs | 294 + .../Services/InvoiceGenerator.cs | 149 + .../Views/Configure.cshtml | 50 + .../Views/_ViewImports.cshtml | 13 + Nop.Plugin.Misc.BillingoInvoicing/logo.jpg | Bin 0 -> 3621 bytes Nop.Plugin.Misc.BillingoInvoicing/plugin.json | 11 + .../Areas/Admin/Views/_ViewImports.cshtml | 10 + .../Components/CustomViewComponent.cs | 19 + .../Domains/CustomTable.cs | 9 + .../Infrastructure/PluginNopStartup.cs | 40 + .../Infrastructure/RouteProvider.cs | 25 + .../Infrastructure/ViewLocationExpander.cs | 39 + .../Mapping/Builders/PluginBuilder.cs | 21 + .../Mapping/NameCompatibility.cs | 17 + .../Migrations/SchemaMigration.cs | 20 + Nop.Plugin.Misc.MyTestPlugin1/MyTestPlugin.cs | 11 + .../Nop.Plugin.Misc.MyTestPlugin1.csproj | 68 + .../Views/_ViewImports.cshtml | 11 + Nop.Plugin.Misc.MyTestPlugin1/logo.jpg | Bin 0 -> 3118 bytes ...CoreApp,Version=v8.0.AssemblyAttributes.cs | 4 + ....Plugin.Misc.MyTestPlugin1.AssemblyInfo.cs | 23 + ...isc.MyTestPlugin1.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 13 + ...lugin.Misc.MyTestPlugin1.GlobalUsings.g.cs | 8 + ...Nop.Plugin.Misc.MyTestPlugin1.assets.cache | Bin 0 -> 136335 bytes ...TestPlugin1.csproj.AssemblyReference.cache | Bin 0 -> 69480 bytes .../obj/Debug/net8.0/project.razor.vs.bin | Bin 0 -> 241221 bytes ...isc.MyTestPlugin1.csproj.nuget.dgspec.json | 617 + ...in.Misc.MyTestPlugin1.csproj.nuget.g.props | 20 + ....Misc.MyTestPlugin1.csproj.nuget.g.targets | 10 + .../obj/project.assets.json | 10145 ++++++++++++ .../obj/project.nuget.cache | 234 + Nop.Plugin.Misc.MyTestPlugin1/plugin.json | 13 + .../Areas/Admin/Views/_ViewImports.cshtml | 10 + .../Components/CustomViewComponent.cs | 19 + .../Controllers/SignalRApiAdminController.cs | 38 + .../Controllers/SignalRApiController.cs | 28 + .../Domains/CustomTable1.cs | 9 + .../Hubs/IMainHubClient.cs | 14 + Nop.Plugin.Misc.SignalRApi/Hubs/MainHub.cs | 94 + .../Infrastructure/PluginNopStartup.cs | 58 + .../Infrastructure/RouteProvider.cs | 35 + .../Infrastructure/ViewLocationExpander.cs | 39 + .../Mapping/Builders/PluginBuilder.cs | 21 + .../Mapping/NameCompatibility.cs | 17 + .../Migrations/SchemaMigration.cs | 19 + .../MiscSignalRApiPlugin.cs | 104 + .../Models/ConfigurationModel.cs | 27 + .../Nop.Plugin.Misc.SignalRApi.csproj | 72 + .../Services/SignalRService.cs | 26 + .../Views/Configure.cshtml | 110 + .../Views/_ViewImports.cshtml | 27 + Nop.Plugin.Misc.SignalRApi/logo.jpg | Bin 0 -> 3118 bytes ...CoreApp,Version=v8.0.AssemblyAttributes.cs | 4 + .../Debug/net8.0/Nop.Plug.69C19CFB.Up2Date | 0 ...Nop.Plugin.Misc.SignalRApi.AssemblyInfo.cs | 23 + ...n.Misc.SignalRApi.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 13 + ...p.Plugin.Misc.SignalRApi.GlobalUsings.g.cs | 8 + .../Nop.Plugin.Misc.SignalRApi.assets.cache | Bin 0 -> 136407 bytes ....SignalRApi.csproj.AssemblyReference.cache | Bin 0 -> 69480 bytes ...c.SignalRApi.csproj.BuildWithSkipAnalyzers | 0 ....SignalRApi.csproj.CoreCompileInputs.cache | 1 + ...isc.SignalRApi.csproj.FileListAbsolute.txt | 1346 ++ .../net8.0/Nop.Plugin.Misc.SignalRApi.dll | Bin 0 -> 30208 bytes .../net8.0/Nop.Plugin.Misc.SignalRApi.pdb | Bin 0 -> 33088 bytes .../obj/Debug/net8.0/project.razor.vs.bin | Bin 0 -> 241399 bytes .../net8.0/ref/Nop.Plugin.Misc.SignalRApi.dll | Bin 0 -> 13824 bytes .../refint/Nop.Plugin.Misc.SignalRApi.dll | Bin 0 -> 13824 bytes ...n.Misc.SignalRApi.csproj.nuget.dgspec.json | 617 + ...lugin.Misc.SignalRApi.csproj.nuget.g.props | 20 + ...gin.Misc.SignalRApi.csproj.nuget.g.targets | 10 + .../obj/project.assets.json | 10145 ++++++++++++ .../obj/project.nuget.cache | 234 + Nop.Plugin.Misc.SignalRApi/plugin.json | 13 + .../AgeVerificationPlugin.cs | 36 + .../Areas/Admin/Views/_ViewImports.cshtml | 10 + .../AgeVerificationViewComponent.cs | 13 + .../Controllers/AgeVerificationController.cs | 13 + .../Domains/CustomTable.cs | 7 + .../Infrastructure/PluginNopStartup.cs | 38 + .../Infrastructure/RouteProvider.cs | 23 + .../Infrastructure/ViewLocationExpander.cs | 37 + .../Mapping/Builders/PluginBuilder.cs | 19 + .../Mapping/NameCompatibility.cs | 15 + .../Migrations/SchemaMigration.cs | 18 + .../Nop.Plugin.Misc.TestPlugin.csproj | 70 + .../Views/AgeVerificationPopup.cshtml | 22 + .../Views/_ViewImports.cshtml | 11 + Nop.Plugin.Misc.TestPlugin/logo.jpg | Bin 0 -> 3118 bytes ...CoreApp,Version=v8.0.AssemblyAttributes.cs | 4 + .../Debug/net8.0/Nop.Plug.CB622A65.Up2Date | 0 ...Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs | 23 + ...n.Misc.TestPlugin.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 13 + ...p.Plugin.Misc.TestPlugin.GlobalUsings.g.cs | 8 + .../Nop.Plugin.Misc.TestPlugin.assets.cache | Bin 0 -> 136407 bytes ....TestPlugin.csproj.AssemblyReference.cache | Bin 0 -> 69480 bytes ....TestPlugin.csproj.CoreCompileInputs.cache | 1 + ...isc.TestPlugin.csproj.FileListAbsolute.txt | 1648 ++ .../net8.0/Nop.Plugin.Misc.TestPlugin.dll | Bin 0 -> 11776 bytes .../net8.0/Nop.Plugin.Misc.TestPlugin.pdb | Bin 0 -> 29384 bytes .../obj/Debug/net8.0/project.razor.vs.bin | Bin 0 -> 197629 bytes .../net8.0/ref/Nop.Plugin.Misc.TestPlugin.dll | Bin 0 -> 9216 bytes .../refint/Nop.Plugin.Misc.TestPlugin.dll | Bin 0 -> 9216 bytes ...n.Misc.TestPlugin.csproj.nuget.dgspec.json | 617 + ...lugin.Misc.TestPlugin.csproj.nuget.g.props | 20 + ...gin.Misc.TestPlugin.csproj.nuget.g.targets | 10 + ...CoreApp,Version=v8.0.AssemblyAttributes.cs | 4 + ...Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs | 23 + ...n.Misc.TestPlugin.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 13 + ...p.Plugin.Misc.TestPlugin.GlobalUsings.g.cs | 8 + .../Nop.Plugin.Misc.TestPlugin.assets.cache | Bin 0 -> 136335 bytes ....TestPlugin.csproj.AssemblyReference.cache | Bin 0 -> 69500 bytes .../obj/project.assets.json | 10145 ++++++++++++ .../obj/project.nuget.cache | 234 + Nop.Plugin.Misc.TestPlugin/plugin.json | 13 + .../WidgetsACAgeVerificationViewComponent.cs | 89 + .../Content/nivoslider/README | 1 + .../Content/nivoslider/license.txt | 22 + .../Content/nivoslider/nivo-slider.css | 114 + .../nivoslider/sample-images/banner_01.webp | Bin 0 -> 62310 bytes .../nivoslider/sample-images/banner_02.webp | Bin 0 -> 55500 bytes .../Content/nivoslider/themes/bar/arrows.png | Bin 0 -> 824 bytes .../Content/nivoslider/themes/bar/bar.css | 132 + .../Content/nivoslider/themes/bar/bullets.png | Bin 0 -> 1281 bytes .../Content/nivoslider/themes/bar/loading.gif | Bin 0 -> 1737 bytes .../nivoslider/themes/custom/arrows.png | Bin 0 -> 1380 bytes .../nivoslider/themes/custom/bullets.png | Bin 0 -> 1281 bytes .../nivoslider/themes/custom/custom.css | 126 + .../nivoslider/themes/custom/loading.gif | Bin 0 -> 1588 bytes .../Content/nivoslider/themes/dark/arrows.png | Bin 0 -> 3088 bytes .../nivoslider/themes/dark/bullets.png | Bin 0 -> 3146 bytes .../Content/nivoslider/themes/dark/dark.css | 102 + .../nivoslider/themes/dark/loading.gif | Bin 0 -> 1737 bytes .../nivoslider/themes/default/arrows.png | Bin 0 -> 824 bytes .../nivoslider/themes/default/bullets.png | Bin 0 -> 1281 bytes .../nivoslider/themes/default/default.css | 93 + .../nivoslider/themes/default/loading.gif | Bin 0 -> 1737 bytes .../nivoslider/themes/light/arrows.png | Bin 0 -> 3247 bytes .../nivoslider/themes/light/bullets.png | Bin 0 -> 3288 bytes .../Content/nivoslider/themes/light/light.css | 102 + .../nivoslider/themes/light/loading.gif | Bin 0 -> 1737 bytes .../WidgetsNivoSliderController.cs | 192 + .../Cache/ModelCacheEventConsumer.cs | 50 + .../Models/ConfigurationModel.cs | 80 + .../Models/PublicInfoModel.cs | 31 + .../NivoSliderPlugin.cs | 130 + .../NivoSliderSettings.cs | 31 + ...op.Plugin.Widgets.ACAgeVerification.csproj | 166 + .../Notes.txt | 33 + .../Scripts/jquery.nivo.slider.js | 665 + .../Views/Configure.cshtml | 259 + .../Views/PublicInfo.cshtml | 78 + .../Views/_PublicInfo.SliderLine.cshtml | 23 + .../Views/_ViewImports.cshtml | 9 + Nop.Plugin.Widgets.ACAgeVerification/logo.jpg | Bin 0 -> 3118 bytes ...CoreApp,Version=v8.0.AssemblyAttributes.cs | 4 + .../Debug/net8.0/Nop.Plug.BBDD4880.Up2Date | 0 ....Widgets.ACAgeVerification.AssemblyInfo.cs | 25 + ...ACAgeVerification.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 13 + ...idgets.ACAgeVerification.GlobalUsings.g.cs | 8 + ...gin.Widgets.ACAgeVerification.assets.cache | Bin 0 -> 166891 bytes ...erification.csproj.AssemblyReference.cache | Bin 0 -> 66673 bytes ...erification.csproj.CoreCompileInputs.cache | 1 + ...geVerification.csproj.FileListAbsolute.txt | 351 + .../Nop.Plugin.Widgets.ACAgeVerification.dll | Bin 0 -> 59392 bytes .../Nop.Plugin.Widgets.ACAgeVerification.pdb | Bin 0 -> 36348 bytes ....Plugin.Widgets.NivoSlider.AssemblyInfo.cs | 25 + ...idgets.NivoSlider.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 13 + ...lugin.Widgets.NivoSlider.GlobalUsings.g.cs | 8 + ...Nop.Plugin.Widgets.NivoSlider.assets.cache | Bin 0 -> 166891 bytes ....NivoSlider.csproj.AssemblyReference.cache | Bin 0 -> 66673 bytes .../obj/Debug/net8.0/project.razor.vs.bin | Bin 0 -> 309 bytes .../Nop.Plugin.Widgets.ACAgeVerification.dll | Bin 0 -> 20480 bytes .../Nop.Plugin.Widgets.ACAgeVerification.dll | Bin 0 -> 20480 bytes ...ACAgeVerification.csproj.nuget.dgspec.json | 617 + ...ets.ACAgeVerification.csproj.nuget.g.props | 20 + ...s.ACAgeVerification.csproj.nuget.g.targets | 9 + ...idgets.NivoSlider.csproj.nuget.dgspec.json | 617 + ...in.Widgets.NivoSlider.csproj.nuget.g.props | 20 + ....Widgets.NivoSlider.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 13041 +++++++++++++++ .../obj/project.nuget.cache | 285 + .../plugin.json | 11 + .../AgeVerificationPlugin.cs | 36 + .../AgeVerificationViewComponent.cs | 14 + .../Controllers/AgeVerificationController.cs | 13 + .../Nop.Plugin.Widgets.AgeVerification.csproj | 48 + Nop.Plugin.Widgets.AgeVerification/Notes.txt | 33 + .../RouteProvider.cs | 20 + .../Views/AgeVerificationPopup.cshtml | 22 + Nop.Plugin.Widgets.AgeVerification/logo.png | Bin 0 -> 3351 bytes ...CoreApp,Version=v8.0.AssemblyAttributes.cs | 4 + .../Debug/net8.0/Nop.Plug.2B7CF5FF.Up2Date | 0 ...in.Widgets.AgeVerification.AssemblyInfo.cs | 25 + ...s.AgeVerification.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 13 + ....Widgets.AgeVerification.GlobalUsings.g.cs | 8 + ...lugin.Widgets.AgeVerification.assets.cache | Bin 0 -> 166791 bytes ...erification.csproj.AssemblyReference.cache | Bin 0 -> 66337 bytes ...Verification.csproj.BuildWithSkipAnalyzers | 0 ...erification.csproj.CoreCompileInputs.cache | 1 + ...geVerification.csproj.FileListAbsolute.txt | 627 + .../Nop.Plugin.Widgets.AgeVerification.dll | Bin 0 -> 10240 bytes .../Nop.Plugin.Widgets.AgeVerification.pdb | Bin 0 -> 27700 bytes .../obj/Debug/net8.0/project.razor.vs.bin | Bin 0 -> 456 bytes .../Nop.Plugin.Widgets.AgeVerification.dll | Bin 0 -> 7680 bytes .../Nop.Plugin.Widgets.AgeVerification.dll | Bin 0 -> 7680 bytes ...s.AgeVerification.csproj.nuget.dgspec.json | 533 + ...dgets.AgeVerification.csproj.nuget.g.props | 20 + ...ets.AgeVerification.csproj.nuget.g.targets | 9 + .../obj/project.assets.json | 13017 +++++++++++++++ .../obj/project.nuget.cache | 285 + .../plugin.json | 11 + 232 files changed, 84883 insertions(+) create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/.gitignore create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/Areas/Admin/Views/_ViewImports.cshtml create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/BillingoInvoicingDefaults.cs create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/BillingoInvoicingPlugin.cs create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/BillingoInvoicingSettings.cs create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/Controllers/BillingoInvoicingController.cs create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/Infrastructure/PluginNopStartup.cs create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/Infrastructure/RouteProvider.cs create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/Infrastructure/ViewLocationExpander.cs create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/LICENSE.txt create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/Models/ConfigurationModel.cs create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/Nop.Plugin.Misc.BillingoInvoicing.csproj create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/README.md create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/Services/BillingoClientService.cs create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/Services/BillingoEmailMessageService.cs create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/Services/InvoiceGenerator.cs create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/Views/Configure.cshtml create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/Views/_ViewImports.cshtml create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/logo.jpg create mode 100644 Nop.Plugin.Misc.BillingoInvoicing/plugin.json create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/Areas/Admin/Views/_ViewImports.cshtml create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/Components/CustomViewComponent.cs create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/Domains/CustomTable.cs create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/Infrastructure/PluginNopStartup.cs create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/Infrastructure/RouteProvider.cs create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/Infrastructure/ViewLocationExpander.cs create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/Mapping/Builders/PluginBuilder.cs create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/Mapping/NameCompatibility.cs create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/Migrations/SchemaMigration.cs create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/MyTestPlugin.cs create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/Nop.Plugin.Misc.MyTestPlugin1.csproj create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/Views/_ViewImports.cshtml create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/logo.jpg create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.AssemblyInfo.cs create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.AssemblyInfoInputs.cache create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.GlobalUsings.g.cs create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.assets.cache create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.csproj.AssemblyReference.cache create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/project.razor.vs.bin create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/Nop.Plugin.Misc.MyTestPlugin1.csproj.nuget.dgspec.json create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/Nop.Plugin.Misc.MyTestPlugin1.csproj.nuget.g.props create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/Nop.Plugin.Misc.MyTestPlugin1.csproj.nuget.g.targets create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/project.assets.json create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/obj/project.nuget.cache create mode 100644 Nop.Plugin.Misc.MyTestPlugin1/plugin.json create mode 100644 Nop.Plugin.Misc.SignalRApi/Areas/Admin/Views/_ViewImports.cshtml create mode 100644 Nop.Plugin.Misc.SignalRApi/Components/CustomViewComponent.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Controllers/SignalRApiAdminController.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Controllers/SignalRApiController.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Domains/CustomTable1.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Hubs/IMainHubClient.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Hubs/MainHub.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Infrastructure/PluginNopStartup.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Infrastructure/RouteProvider.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Infrastructure/ViewLocationExpander.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Mapping/Builders/PluginBuilder.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Mapping/NameCompatibility.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Migrations/SchemaMigration.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/MiscSignalRApiPlugin.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Models/ConfigurationModel.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Nop.Plugin.Misc.SignalRApi.csproj create mode 100644 Nop.Plugin.Misc.SignalRApi/Services/SignalRService.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/Views/Configure.cshtml create mode 100644 Nop.Plugin.Misc.SignalRApi/Views/_ViewImports.cshtml create mode 100644 Nop.Plugin.Misc.SignalRApi/logo.jpg create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plug.69C19CFB.Up2Date create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfo.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfoInputs.cache create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.GlobalUsings.g.cs create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.assets.cache create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.AssemblyReference.cache create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.BuildWithSkipAnalyzers create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.CoreCompileInputs.cache create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.FileListAbsolute.txt create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.dll create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.pdb create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/project.razor.vs.bin create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/ref/Nop.Plugin.Misc.SignalRApi.dll create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/refint/Nop.Plugin.Misc.SignalRApi.dll create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Nop.Plugin.Misc.SignalRApi.csproj.nuget.dgspec.json create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Nop.Plugin.Misc.SignalRApi.csproj.nuget.g.props create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/Nop.Plugin.Misc.SignalRApi.csproj.nuget.g.targets create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/project.assets.json create mode 100644 Nop.Plugin.Misc.SignalRApi/obj/project.nuget.cache create mode 100644 Nop.Plugin.Misc.SignalRApi/plugin.json create mode 100644 Nop.Plugin.Misc.TestPlugin/AgeVerificationPlugin.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/Areas/Admin/Views/_ViewImports.cshtml create mode 100644 Nop.Plugin.Misc.TestPlugin/Components/AgeVerificationViewComponent.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/Controllers/AgeVerificationController.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/Domains/CustomTable.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/Infrastructure/PluginNopStartup.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/Infrastructure/RouteProvider.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/Infrastructure/ViewLocationExpander.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/Mapping/Builders/PluginBuilder.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/Mapping/NameCompatibility.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/Migrations/SchemaMigration.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/Nop.Plugin.Misc.TestPlugin.csproj create mode 100644 Nop.Plugin.Misc.TestPlugin/Views/AgeVerificationPopup.cshtml create mode 100644 Nop.Plugin.Misc.TestPlugin/Views/_ViewImports.cshtml create mode 100644 Nop.Plugin.Misc.TestPlugin/logo.jpg create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plug.CB622A65.Up2Date create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.GlobalUsings.g.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.assets.cache create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.CoreCompileInputs.cache create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.FileListAbsolute.txt create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.dll create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.pdb create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/project.razor.vs.bin create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/ref/Nop.Plugin.Misc.TestPlugin.dll create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/refint/Nop.Plugin.Misc.TestPlugin.dll create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Nop.Plugin.Misc.TestPlugin.csproj.nuget.dgspec.json create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Nop.Plugin.Misc.TestPlugin.csproj.nuget.g.props create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Nop.Plugin.Misc.TestPlugin.csproj.nuget.g.targets create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.GlobalUsings.g.cs create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.assets.cache create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/project.assets.json create mode 100644 Nop.Plugin.Misc.TestPlugin/obj/project.nuget.cache create mode 100644 Nop.Plugin.Misc.TestPlugin/plugin.json create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Components/WidgetsACAgeVerificationViewComponent.cs create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/README create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/license.txt create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/nivo-slider.css create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/sample-images/banner_01.webp create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/sample-images/banner_02.webp create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/bar/arrows.png create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/bar/bar.css create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/bar/bullets.png create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/bar/loading.gif create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/arrows.png create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/bullets.png create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/custom.css create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/loading.gif create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/dark/arrows.png create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/dark/bullets.png create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/dark/dark.css create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/dark/loading.gif create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/default/arrows.png create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/default/bullets.png create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/default/default.css create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/default/loading.gif create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/light/arrows.png create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/light/bullets.png create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/light/light.css create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/light/loading.gif create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Controllers/WidgetsNivoSliderController.cs create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Infrastructure/Cache/ModelCacheEventConsumer.cs create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Models/ConfigurationModel.cs create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Models/PublicInfoModel.cs create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/NivoSliderPlugin.cs create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/NivoSliderSettings.cs create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Nop.Plugin.Widgets.ACAgeVerification.csproj create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Notes.txt create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Scripts/jquery.nivo.slider.js create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Views/Configure.cshtml create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Views/PublicInfo.cshtml create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Views/_PublicInfo.SliderLine.cshtml create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/Views/_ViewImports.cshtml create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/logo.jpg create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plug.BBDD4880.Up2Date create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.AssemblyInfo.cs create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.AssemblyInfoInputs.cache create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.GlobalUsings.g.cs create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.assets.cache create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.csproj.AssemblyReference.cache create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.csproj.CoreCompileInputs.cache create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.csproj.FileListAbsolute.txt create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.dll create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.pdb create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.AssemblyInfo.cs create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.AssemblyInfoInputs.cache create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.GlobalUsings.g.cs create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.assets.cache create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.csproj.AssemblyReference.cache create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/project.razor.vs.bin create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/ref/Nop.Plugin.Widgets.ACAgeVerification.dll create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/refint/Nop.Plugin.Widgets.ACAgeVerification.dll create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.ACAgeVerification.csproj.nuget.dgspec.json create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.ACAgeVerification.csproj.nuget.g.props create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.ACAgeVerification.csproj.nuget.g.targets create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.NivoSlider.csproj.nuget.dgspec.json create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.NivoSlider.csproj.nuget.g.props create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.NivoSlider.csproj.nuget.g.targets create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/project.assets.json create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/obj/project.nuget.cache create mode 100644 Nop.Plugin.Widgets.ACAgeVerification/plugin.json create mode 100644 Nop.Plugin.Widgets.AgeVerification/AgeVerificationPlugin.cs create mode 100644 Nop.Plugin.Widgets.AgeVerification/Components/AgeVerificationViewComponent.cs create mode 100644 Nop.Plugin.Widgets.AgeVerification/Controllers/AgeVerificationController.cs create mode 100644 Nop.Plugin.Widgets.AgeVerification/Nop.Plugin.Widgets.AgeVerification.csproj create mode 100644 Nop.Plugin.Widgets.AgeVerification/Notes.txt create mode 100644 Nop.Plugin.Widgets.AgeVerification/RouteProvider.cs create mode 100644 Nop.Plugin.Widgets.AgeVerification/Views/AgeVerificationPopup.cshtml create mode 100644 Nop.Plugin.Widgets.AgeVerification/logo.png create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plug.2B7CF5FF.Up2Date create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.AssemblyInfo.cs create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.AssemblyInfoInputs.cache create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.GlobalUsings.g.cs create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.assets.cache create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.csproj.AssemblyReference.cache create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.csproj.BuildWithSkipAnalyzers create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.csproj.CoreCompileInputs.cache create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.csproj.FileListAbsolute.txt create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.dll create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.pdb create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/project.razor.vs.bin create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/ref/Nop.Plugin.Widgets.AgeVerification.dll create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/refint/Nop.Plugin.Widgets.AgeVerification.dll create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Nop.Plugin.Widgets.AgeVerification.csproj.nuget.dgspec.json create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Nop.Plugin.Widgets.AgeVerification.csproj.nuget.g.props create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/Nop.Plugin.Widgets.AgeVerification.csproj.nuget.g.targets create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/project.assets.json create mode 100644 Nop.Plugin.Widgets.AgeVerification/obj/project.nuget.cache create mode 100644 Nop.Plugin.Widgets.AgeVerification/plugin.json diff --git a/Nop.Plugin.Misc.BillingoInvoicing/.gitignore b/Nop.Plugin.Misc.BillingoInvoicing/.gitignore new file mode 100644 index 0000000..b006957 --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/.gitignore @@ -0,0 +1,365 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Oo]ut/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd +*.cache +*.dll \ No newline at end of file diff --git a/Nop.Plugin.Misc.BillingoInvoicing/Areas/Admin/Views/_ViewImports.cshtml b/Nop.Plugin.Misc.BillingoInvoicing/Areas/Admin/Views/_ViewImports.cshtml new file mode 100644 index 0000000..270744e --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/Areas/Admin/Views/_ViewImports.cshtml @@ -0,0 +1,10 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework + +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Nop.Web.Framework.UI +@using Nop.Web.Framework.Extensions +@using System.Text.Encodings.Web +@using Nop.Services.Events +@using Nop.Web.Framework.Events \ No newline at end of file diff --git a/Nop.Plugin.Misc.BillingoInvoicing/BillingoInvoicingDefaults.cs b/Nop.Plugin.Misc.BillingoInvoicing/BillingoInvoicingDefaults.cs new file mode 100644 index 0000000..bd31d84 --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/BillingoInvoicingDefaults.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Nop.Plugin.Misc.BillingoInvoicing +{ + public class BillingoInvoicingDefaults + { + /// + /// Gets the configuration route name + /// + public static string ConfigurationRouteName => "Plugin.Misc.BillingoInvoicing.Configure"; + } +} diff --git a/Nop.Plugin.Misc.BillingoInvoicing/BillingoInvoicingPlugin.cs b/Nop.Plugin.Misc.BillingoInvoicing/BillingoInvoicingPlugin.cs new file mode 100644 index 0000000..cf18f3b --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/BillingoInvoicingPlugin.cs @@ -0,0 +1,72 @@ +using System.Collections.Generic; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.Infrastructure; +using Microsoft.AspNetCore.Mvc.Routing; +using Nop.Services.Cms; +using Nop.Services.Common; +using Nop.Services.Configuration; +using Nop.Services.Localization; +using Nop.Services.Plugins; +using Nop.Web.Framework.Infrastructure; + +namespace Nop.Plugin.Misc.BillingoInvoicing +{ + /// + /// Rename this file and change to the correct type + /// + public class BillingoInvoicingPlugin : BasePlugin, IMiscPlugin + { + private readonly ISettingService _settingService; + private readonly IActionContextAccessor _actionContextAccessor; + private readonly IUrlHelperFactory _urlHelperFactory; + private readonly ILocalizationService _localizationService; + + public BillingoInvoicingPlugin(ISettingService settingService, + IActionContextAccessor actionContextAccessor, + IUrlHelperFactory urlHelperFactory, + ILocalizationService localizationService) + { + _settingService = settingService; + _actionContextAccessor = actionContextAccessor; + _urlHelperFactory = urlHelperFactory; + _localizationService = localizationService; + } + + public override async Task InstallAsync() + { + // settings + await _settingService.SaveSettingAsync(new BillingoInvoicingSettings + { + ApiKey = "YOUR_API_KEY" + }); + + //locales + await _localizationService.AddOrUpdateLocaleResourceAsync(new Dictionary + { + ["Plugins.Misc.BillingoInvoicing.Title"] = "Billingo számlázás", + ["Plugins.Misc.BillingoInvoicing.Fields.ApiKey"] = "Billingo V3 API kulcs", + ["Plugins.Misc.BillingoInvoicing.Fields.ApiKey.Hint"] = "app.billingo.hu - Összeköttetések - API", + ["Plugins.Misc.BillingoInvoicing.Fields.BlockId"] = "Billingo számlatömb id", + ["Plugins.Misc.BillingoInvoicing.Fields.BlockId.Hint"] = "app.billingo.hu - Beállítások - Bizonylat beállítások - Bizonylattömbök - API ID", + }); + + await base.InstallAsync(); + } + + public override async Task UninstallAsync() + { + await _settingService.DeleteSettingAsync(); + + await base.UninstallAsync(); + } + + /// + /// Gets a configuration page URL + /// + public override string GetConfigurationPageUrl() + { + return _urlHelperFactory.GetUrlHelper(_actionContextAccessor.ActionContext).RouteUrl(BillingoInvoicingDefaults.ConfigurationRouteName); + } + } +} diff --git a/Nop.Plugin.Misc.BillingoInvoicing/BillingoInvoicingSettings.cs b/Nop.Plugin.Misc.BillingoInvoicing/BillingoInvoicingSettings.cs new file mode 100644 index 0000000..5e913fd --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/BillingoInvoicingSettings.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Nop.Core.Configuration; + +namespace Nop.Plugin.Misc.BillingoInvoicing +{ + public class BillingoInvoicingSettings : ISettings + { + public string ApiKey { get; set; } + public int BlockId { get; set; } + } +} diff --git a/Nop.Plugin.Misc.BillingoInvoicing/Controllers/BillingoInvoicingController.cs b/Nop.Plugin.Misc.BillingoInvoicing/Controllers/BillingoInvoicingController.cs new file mode 100644 index 0000000..2acdd51 --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/Controllers/BillingoInvoicingController.cs @@ -0,0 +1,81 @@ +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Nop.Core; +using Nop.Plugin.Misc.BillingoInvoicing.Models; +using Nop.Services.Configuration; +using Nop.Services.Localization; +using Nop.Services.Messages; +using Nop.Services.Security; +using Nop.Web.Framework; +using Nop.Web.Framework.Controllers; +using Nop.Web.Framework.Mvc.Filters; + +namespace Nop.Plugin.Misc.BillingoInvoicing.Controllers +{ + [Area(AreaNames.ADMIN)] + [AutoValidateAntiforgeryToken] + [AuthorizeAdmin] + public class BillingoInvoicingController : BasePluginController + { + private readonly ISettingService _settingService; + private readonly IStoreContext _storeContext; + private readonly INotificationService _notificationService; + private readonly ILocalizationService _localizationService; + private readonly IPermissionService _permissionService; + + public BillingoInvoicingController( + ISettingService settingService, + IStoreContext storeContext, + INotificationService notificationService, + ILocalizationService localizationService, + IPermissionService permissionService) + { + _settingService = settingService; + _storeContext = storeContext; + _notificationService = notificationService; + _localizationService = localizationService; + _permissionService = permissionService; + } + + public async Task Configure() + { + if (!await _permissionService.AuthorizeAsync(StandardPermissionProvider.ManageWidgets)) + return AccessDeniedView(); + + var storeId = await _storeContext.GetActiveStoreScopeConfigurationAsync(); + var settings = await _settingService.LoadSettingAsync(storeId); + + var model = new ConfigurationModel() + { + ApiKey = settings.ApiKey, + BlockId = settings.BlockId + }; + + return View("~/Plugins/Misc.BillingoInvoicing/Views/Configure.cshtml", model); + } + + [HttpPost, ActionName("Configure")] + [FormValueRequired("save")] + public async Task Configure(ConfigurationModel model) + { + if (!await _permissionService.AuthorizeAsync(StandardPermissionProvider.ManageWidgets)) + return AccessDeniedView(); + + var storeId = await _storeContext.GetActiveStoreScopeConfigurationAsync(); + var settings = await _settingService.LoadSettingAsync(storeId); + + //set new settings values + settings.ApiKey = model.ApiKey; + settings.BlockId = model.BlockId; + + await _settingService.SaveSettingOverridablePerStoreAsync(settings, setting => setting.ApiKey, true, storeId, false); + await _settingService.SaveSettingOverridablePerStoreAsync(settings, setting => setting.BlockId, true, storeId, false); + + await _settingService.ClearCacheAsync(); + + _notificationService.SuccessNotification(await _localizationService.GetResourceAsync("Admin.Plugins.Saved")); + + return await Configure(); + } + } +} diff --git a/Nop.Plugin.Misc.BillingoInvoicing/Infrastructure/PluginNopStartup.cs b/Nop.Plugin.Misc.BillingoInvoicing/Infrastructure/PluginNopStartup.cs new file mode 100644 index 0000000..e670cb8 --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/Infrastructure/PluginNopStartup.cs @@ -0,0 +1,30 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Mvc.Razor; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Nop.Core.Infrastructure; +using Nop.Plugin.Misc.BillingoInvoicing.Services; + +namespace Nop.Plugin.Misc.BillingoInvoicing.Infrastructure +{ + public class PluginNopStartup : INopStartup + { + public void ConfigureServices(IServiceCollection services, IConfiguration configuration) + { + services.Configure(options => + { + options.ViewLocationExpanders.Add(new ViewLocationExpander()); + }); + + //register services and interfaces + services.AddScoped(); + services.AddScoped(); + } + + public void Configure(IApplicationBuilder application) + { + } + + public int Order => 11; + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.BillingoInvoicing/Infrastructure/RouteProvider.cs b/Nop.Plugin.Misc.BillingoInvoicing/Infrastructure/RouteProvider.cs new file mode 100644 index 0000000..a821465 --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/Infrastructure/RouteProvider.cs @@ -0,0 +1,29 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Routing; +using Nop.Web.Framework.Mvc.Routing; + +namespace Nop.Plugin.Misc.BillingoInvoicing.Infrastructure +{ + + /// + /// Represents plugin route provider + /// + public class RouteProvider : IRouteProvider + { + /// + /// Register routes + /// + /// Route builder + public void RegisterRoutes(IEndpointRouteBuilder endpointRouteBuilder) + { + endpointRouteBuilder.MapControllerRoute(BillingoInvoicingDefaults.ConfigurationRouteName, + "Admin/BillingoInvoicing/Configure", + new { controller = "BillingoInvoicing", action = "Configure" }); + } + + /// + /// Gets a priority of route provider + /// + public int Priority => 0; + } +} diff --git a/Nop.Plugin.Misc.BillingoInvoicing/Infrastructure/ViewLocationExpander.cs b/Nop.Plugin.Misc.BillingoInvoicing/Infrastructure/ViewLocationExpander.cs new file mode 100644 index 0000000..6462722 --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/Infrastructure/ViewLocationExpander.cs @@ -0,0 +1,27 @@ +using System.Collections.Generic; +using System.Linq; +using Microsoft.AspNetCore.Mvc.Razor; + +namespace Nop.Plugin.Misc.BillingoInvoicing.Infrastructure +{ + public class ViewLocationExpander : IViewLocationExpander + { + public void PopulateValues(ViewLocationExpanderContext context) + { + } + + public IEnumerable ExpandViewLocations(ViewLocationExpanderContext context, IEnumerable viewLocations) + { + if (context.AreaName == "Admin") + { + viewLocations = new[] { $"/Plugins/Nop.Plugin.Misc.BillingoInvoicing/Areas/Admin/Views/{context.ControllerName}/{context.ViewName}.cshtml" }.Concat(viewLocations); + } + else + { + viewLocations = new[] { $"/Plugins/Nop.Plugin.Misc.BillingoInvoicing/Views/{context.ControllerName}/{context.ViewName}.cshtml" }.Concat(viewLocations); + } + + return viewLocations; + } + } +} diff --git a/Nop.Plugin.Misc.BillingoInvoicing/LICENSE.txt b/Nop.Plugin.Misc.BillingoInvoicing/LICENSE.txt new file mode 100644 index 0000000..8aa2645 --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) [year] [fullname] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Nop.Plugin.Misc.BillingoInvoicing/Models/ConfigurationModel.cs b/Nop.Plugin.Misc.BillingoInvoicing/Models/ConfigurationModel.cs new file mode 100644 index 0000000..029c12a --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/Models/ConfigurationModel.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Nop.Web.Framework.Models; +using Nop.Web.Framework.Mvc.ModelBinding; + +namespace Nop.Plugin.Misc.BillingoInvoicing.Models +{ + public record ConfigurationModel : BaseNopModel + { + [NopResourceDisplayName("Plugins.Misc.BillingoInvoicing.Fields.ApiKey")] + public string ApiKey { get; set; } + [NopResourceDisplayName("Plugins.Misc.BillingoInvoicing.Fields.BlockId")] + public int BlockId { get; set; } + } +} diff --git a/Nop.Plugin.Misc.BillingoInvoicing/Nop.Plugin.Misc.BillingoInvoicing.csproj b/Nop.Plugin.Misc.BillingoInvoicing/Nop.Plugin.Misc.BillingoInvoicing.csproj new file mode 100644 index 0000000..9a536ed --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/Nop.Plugin.Misc.BillingoInvoicing.csproj @@ -0,0 +1,46 @@ + + + + net8.0 + ..\..\..\..\NopCommerce\Presentation\Nop.Web\Plugins\Misc.BillingoInvoicing + $(OutputPath) + + false + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + + + + + + + + + + + diff --git a/Nop.Plugin.Misc.BillingoInvoicing/README.md b/Nop.Plugin.Misc.BillingoInvoicing/README.md new file mode 100644 index 0000000..80591fa --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/README.md @@ -0,0 +1,35 @@ +### Billingo Invoicing Automatically +NopCommerce plugin + +## Short description +With the Billingo Invoicing plugin you can create invoices automatically using Billingo. The extension creates and sends the invoice to the user after payment. + +## Full description +Billingo is a well-known financial tool in Hungary. It has many useful services, the Billingo Invoicing extension uses the invoice generation part of them. You can configure Billingo to synchronize with NAV (as it is compulsory in Hungary).
+You'll need the "API és tömeges számlagenerálás kiegészítő" subscription to make the plugin working.
+The Billingo Invoicing plugin can create an invoice for you automatically after every payment in your nopCommerce store. + +

Features

+
    +
  • Easy configuration in the admin area
  • +
  • Generate invoice automatically after every payment
  • +
  • The invoice includes the concrete items and quantities
  • +
  • Sending the invoice in email through Billingo
  • +
+ +NO WARRANTY, use at your own risk! You can find the source code below.
+ +On the configuration page, the language is Hungarian because Billingo operates in Hungary. +You should only use PayPal payment with this extension. + +

Installation instructions:

+
    +
  1. Download the plugin archive.
  2. +
  3. Go to admin area > configuration > local plugins.
  4. +Upload the plugin archive using the "Upload plugin or theme" plugin. +
  5. Scroll down through the list of plugins to find the newly installed plugin. Click on the "Install" button to install the plugin.
  6. +
  7. Please find more information about how to install plugins here.
  8. +
+ +

Source code

+The plugin is provided absolutely for free and includes source code. Find the project's GitHub repository here. \ No newline at end of file diff --git a/Nop.Plugin.Misc.BillingoInvoicing/Services/BillingoClientService.cs b/Nop.Plugin.Misc.BillingoInvoicing/Services/BillingoClientService.cs new file mode 100644 index 0000000..16ade60 --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/Services/BillingoClientService.cs @@ -0,0 +1,13556 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.Http; +using System.Text; +using System.Text.Json; +using System.Text.Json.Serialization; +using System.Threading.Tasks; +using Nop.Core; +using Nop.Services.Configuration; + +//---------------------- +// +// Generated using the NSwag toolchain v13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org) +// +//---------------------- + +#pragma warning disable 108 // Disable "CS0108 '{derivedDto}.ToJson()' hides inherited member '{dtoBase}.ToJson()'. Use the new keyword if hiding was intended." +#pragma warning disable 114 // Disable "CS0114 '{derivedDto}.RaisePropertyChanged(String)' hides inherited member 'dtoBase.RaisePropertyChanged(String)'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword." +#pragma warning disable 472 // Disable "CS0472 The result of the expression is always 'false' since a value of type 'Int32' is never equal to 'null' of type 'Int32?' +#pragma warning disable 612 // Disable "CS0612 '...' is obsolete" +#pragma warning disable 1573 // Disable "CS1573 Parameter '...' has no matching param tag in the XML comment for ... +#pragma warning disable 1591 // Disable "CS1591 Missing XML comment for publicly visible type or member ..." +#pragma warning disable 8073 // Disable "CS8073 The result of the expression is always 'false' since a value of type 'T' is never equal to 'null' of type 'T?'" +#pragma warning disable 3016 // Disable "CS3016 Arrays as attribute arguments is not CLS-compliant" +#pragma warning disable 8603 // Disable "CS8603 Possible null reference return" +#pragma warning disable 8604 // Disable "CS8604 Possible null reference argument for parameter" + + +namespace Nop.Plugin.Misc.BillingoInvoicing.Services +{ + using System = global::System; + + using System; + using System.Text.Json; + using System.Text.Json.Serialization; + + //public class CamelCaseStringEnumConverter : JsonConverter + //{ + // private readonly JsonNamingPolicy _namingPolicy = JsonNamingPolicy.CamelCase; + + // public override Enum Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + // { + // // Use the base behavior to read as string + // string enumString = reader.GetString(); + + // // Parse the string back to the enum type + // if (Enum.TryParse(typeToConvert, enumString, ignoreCase: true, out var enumValue)) + // { + // return (Enum)enumValue; + // } + + // throw new JsonException($"Unable to parse \"{enumString}\" as enum of type {typeToConvert.Name}."); + // } + + // public override void Write(Utf8JsonWriter writer, Enum value, JsonSerializerOptions options) + // { + // string original = value.ToString(); + // string converted = _namingPolicy.ConvertName(original); + // writer.WriteStringValue(converted); + // } + //} + + + + + [System.CodeDom.Compiler.GeneratedCode("NSwag", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class BillingoClientService + { + private string _baseUrl = "https://api.billingo.hu/v3"; + private System.Net.Http.HttpClient _httpClient; + private System.Lazy _settings; + private IStoreContext _storeContext; + private ISettingService _settingService; + + public BillingoClientService(System.Net.Http.HttpClient httpClient, + IStoreContext storeContext, + ISettingService settingService) + { + _httpClient = httpClient; + _settings = new System.Lazy(CreateSerializerSettings, true); + _storeContext = storeContext; + _settingService = settingService; + } + + private System.Text.Json.JsonSerializerOptions CreateSerializerSettings() + { + var settings = new System.Text.Json.JsonSerializerOptions() + { + PropertyNamingPolicy = JsonNamingPolicy.CamelCase, + Converters = + { + new JsonStringEnumConverter(JsonNamingPolicy.CamelCase) + } + + }; + UpdateJsonSerializerSettings(settings); + return settings; + } + + public string BaseUrl + { + get { return _baseUrl; } + set { _baseUrl = value; } + } + + protected System.Text.Json.JsonSerializerOptions JsonSerializerSettings { get { return _settings.Value; } } + + partial void UpdateJsonSerializerSettings(System.Text.Json.JsonSerializerOptions settings); + + partial void PrepareRequest(System.Net.Http.HttpClient client, System.Net.Http.HttpRequestMessage request, string url); + partial void PrepareRequest(System.Net.Http.HttpClient client, System.Net.Http.HttpRequestMessage request, System.Text.StringBuilder urlBuilder); + partial void ProcessResponse(System.Net.Http.HttpClient client, System.Net.Http.HttpResponseMessage response); + + /// + /// List all bank account + /// + /// + /// Returns a list of your bank accounts. The bank accounts are returned sorted by creation date, with the most recent bank account appearing first. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task ListBankAccountAsync(int? page, int? per_page) + { + return ListBankAccountAsync(page, per_page, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// List all bank account + /// + /// + /// Returns a list of your bank accounts. The bank accounts are returned sorted by creation date, with the most recent bank account appearing first. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task ListBankAccountAsync(int? page, int? per_page, System.Threading.CancellationToken cancellationToken) + { + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/bank-accounts?"); + if (page != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("page") + "=").Append(System.Uri.EscapeDataString(ConvertToString(page, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (per_page != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("per_page") + "=").Append(System.Uri.EscapeDataString(ConvertToString(per_page, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + urlBuilder_.Length--; + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Create a bank account + /// + /// + /// Create a new bank account. Returns a bank account object if the create is succeded. + /// + /// BankAccount object that you would like to store. + /// BankAccount created successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task CreateBankAccountAsync(BankAccount body) + { + return CreateBankAccountAsync(body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Create a bank account + /// + /// + /// Create a new bank account. Returns a bank account object if the create is succeded. + /// + /// BankAccount object that you would like to store. + /// BankAccount created successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task CreateBankAccountAsync(BankAccount body, System.Threading.CancellationToken cancellationToken) + { + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/bank-accounts"); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("POST"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 201) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Retrieve a bank account + /// + /// + /// Retrieves the details of an existing bank account. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task GetBankAccountAsync(int id) + { + return GetBankAccountAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Retrieve a bank account + /// + /// + /// Retrieves the details of an existing bank account. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task GetBankAccountAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/bank-accounts/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Update a bank account + /// + /// + /// Update an existing bank accounts. Returns a bank account object if the update is succeded. + /// + /// Bank account object that you would like to update. + /// Bank account updated successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task UpdateBankAccountAsync(int id, BankAccount body) + { + return UpdateBankAccountAsync(id, body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Update a bank account + /// + /// + /// Update an existing bank accounts. Returns a bank account object if the update is succeded. + /// + /// Bank account object that you would like to update. + /// Bank account updated successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task UpdateBankAccountAsync(int id, BankAccount body, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/bank-accounts/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("PUT"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Delete a bank account + /// + /// + /// Delete an existing bank account. + /// + /// Bank account deleted successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task DeleteBankAccountAsync(int id) + { + return DeleteBankAccountAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Delete a bank account + /// + /// + /// Delete an existing bank account. + /// + /// Bank account deleted successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task DeleteBankAccountAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/bank-accounts/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("DELETE"); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 204) + { + return; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Get currencies exchange rate. + /// + /// + /// Return with the exchange value of given currencies. + /// + /// Currencies exchange rate returned. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task GetConversionRateAsync(Currency from, Currency to, System.DateTimeOffset? date) + { + return GetConversionRateAsync(from, to, date, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Get currencies exchange rate. + /// + /// + /// Return with the exchange value of given currencies. + /// + /// Currencies exchange rate returned. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task GetConversionRateAsync(Currency from, Currency to, System.DateTimeOffset? date, System.Threading.CancellationToken cancellationToken) + { + if (from == null) + throw new System.ArgumentNullException("from"); + + if (to == null) + throw new System.ArgumentNullException("to"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/currencies?"); + urlBuilder_.Append(System.Uri.EscapeDataString("from") + "=").Append(System.Uri.EscapeDataString(ConvertToString(from, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + urlBuilder_.Append(System.Uri.EscapeDataString("to") + "=").Append(System.Uri.EscapeDataString(ConvertToString(to, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + if (date != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("date") + "=").Append(System.Uri.EscapeDataString(date.Value.ToString("yyyy-MM-dd", System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + urlBuilder_.Length--; + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// List all document blocks + /// + /// + /// Returns a list of your document blocks. The document blocks are returned sorted by creation date, with the most recent document blocks appearing first. + /// + /// Filter document blocks by type + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task ListDocumentBlockAsync(int? page, int? per_page, DocumentBlockType? type) + { + return ListDocumentBlockAsync(page, per_page, type, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// List all document blocks + /// + /// + /// Returns a list of your document blocks. The document blocks are returned sorted by creation date, with the most recent document blocks appearing first. + /// + /// Filter document blocks by type + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task ListDocumentBlockAsync(int? page, int? per_page, DocumentBlockType? type, System.Threading.CancellationToken cancellationToken) + { + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/document-blocks?"); + if (page != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("page") + "=").Append(System.Uri.EscapeDataString(ConvertToString(page, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (per_page != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("per_page") + "=").Append(System.Uri.EscapeDataString(ConvertToString(per_page, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (type != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("type") + "=").Append(System.Uri.EscapeDataString(ConvertToString(type, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + urlBuilder_.Length--; + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Create document export. + /// + /// + /// Return with the id of the export. + /// + /// Create document export body. + /// Export job ID returned. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task CreateAsync(CreateDocumentExport body) + { + return CreateAsync(body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Create document export. + /// + /// + /// Return with the id of the export. + /// + /// Create document export body. + /// Export job ID returned. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task CreateAsync(CreateDocumentExport body, System.Threading.CancellationToken cancellationToken) + { + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/document-export"); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("POST"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 201) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Return exported binary file. + /// + /// + /// Return the exported file. + /// + /// The ID from create document export endpoint. + /// Document export file. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task DownloadAsync(string id) + { + return DownloadAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Return exported binary file. + /// + /// + /// Return the exported file. + /// + /// The ID from create document export endpoint. + /// Document export file. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task DownloadAsync(string id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/document-export/{id}/download"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/*")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200 || status_ == 206) + { + var responseStream_ = response_.Content == null ? System.IO.Stream.Null : await response_.Content.ReadAsStreamAsync().ConfigureAwait(false); + var fileResponse_ = new FileResponse(status_, headers_, responseStream_, null, response_); + disposeClient_ = false; + disposeResponse_ = false; // response and client are disposed by FileResponse + return fileResponse_; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Retrieve export state. + /// + /// + /// Return state of the given export. + /// + /// The ID from create document export endpoint. + /// Export job status returned. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task PollAsync(string id) + { + return PollAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Retrieve export state. + /// + /// + /// Return state of the given export. + /// + /// The ID from create document export endpoint. + /// Export job status returned. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task PollAsync(string id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/document-export/{id}/poll"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// List all documents + /// + /// + /// Returns a list of your documents. The documents are returned sorted by creation date, with the most recent documents appearing first. + /// + /// Filter documents by the identifier of your DocumentBlock. + /// Filter documents by the identifier of your Partner. + /// Filter documents by PaymentMethod value. + /// Filter documents by PaymentStatus value. + /// Filter documents by their invoice date. + /// Filter documents by their invoice date. + /// Starting number of the document, should not contain year or any other formatting. Required if `start_year` given + /// Ending number of the document, should not contain year or any other formatting. Required if `end_year` given + /// Year for `start_number` parameter. Required if `start_number` given. + /// Year for `end_number` parameter. Required if `end_number` given. + /// Filter documents by type + /// Filter documents by the given text + /// Filter documents by their payment date. + /// Filter documents by their payment date. + /// Filter documents by their fulfillment date. + /// Filter documents by their fulfillment date. + /// Filter documents by their last modified date. + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task ListDocumentAsync(int? page, int? per_page, int? block_id, int? partner_id, PaymentMethod? payment_method, PaymentStatus? payment_status, System.DateTimeOffset? start_date, System.DateTimeOffset? end_date, int? start_number, int? end_number, int? start_year, int? end_year, DocumentType? type, string query, System.DateTimeOffset? paid_start_date, System.DateTimeOffset? paid_end_date, System.DateTimeOffset? fulfillment_start_date, System.DateTimeOffset? fulfillment_end_date, string last_modified_date) + { + return ListDocumentAsync(page, per_page, block_id, partner_id, payment_method, payment_status, start_date, end_date, start_number, end_number, start_year, end_year, type, query, paid_start_date, paid_end_date, fulfillment_start_date, fulfillment_end_date, last_modified_date, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// List all documents + /// + /// + /// Returns a list of your documents. The documents are returned sorted by creation date, with the most recent documents appearing first. + /// + /// Filter documents by the identifier of your DocumentBlock. + /// Filter documents by the identifier of your Partner. + /// Filter documents by PaymentMethod value. + /// Filter documents by PaymentStatus value. + /// Filter documents by their invoice date. + /// Filter documents by their invoice date. + /// Starting number of the document, should not contain year or any other formatting. Required if `start_year` given + /// Ending number of the document, should not contain year or any other formatting. Required if `end_year` given + /// Year for `start_number` parameter. Required if `start_number` given. + /// Year for `end_number` parameter. Required if `end_number` given. + /// Filter documents by type + /// Filter documents by the given text + /// Filter documents by their payment date. + /// Filter documents by their payment date. + /// Filter documents by their fulfillment date. + /// Filter documents by their fulfillment date. + /// Filter documents by their last modified date. + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task ListDocumentAsync(int? page, int? per_page, int? block_id, int? partner_id, PaymentMethod? payment_method, PaymentStatus? payment_status, System.DateTimeOffset? start_date, System.DateTimeOffset? end_date, int? start_number, int? end_number, int? start_year, int? end_year, DocumentType? type, string query, System.DateTimeOffset? paid_start_date, System.DateTimeOffset? paid_end_date, System.DateTimeOffset? fulfillment_start_date, System.DateTimeOffset? fulfillment_end_date, string last_modified_date, System.Threading.CancellationToken cancellationToken) + { + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents?"); + if (page != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("page") + "=").Append(System.Uri.EscapeDataString(ConvertToString(page, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (per_page != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("per_page") + "=").Append(System.Uri.EscapeDataString(ConvertToString(per_page, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (block_id != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("block_id") + "=").Append(System.Uri.EscapeDataString(ConvertToString(block_id, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (partner_id != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("partner_id") + "=").Append(System.Uri.EscapeDataString(ConvertToString(partner_id, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (payment_method != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("payment_method") + "=").Append(System.Uri.EscapeDataString(ConvertToString(payment_method, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (payment_status != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("payment_status") + "=").Append(System.Uri.EscapeDataString(ConvertToString(payment_status, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (start_date != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("start_date") + "=").Append(System.Uri.EscapeDataString(start_date.Value.ToString("yyyy-MM-dd", System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (end_date != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("end_date") + "=").Append(System.Uri.EscapeDataString(end_date.Value.ToString("yyyy-MM-dd", System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (start_number != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("start_number") + "=").Append(System.Uri.EscapeDataString(ConvertToString(start_number, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (end_number != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("end_number") + "=").Append(System.Uri.EscapeDataString(ConvertToString(end_number, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (start_year != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("start_year") + "=").Append(System.Uri.EscapeDataString(ConvertToString(start_year, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (end_year != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("end_year") + "=").Append(System.Uri.EscapeDataString(ConvertToString(end_year, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (type != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("type") + "=").Append(System.Uri.EscapeDataString(ConvertToString(type, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (query != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("query") + "=").Append(System.Uri.EscapeDataString(ConvertToString(query, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (paid_start_date != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("paid_start_date") + "=").Append(System.Uri.EscapeDataString(paid_start_date.Value.ToString("yyyy-MM-dd", System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (paid_end_date != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("paid_end_date") + "=").Append(System.Uri.EscapeDataString(paid_end_date.Value.ToString("yyyy-MM-dd", System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (fulfillment_start_date != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("fulfillment_start_date") + "=").Append(System.Uri.EscapeDataString(fulfillment_start_date.Value.ToString("yyyy-MM-dd", System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (fulfillment_end_date != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("fulfillment_end_date") + "=").Append(System.Uri.EscapeDataString(fulfillment_end_date.Value.ToString("yyyy-MM-dd", System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (last_modified_date != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("last_modified_date") + "=").Append(System.Uri.EscapeDataString(ConvertToString(last_modified_date, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + urlBuilder_.Length--; + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Create a document + /// + /// + /// Create a new document. Returns a document object if the create is succeded. + /// + /// DocumentInsert object that you would like to store. + /// Document created successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task CreateDocumentAsync(DocumentInsert body) + { + return CreateDocumentAsync(body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Create a document + /// + /// + /// Create a new document. Returns a document object if the create is succeded. + /// + /// DocumentInsert object that you would like to store. + /// Document created successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task CreateDocumentAsync(DocumentInsert body, System.Threading.CancellationToken cancellationToken) + { + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents"); + + var client_ = _httpClient; + await AddApiKeyToHeader(client_); + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + Console.WriteLine(json_); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("POST"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + Console.WriteLine(response_); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 201) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + private async Task AddApiKeyToHeader(HttpClient client_) + { + var storeId = await _storeContext.GetActiveStoreScopeConfigurationAsync(); + var settings = await _settingService.LoadSettingAsync(storeId); + client_.DefaultRequestHeaders.Where(s => s.Key == "X-API-KEY").ToList().ForEach(f => client_.DefaultRequestHeaders.Remove(f.Key)); + client_.DefaultRequestHeaders.Add("X-API-KEY", settings.ApiKey); + } + + /// + /// Create a receipt + /// + /// + /// Create a new receipt. Returns a document object if the create is succeded. + /// + /// ReceiptInsert object that you would like to store. + /// Receipt created successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task CreateReceiptAsync(ReceiptInsert body) + { + return CreateReceiptAsync(body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Create a receipt + /// + /// + /// Create a new receipt. Returns a document object if the create is succeded. + /// + /// ReceiptInsert object that you would like to store. + /// Receipt created successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task CreateReceiptAsync(ReceiptInsert body, System.Threading.CancellationToken cancellationToken) + { + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/receipt"); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("POST"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 201) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Converts a draft to a receipt. + /// + /// + /// Converts a draft to a receipt. Returns the receipt object if the convert is succeded. + /// + /// ReceiptInsert object that you would like to store. + /// Draft converted successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task CreateReceiptFromDraftAsync(int id, ReceiptInsert body) + { + return CreateReceiptFromDraftAsync(id, body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Converts a draft to a receipt. + /// + /// + /// Converts a draft to a receipt. Returns the receipt object if the convert is succeded. + /// + /// ReceiptInsert object that you would like to store. + /// Draft converted successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task CreateReceiptFromDraftAsync(int id, ReceiptInsert body, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/receipt/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("PUT"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Retrieve a document by vendor id + /// + /// + /// Retrieves the details of an existing document by vendor id. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task GetDocumentByVendorIdAsync(string vendor_id) + { + return GetDocumentByVendorIdAsync(vendor_id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Retrieve a document by vendor id + /// + /// + /// Retrieves the details of an existing document by vendor id. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task GetDocumentByVendorIdAsync(string vendor_id, System.Threading.CancellationToken cancellationToken) + { + if (vendor_id == null) + throw new System.ArgumentNullException("vendor_id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/vendor/{vendor_id}"); + urlBuilder_.Replace("{vendor_id}", System.Uri.EscapeDataString(ConvertToString(vendor_id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Retrieve a document + /// + /// + /// Retrieves the details of an existing document. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task GetDocumentAsync(int id) + { + return GetDocumentAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Retrieve a document + /// + /// + /// Retrieves the details of an existing document. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task GetDocumentAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Converts a draft to an invoice. + /// + /// + /// Converts a draft to an invoice. Returns the invoice object if the convert is succeded. + /// + /// DocumentInsert object that you would like to store. + /// Draft converted successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task CreateDocumentFromDraftAsync(int id, DocumentInsert body) + { + return CreateDocumentFromDraftAsync(id, body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Converts a draft to an invoice. + /// + /// + /// Converts a draft to an invoice. Returns the invoice object if the convert is succeded. + /// + /// DocumentInsert object that you would like to store. + /// Draft converted successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task CreateDocumentFromDraftAsync(int id, DocumentInsert body, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("PUT"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Delete a draft. + /// + /// + /// Delete an existing draft. + /// + /// Draft deleted successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task DeleteDocumentAsync(int id) + { + return DeleteDocumentAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Delete a draft. + /// + /// + /// Delete an existing draft. + /// + /// Draft deleted successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task DeleteDocumentAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("DELETE"); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 204) + { + return; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Archive a proforma document. + /// + /// + /// Archive an existing proforma document. + /// + /// Document archived successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task ArchiveDocumentAsync(int id) + { + return ArchiveDocumentAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Archive a proforma document. + /// + /// + /// Archive an existing proforma document. + /// + /// Document archived successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task ArchiveDocumentAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/archive"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Content = new System.Net.Http.StringContent(string.Empty, System.Text.Encoding.UTF8, "application/json"); + request_.Method = new System.Net.Http.HttpMethod("PUT"); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 204) + { + return; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Cancel a document + /// + /// + /// Cancel a document. Returns a cancellation document object if the cancellation is succeded. + /// + /// Comment and notifiable email addresses - comma separated for multiple email addresses + /// Document cancellation successfully. Cancel document returned. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task CancelDocumentAsync(int id, DocumentCancellation body) + { + return CancelDocumentAsync(id, body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Cancel a document + /// + /// + /// Cancel a document. Returns a cancellation document object if the cancellation is succeded. + /// + /// Comment and notifiable email addresses - comma separated for multiple email addresses + /// Document cancellation successfully. Cancel document returned. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task CancelDocumentAsync(int id, DocumentCancellation body, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/cancel"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("POST"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Copy a document + /// + /// + /// Copy a document. Returns the new document if the copy was succeded. + /// + /// Document copied successfully. The created document returned. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task DocumentCopyAsync(int id) + { + return DocumentCopyAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Copy a document + /// + /// + /// Copy a document. Returns the new document if the copy was succeded. + /// + /// Document copied successfully. The created document returned. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task DocumentCopyAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/copy"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Content = new System.Net.Http.StringContent(string.Empty, System.Text.Encoding.UTF8, "application/json"); + request_.Method = new System.Net.Http.HttpMethod("POST"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Create a document from proforma. + /// + /// + /// Create a new document from proforma. Returns a document object if the create is succeded. + /// + /// InvoiceSettings object. + /// Document created successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task CreateDocumentFromProformaAsync(int id, InvoiceSettings body) + { + return CreateDocumentFromProformaAsync(id, body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Create a document from proforma. + /// + /// + /// Create a new document from proforma. Returns a document object if the create is succeded. + /// + /// InvoiceSettings object. + /// Document created successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task CreateDocumentFromProformaAsync(int id, InvoiceSettings body, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/create-from-proforma"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("POST"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 201) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Create a modification document. + /// + /// + /// Create a modification document for the given document. Returns a new document object if the create is successful. + /// + /// ModificationDocumentInsert object that you would like to store. + /// Modification document created successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task CreateModificationDocumentAsync(int id, ModificationDocumentInsert body) + { + return CreateModificationDocumentAsync(id, body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Create a modification document. + /// + /// + /// Create a modification document for the given document. Returns a new document object if the create is successful. + /// + /// ModificationDocumentInsert object that you would like to store. + /// Modification document created successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task CreateModificationDocumentAsync(int id, ModificationDocumentInsert body, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/create-modification-document"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("POST"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 201) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Download a document in PDF format. + /// + /// + /// Download a document. Returns a document in PDF format. + /// + /// Document PDF file. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task DownloadDocumentAsync(int id) + { + return DownloadDocumentAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Download a document in PDF format. + /// + /// + /// Download a document. Returns a document in PDF format. + /// + /// Document PDF file. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task DownloadDocumentAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/download"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/pdf")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200 || status_ == 206) + { + var responseStream_ = response_.Content == null ? System.IO.Stream.Null : await response_.Content.ReadAsStreamAsync().ConfigureAwait(false); + var fileResponse_ = new FileResponse(status_, headers_, responseStream_, null, response_); + disposeClient_ = false; + disposeResponse_ = false; // response and client are disposed by FileResponse + return fileResponse_; + } + else + if (status_ == 202) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Document PDF has not generated yet. You should try to download again later.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Retrieve a document Online Számla status + /// + /// + /// Retrieves the details of an existing document status. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task GetOnlineSzamlaStatusAsync(int id) + { + return GetOnlineSzamlaStatusAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Retrieve a document Online Számla status + /// + /// + /// Retrieves the details of an existing document status. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task GetOnlineSzamlaStatusAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/online-szamla"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Retrieve a payment histroy + /// + /// + /// Retrieves the details of payment history an existing document. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task> GetPaymentAsync(int id) + { + return GetPaymentAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Retrieve a payment histroy + /// + /// + /// Retrieves the details of payment history an existing document. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task> GetPaymentAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/payments"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync>(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Update payment history + /// + /// + /// Update payment history an existing document. Returns a payment history object if the update is succeded. + /// + /// Payment history object that you would like to update. + /// Payment history updated successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task> UpdatePaymentAsync(int id, System.Collections.Generic.IEnumerable body) + { + return UpdatePaymentAsync(id, body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Update payment history + /// + /// + /// Update payment history an existing document. Returns a payment history object if the update is succeded. + /// + /// Payment history object that you would like to update. + /// Payment history updated successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task> UpdatePaymentAsync(int id, System.Collections.Generic.IEnumerable body, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/payments"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("PUT"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync>(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Delete all payment history on document + /// + /// + /// Delete all exist payment history on document. + /// + /// Payment history deleted successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task> DeletePaymentAsync(int id) + { + return DeletePaymentAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Delete all payment history on document + /// + /// + /// Delete all exist payment history on document. + /// + /// Payment history deleted successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task> DeletePaymentAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/payments"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("DELETE"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync>(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Returns a printable POS PDF + /// + /// + /// Returns a printable POS PDF file of a particular document. + /// + /// In which size the POS PDF should be rendered. + /// A printable PDF document + /// A server side error occurred. + public virtual System.Threading.Tasks.Task PosPrintAsync(int id, Size size) + { + return PosPrintAsync(id, size, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Returns a printable POS PDF + /// + /// + /// Returns a printable POS PDF file of a particular document. + /// + /// In which size the POS PDF should be rendered. + /// A printable PDF document + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task PosPrintAsync(int id, Size size, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + if (size == null) + throw new System.ArgumentNullException("size"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/print/pos?"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + urlBuilder_.Append(System.Uri.EscapeDataString("size") + "=").Append(System.Uri.EscapeDataString(ConvertToString(size, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + urlBuilder_.Length--; + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/pdf")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200 || status_ == 206) + { + var responseStream_ = response_.Content == null ? System.IO.Stream.Null : await response_.Content.ReadAsStreamAsync().ConfigureAwait(false); + var fileResponse_ = new FileResponse(status_, headers_, responseStream_, null, response_); + disposeClient_ = false; + disposeResponse_ = false; // response and client are disposed by FileResponse + return fileResponse_; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Retrieve a document download public url. + /// + /// + /// Retrieves public url to download an existing document. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task GetPublicUrlAsync(int id) + { + return GetPublicUrlAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Retrieve a document download public url. + /// + /// + /// Retrieves public url to download an existing document. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task GetPublicUrlAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/public-url"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Send invoice to given email adresses. + /// + /// + /// Returns a list of emails, where the invoice is sent. + /// + /// List of email-s where you want to send the invoice. + /// List of email adresses where the invoice sent. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task SendDocumentAsync(int id, SendDocument body) + { + return SendDocumentAsync(id, body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Send invoice to given email adresses. + /// + /// + /// Returns a list of emails, where the invoice is sent. + /// + /// List of email-s where you want to send the invoice. + /// List of email adresses where the invoice sent. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task SendDocumentAsync(int id, SendDocument body, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/documents/{id}/send"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("POST"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Retrieve a organization data. + /// + /// + /// Retrieves the data of organization. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task GetOrganizationDataAsync() + { + return GetOrganizationDataAsync(System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Retrieve a organization data. + /// + /// + /// Retrieves the data of organization. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task GetOrganizationDataAsync(System.Threading.CancellationToken cancellationToken) + { + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/organization"); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// List all partners + /// + /// + /// Returns a list of your partners. The partners are returned sorted by creation date, with the most recent partners appearing first. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task ListPartnerAsync(int? page, int? per_page, string query) + { + return ListPartnerAsync(page, per_page, query, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// List all partners + /// + /// + /// Returns a list of your partners. The partners are returned sorted by creation date, with the most recent partners appearing first. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task ListPartnerAsync(int? page, int? per_page, string query, System.Threading.CancellationToken cancellationToken) + { + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/partners?"); + if (page != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("page") + "=").Append(System.Uri.EscapeDataString(ConvertToString(page, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (per_page != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("per_page") + "=").Append(System.Uri.EscapeDataString(ConvertToString(per_page, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (query != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("query") + "=").Append(System.Uri.EscapeDataString(ConvertToString(query, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + urlBuilder_.Length--; + + var client_ = _httpClient; + await AddApiKeyToHeader(client_); + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Create a partner + /// + /// + /// Create a new partner. Returns a partner object if the create is succeded. + /// + /// Partner object that you would like to store. + /// Partner created successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task CreatePartnerAsync(Partner body) + { + return CreatePartnerAsync(body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Create a partner + /// + /// + /// Create a new partner. Returns a partner object if the create is succeded. + /// + /// Partner object that you would like to store. + /// Partner created successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task CreatePartnerAsync(Partner body, System.Threading.CancellationToken cancellationToken) + { + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/partners"); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("POST"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 201) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Retrieve a partner + /// + /// + /// Retrieves the details of an existing partner. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task GetPartnerAsync(int id) + { + return GetPartnerAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Retrieve a partner + /// + /// + /// Retrieves the details of an existing partner. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task GetPartnerAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/partners/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Update a partner + /// + /// + /// Update an existing partner. Returns a partner object if the update is succeded. + /// + /// Partner object that you would like to update. + /// Partner updated successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task UpdatePartnerAsync(int id, Partner body) + { + return UpdatePartnerAsync(id, body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Update a partner + /// + /// + /// Update an existing partner. Returns a partner object if the update is succeded. + /// + /// Partner object that you would like to update. + /// Partner updated successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task UpdatePartnerAsync(int id, Partner body, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/partners/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("PUT"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Delete a partner + /// + /// + /// Delete an existing partner. + /// + /// Partner deleted successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task DeletePartnerAsync(int id) + { + return DeletePartnerAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Delete a partner + /// + /// + /// Delete an existing partner. + /// + /// Partner deleted successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task DeletePartnerAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/partners/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("DELETE"); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 204) + { + return; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// List all product + /// + /// + /// Returns a list of your products. The partners are returned sorted by creation date, with the most recent partners appearing first. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task ListProductAsync(int? page, int? per_page, string query) + { + return ListProductAsync(page, per_page, query, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// List all product + /// + /// + /// Returns a list of your products. The partners are returned sorted by creation date, with the most recent partners appearing first. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task ListProductAsync(int? page, int? per_page, string query, System.Threading.CancellationToken cancellationToken) + { + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/products?"); + if (page != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("page") + "=").Append(System.Uri.EscapeDataString(ConvertToString(page, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (per_page != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("per_page") + "=").Append(System.Uri.EscapeDataString(ConvertToString(per_page, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (query != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("query") + "=").Append(System.Uri.EscapeDataString(ConvertToString(query, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + urlBuilder_.Length--; + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Create a product + /// + /// + /// Create a new product. Returns a product object if the create is succeded. + /// + /// Product object that you would like to store. + /// Product created successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task CreateProductAsync(Product body) + { + return CreateProductAsync(body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Create a product + /// + /// + /// Create a new product. Returns a product object if the create is succeded. + /// + /// Product object that you would like to store. + /// Product created successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task CreateProductAsync(Product body, System.Threading.CancellationToken cancellationToken) + { + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/products"); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("POST"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 201) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Retrieve a product + /// + /// + /// Retrieves the details of an existing product. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task GetProductAsync(int id) + { + return GetProductAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Retrieve a product + /// + /// + /// Retrieves the details of an existing product. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task GetProductAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/products/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Update a product + /// + /// + /// Update an existing product. Returns a product object if the update is succeded. + /// + /// Product object that you would like to update. + /// Product updated successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task UpdateProductAsync(int id, Product body) + { + return UpdateProductAsync(id, body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Update a product + /// + /// + /// Update an existing product. Returns a product object if the update is succeded. + /// + /// Product object that you would like to update. + /// Product updated successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task UpdateProductAsync(int id, Product body, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + if (body == null) + throw new System.ArgumentNullException("body"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/products/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("PUT"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Delete a product + /// + /// + /// Delete an existing product. + /// + /// Product deleted successfully. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task DeleteProductAsync(int id) + { + return DeleteProductAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Delete a product + /// + /// + /// Delete an existing product. + /// + /// Product deleted successfully. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task DeleteProductAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/products/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("DELETE"); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 204) + { + return; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Lists all spending + /// + /// + /// Returns a list of your spending items, ordered by the due date. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task SpendingListAsync(string q, int? page, int? per_page, DateType? spending_date, string start_date, string end_date, PaymentStatusSpending? payment_status, Source? spending_type, Category? categories, Currency? currencies, PaymentMethod? payment_methods) + { + return SpendingListAsync(q, page, per_page, spending_date, start_date, end_date, payment_status, spending_type, categories, currencies, payment_methods, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Lists all spending + /// + /// + /// Returns a list of your spending items, ordered by the due date. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task SpendingListAsync(string q, int? page, int? per_page, DateType? spending_date, string start_date, string end_date, PaymentStatusSpending? payment_status, Source? spending_type, Category? categories, Currency? currencies, PaymentMethod? payment_methods, System.Threading.CancellationToken cancellationToken) + { + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/spendings?"); + if (q != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("q") + "=").Append(System.Uri.EscapeDataString(ConvertToString(q, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (page != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("page") + "=").Append(System.Uri.EscapeDataString(ConvertToString(page, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (per_page != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("per_page") + "=").Append(System.Uri.EscapeDataString(ConvertToString(per_page, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (spending_date != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("spending_date") + "=").Append(System.Uri.EscapeDataString(ConvertToString(spending_date, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (start_date != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("start_date") + "=").Append(System.Uri.EscapeDataString(ConvertToString(start_date, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (end_date != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("end_date") + "=").Append(System.Uri.EscapeDataString(ConvertToString(end_date, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (payment_status != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("payment_status") + "=").Append(System.Uri.EscapeDataString(ConvertToString(payment_status, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (spending_type != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("spending_type") + "=").Append(System.Uri.EscapeDataString(ConvertToString(spending_type, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (categories != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("categories") + "=").Append(System.Uri.EscapeDataString(ConvertToString(categories, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (currencies != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("currencies") + "=").Append(System.Uri.EscapeDataString(ConvertToString(currencies, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + if (payment_methods != null) + { + urlBuilder_.Append(System.Uri.EscapeDataString("payment_methods") + "=").Append(System.Uri.EscapeDataString(ConvertToString(payment_methods, System.Globalization.CultureInfo.InvariantCulture))).Append("&"); + } + urlBuilder_.Length--; + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Creates a new spending. + /// + /// Success response. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task SpendingSaveAsync(SpendingSave body) + { + return SpendingSaveAsync(body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Creates a new spending. + /// + /// Success response. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task SpendingSaveAsync(SpendingSave body, System.Threading.CancellationToken cancellationToken) + { + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/spendings"); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("POST"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 201) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Retrieves one specific spending. + /// + /// + /// Retrives the spending identified by the given ID in path. + /// + /// Success response. + /// A server side error occurred. + public virtual System.Threading.Tasks.Task SpendingShowAsync(int id) + { + return SpendingShowAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Retrieves one specific spending. + /// + /// + /// Retrives the spending identified by the given ID in path. + /// + /// Success response. + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task SpendingShowAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/spendings/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Updates a spending item. + /// + /// + /// Updates the spending item identified by the ID given in path. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task SpendingUpdateAsync(int id, SpendingSave body) + { + return SpendingUpdateAsync(id, body, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Updates a spending item. + /// + /// + /// Updates the spending item identified by the ID given in path. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task SpendingUpdateAsync(int id, SpendingSave body, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/spendings/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + var json_ = System.Text.Json.JsonSerializer.Serialize(body, _settings.Value); + var content_ = new System.Net.Http.StringContent(json_); + content_.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json"); + request_.Content = content_; + request_.Method = new System.Net.Http.HttpMethod("PUT"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Deletes a spending. + /// + /// + /// Deletes the spending identified by the ID given in path. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task SpendingDeleteAsync(int id) + { + return SpendingDeleteAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Deletes a spending. + /// + /// + /// Deletes the spending identified by the ID given in path. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task SpendingDeleteAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/spendings/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("DELETE"); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 204) + { + return; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 403) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have access to the resource.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Check tax number. + /// + /// + /// Check the given tax number format, and NAV validate. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task CheckTaxNumberAsync(string tax_number) + { + return CheckTaxNumberAsync(tax_number, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Check tax number. + /// + /// + /// Check the given tax number format, and NAV validate. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task CheckTaxNumberAsync(string tax_number, System.Threading.CancellationToken cancellationToken) + { + if (tax_number == null) + throw new System.ArgumentNullException("tax_number"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/utils/check-tax-number/{tax_number}"); + urlBuilder_.Replace("{tax_number}", System.Uri.EscapeDataString(ConvertToString(tax_number, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Convert legacy ID to v3 ID. + /// + /// + /// Retrieves the API v3 ID. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task GetIdAsync(int id) + { + return GetIdAsync(id, System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Convert legacy ID to v3 ID. + /// + /// + /// Retrieves the API v3 ID. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task GetIdAsync(int id, System.Threading.CancellationToken cancellationToken) + { + if (id == null) + throw new System.ArgumentNullException("id"); + + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/utils/convert-legacy-id/{id}"); + urlBuilder_.Replace("{id}", System.Uri.EscapeDataString(ConvertToString(id, System.Globalization.CultureInfo.InvariantCulture))); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 404) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Non-existent resource is requested.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + /// + /// Get the server time + /// + /// + /// Return the server time. + /// + /// Success response + /// A server side error occurred. + public virtual System.Threading.Tasks.Task GetServerTimeAsync() + { + return GetServerTimeAsync(System.Threading.CancellationToken.None); + } + + /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. + /// + /// Get the server time + /// + /// + /// Return the server time. + /// + /// Success response + /// A server side error occurred. + public virtual async System.Threading.Tasks.Task GetServerTimeAsync(System.Threading.CancellationToken cancellationToken) + { + var urlBuilder_ = new System.Text.StringBuilder(); + urlBuilder_.Append(BaseUrl != null ? BaseUrl.TrimEnd('/') : "").Append("/utils/time"); + + var client_ = _httpClient; + var disposeClient_ = false; + try + { + using (var request_ = new System.Net.Http.HttpRequestMessage()) + { + request_.Method = new System.Net.Http.HttpMethod("GET"); + request_.Headers.Accept.Add(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue.Parse("application/json")); + + PrepareRequest(client_, request_, urlBuilder_); + + var url_ = urlBuilder_.ToString(); + request_.RequestUri = new System.Uri(url_, System.UriKind.RelativeOrAbsolute); + + PrepareRequest(client_, request_, url_); + + var response_ = await client_.SendAsync(request_, System.Net.Http.HttpCompletionOption.ResponseHeadersRead, cancellationToken).ConfigureAwait(false); + var disposeResponse_ = true; + try + { + var headers_ = System.Linq.Enumerable.ToDictionary(response_.Headers, h_ => h_.Key, h_ => h_.Value); + if (response_.Content != null && response_.Content.Headers != null) + { + foreach (var item_ in response_.Content.Headers) + headers_[item_.Key] = item_.Value; + } + + ProcessResponse(client_, response_); + + var status_ = (int)response_.StatusCode; + if (status_ == 200) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + return objectResponse_.Object; + } + else + if (status_ == 400) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("The request is malformed.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 401) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authorization information is missing or invalid.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 402) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Authenticated user doesn\'t have subscription.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 422) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Validation errors occured.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 429) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Too many requests", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + if (status_ == 500) + { + var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); + if (objectResponse_.Object == null) + { + throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text, headers_, null); + } + throw new ApiException("Internal server error.", status_, objectResponse_.Text, headers_, objectResponse_.Object, null); + } + else + { + var responseData_ = response_.Content == null ? null : await response_.Content.ReadAsStringAsync().ConfigureAwait(false); + throw new ApiException("The HTTP status code of the response was not expected (" + status_ + ").", status_, responseData_, headers_, null); + } + } + finally + { + if (disposeResponse_) + response_.Dispose(); + } + } + } + finally + { + if (disposeClient_) + client_.Dispose(); + } + } + + protected struct ObjectResponseResult + { + public ObjectResponseResult(T responseObject, string responseText) + { + this.Object = responseObject; + this.Text = responseText; + } + + public T Object { get; } + + public string Text { get; } + } + + public bool ReadResponseAsString { get; set; } + + protected virtual async System.Threading.Tasks.Task> ReadObjectResponseAsync(System.Net.Http.HttpResponseMessage response, System.Collections.Generic.IReadOnlyDictionary> headers, System.Threading.CancellationToken cancellationToken) + { + if (response == null || response.Content == null) + { + return new ObjectResponseResult(default(T), string.Empty); + } + + if (ReadResponseAsString) + { + var responseText = await response.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + var typedBody = System.Text.Json.JsonSerializer.Deserialize(responseText, JsonSerializerSettings); + return new ObjectResponseResult(typedBody, responseText); + } + catch (System.Text.Json.JsonException exception) + { + var message = "Could not deserialize the response body string as " + typeof(T).FullName + "."; + throw new ApiException(message, (int)response.StatusCode, responseText, headers, exception); + } + } + else + { + try + { + using (var responseStream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false)) + { + var typedBody = await System.Text.Json.JsonSerializer.DeserializeAsync(responseStream, JsonSerializerSettings, cancellationToken).ConfigureAwait(false); + return new ObjectResponseResult(typedBody, string.Empty); + } + } + catch (System.Text.Json.JsonException exception) + { + var message = "Could not deserialize the response body stream as " + typeof(T).FullName + "."; + throw new ApiException(message, (int)response.StatusCode, string.Empty, headers, exception); + } + } + } + + private string ConvertToString(object value, System.Globalization.CultureInfo cultureInfo) + { + if (value == null) + { + return ""; + } + + if (value is System.Enum) + { + var name = System.Enum.GetName(value.GetType(), value); + if (name != null) + { + var field = System.Reflection.IntrospectionExtensions.GetTypeInfo(value.GetType()).GetDeclaredField(name); + if (field != null) + { + var attribute = System.Reflection.CustomAttributeExtensions.GetCustomAttribute(field, typeof(System.Runtime.Serialization.EnumMemberAttribute)) + as System.Runtime.Serialization.EnumMemberAttribute; + if (attribute != null) + { + return attribute.Value != null ? attribute.Value : name; + } + } + + var converted = System.Convert.ToString(System.Convert.ChangeType(value, System.Enum.GetUnderlyingType(value.GetType()), cultureInfo)); + return converted == null ? string.Empty : converted; + } + } + else if (value is bool) + { + return System.Convert.ToString((bool)value, cultureInfo).ToLowerInvariant(); + } + else if (value is byte[]) + { + return System.Convert.ToBase64String((byte[])value); + } + else if (value.GetType().IsArray) + { + var array = System.Linq.Enumerable.OfType((System.Array)value); + return string.Join(",", System.Linq.Enumerable.Select(array, o => ConvertToString(o, cultureInfo))); + } + + var result = System.Convert.ToString(value, cultureInfo); + return result == null ? "" : result; + } + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ClientErrorResponse + { + + [System.Text.Json.Serialization.JsonPropertyName("error")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public ClientError Error { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ServerErrorResponse + { + + [System.Text.Json.Serialization.JsonPropertyName("error")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public ServerError Error { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class SubscriptionErrorResponse + { + + [System.Text.Json.Serialization.JsonPropertyName("error")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public ClientError Error { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class TooManyRequestsResponse + { + + [System.Text.Json.Serialization.JsonPropertyName("error")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public ClientError Error { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ValidationErrorResponse + { + + [System.Text.Json.Serialization.JsonPropertyName("message")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Message { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("errors")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Errors { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ClientError + { + + [System.Text.Json.Serialization.JsonPropertyName("message")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Message { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ServerError + { + + [System.Text.Json.Serialization.JsonPropertyName("message")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Message { get; set; } + + /// + /// You should send us this ID to investigate the issue. + /// + + [System.Text.Json.Serialization.JsonPropertyName("trace_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Trace_id { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ValidationError + { + + [System.Text.Json.Serialization.JsonPropertyName("field")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Field { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("message")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Message { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class BankAccount + { + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + public string Name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("account_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + public string Account_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("account_number_iban")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Account_number_iban { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("swift")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Swift { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("currency")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Currency Currency { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("need_qr")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Obsolete] + public bool Need_qr { get; set; } = false; + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + /// + /// A object with a data property that contains an array of up to limit bank accounts. Each entry in the array is a separate bank account object. If no more bank accounts are available, the resulting array will be empty. + /// + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class BankAccountList + { + + [System.Text.Json.Serialization.JsonPropertyName("data")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Data { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Total { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("per_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Per_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("current_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Current_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("last_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Last_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("prev_page_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Prev_page_url { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("next_page_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Next_page_url { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class Address + { + + [System.Text.Json.Serialization.JsonPropertyName("country_code")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + //[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public string Country_code { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("post_code")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + public string Post_code { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("city")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + public string City { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("address")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + public string Address1 { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum Country + { + + [System.Runtime.Serialization.EnumMember(Value = @"")] + Empty = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"AC")] + AC = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"AD")] + AD = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"AE")] + AE = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"AF")] + AF = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"AG")] + AG = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"AI")] + AI = 6, + + [System.Runtime.Serialization.EnumMember(Value = @"AL")] + AL = 7, + + [System.Runtime.Serialization.EnumMember(Value = @"AM")] + AM = 8, + + [System.Runtime.Serialization.EnumMember(Value = @"AO")] + AO = 9, + + [System.Runtime.Serialization.EnumMember(Value = @"AQ")] + AQ = 10, + + [System.Runtime.Serialization.EnumMember(Value = @"AR")] + AR = 11, + + [System.Runtime.Serialization.EnumMember(Value = @"AS")] + AS = 12, + + [System.Runtime.Serialization.EnumMember(Value = @"AT")] + AT = 13, + + [System.Runtime.Serialization.EnumMember(Value = @"AU")] + AU = 14, + + [System.Runtime.Serialization.EnumMember(Value = @"AW")] + AW = 15, + + [System.Runtime.Serialization.EnumMember(Value = @"AX")] + AX = 16, + + [System.Runtime.Serialization.EnumMember(Value = @"AZ")] + AZ = 17, + + [System.Runtime.Serialization.EnumMember(Value = @"BA")] + BA = 18, + + [System.Runtime.Serialization.EnumMember(Value = @"BB")] + BB = 19, + + [System.Runtime.Serialization.EnumMember(Value = @"BD")] + BD = 20, + + [System.Runtime.Serialization.EnumMember(Value = @"BE")] + BE = 21, + + [System.Runtime.Serialization.EnumMember(Value = @"BF")] + BF = 22, + + [System.Runtime.Serialization.EnumMember(Value = @"BG")] + BG = 23, + + [System.Runtime.Serialization.EnumMember(Value = @"BH")] + BH = 24, + + [System.Runtime.Serialization.EnumMember(Value = @"BI")] + BI = 25, + + [System.Runtime.Serialization.EnumMember(Value = @"BJ")] + BJ = 26, + + [System.Runtime.Serialization.EnumMember(Value = @"BL")] + BL = 27, + + [System.Runtime.Serialization.EnumMember(Value = @"BM")] + BM = 28, + + [System.Runtime.Serialization.EnumMember(Value = @"BN")] + BN = 29, + + [System.Runtime.Serialization.EnumMember(Value = @"BO")] + BO = 30, + + [System.Runtime.Serialization.EnumMember(Value = @"BQ")] + BQ = 31, + + [System.Runtime.Serialization.EnumMember(Value = @"BR")] + BR = 32, + + [System.Runtime.Serialization.EnumMember(Value = @"BS")] + BS = 33, + + [System.Runtime.Serialization.EnumMember(Value = @"BT")] + BT = 34, + + [System.Runtime.Serialization.EnumMember(Value = @"BW")] + BW = 35, + + [System.Runtime.Serialization.EnumMember(Value = @"BY")] + BY = 36, + + [System.Runtime.Serialization.EnumMember(Value = @"BZ")] + BZ = 37, + + [System.Runtime.Serialization.EnumMember(Value = @"CA")] + CA = 38, + + [System.Runtime.Serialization.EnumMember(Value = @"CC")] + CC = 39, + + [System.Runtime.Serialization.EnumMember(Value = @"CD")] + CD = 40, + + [System.Runtime.Serialization.EnumMember(Value = @"CF")] + CF = 41, + + [System.Runtime.Serialization.EnumMember(Value = @"CG")] + CG = 42, + + [System.Runtime.Serialization.EnumMember(Value = @"CH")] + CH = 43, + + [System.Runtime.Serialization.EnumMember(Value = @"CI")] + CI = 44, + + [System.Runtime.Serialization.EnumMember(Value = @"CK")] + CK = 45, + + [System.Runtime.Serialization.EnumMember(Value = @"CL")] + CL = 46, + + [System.Runtime.Serialization.EnumMember(Value = @"CM")] + CM = 47, + + [System.Runtime.Serialization.EnumMember(Value = @"CN")] + CN = 48, + + [System.Runtime.Serialization.EnumMember(Value = @"CO")] + CO = 49, + + [System.Runtime.Serialization.EnumMember(Value = @"CR")] + CR = 50, + + [System.Runtime.Serialization.EnumMember(Value = @"CU")] + CU = 51, + + [System.Runtime.Serialization.EnumMember(Value = @"CV")] + CV = 52, + + [System.Runtime.Serialization.EnumMember(Value = @"CW")] + CW = 53, + + [System.Runtime.Serialization.EnumMember(Value = @"CX")] + CX = 54, + + [System.Runtime.Serialization.EnumMember(Value = @"CY")] + CY = 55, + + [System.Runtime.Serialization.EnumMember(Value = @"CZ")] + CZ = 56, + + [System.Runtime.Serialization.EnumMember(Value = @"DE")] + DE = 57, + + [System.Runtime.Serialization.EnumMember(Value = @"DG")] + DG = 58, + + [System.Runtime.Serialization.EnumMember(Value = @"DJ")] + DJ = 59, + + [System.Runtime.Serialization.EnumMember(Value = @"DK")] + DK = 60, + + [System.Runtime.Serialization.EnumMember(Value = @"DM")] + DM = 61, + + [System.Runtime.Serialization.EnumMember(Value = @"DO")] + DO = 62, + + [System.Runtime.Serialization.EnumMember(Value = @"DZ")] + DZ = 63, + + [System.Runtime.Serialization.EnumMember(Value = @"EA")] + EA = 64, + + [System.Runtime.Serialization.EnumMember(Value = @"EC")] + EC = 65, + + [System.Runtime.Serialization.EnumMember(Value = @"EE")] + EE = 66, + + [System.Runtime.Serialization.EnumMember(Value = @"EG")] + EG = 67, + + [System.Runtime.Serialization.EnumMember(Value = @"EH")] + EH = 68, + + [System.Runtime.Serialization.EnumMember(Value = @"ER")] + ER = 69, + + [System.Runtime.Serialization.EnumMember(Value = @"ES")] + ES = 70, + + [System.Runtime.Serialization.EnumMember(Value = @"ET")] + ET = 71, + + [System.Runtime.Serialization.EnumMember(Value = @"FI")] + FI = 72, + + [System.Runtime.Serialization.EnumMember(Value = @"FJ")] + FJ = 73, + + [System.Runtime.Serialization.EnumMember(Value = @"FK")] + FK = 74, + + [System.Runtime.Serialization.EnumMember(Value = @"FM")] + FM = 75, + + [System.Runtime.Serialization.EnumMember(Value = @"FO")] + FO = 76, + + [System.Runtime.Serialization.EnumMember(Value = @"FR")] + FR = 77, + + [System.Runtime.Serialization.EnumMember(Value = @"GA")] + GA = 78, + + [System.Runtime.Serialization.EnumMember(Value = @"GB")] + GB = 79, + + [System.Runtime.Serialization.EnumMember(Value = @"GD")] + GD = 80, + + [System.Runtime.Serialization.EnumMember(Value = @"GE")] + GE = 81, + + [System.Runtime.Serialization.EnumMember(Value = @"GF")] + GF = 82, + + [System.Runtime.Serialization.EnumMember(Value = @"GG")] + GG = 83, + + [System.Runtime.Serialization.EnumMember(Value = @"GH")] + GH = 84, + + [System.Runtime.Serialization.EnumMember(Value = @"GI")] + GI = 85, + + [System.Runtime.Serialization.EnumMember(Value = @"GL")] + GL = 86, + + [System.Runtime.Serialization.EnumMember(Value = @"GM")] + GM = 87, + + [System.Runtime.Serialization.EnumMember(Value = @"GN")] + GN = 88, + + [System.Runtime.Serialization.EnumMember(Value = @"GP")] + GP = 89, + + [System.Runtime.Serialization.EnumMember(Value = @"GQ")] + GQ = 90, + + [System.Runtime.Serialization.EnumMember(Value = @"GR")] + GR = 91, + + [System.Runtime.Serialization.EnumMember(Value = @"GS")] + GS = 92, + + [System.Runtime.Serialization.EnumMember(Value = @"GT")] + GT = 93, + + [System.Runtime.Serialization.EnumMember(Value = @"GU")] + GU = 94, + + [System.Runtime.Serialization.EnumMember(Value = @"GW")] + GW = 95, + + [System.Runtime.Serialization.EnumMember(Value = @"GY")] + GY = 96, + + [System.Runtime.Serialization.EnumMember(Value = @"HK")] + HK = 97, + + [System.Runtime.Serialization.EnumMember(Value = @"HN")] + HN = 98, + + [System.Runtime.Serialization.EnumMember(Value = @"HR")] + HR = 99, + + [System.Runtime.Serialization.EnumMember(Value = @"HT")] + HT = 100, + + [System.Runtime.Serialization.EnumMember(Value = @"HU")] + HU = 101, + + [System.Runtime.Serialization.EnumMember(Value = @"IC")] + IC = 102, + + [System.Runtime.Serialization.EnumMember(Value = @"ID")] + ID = 103, + + [System.Runtime.Serialization.EnumMember(Value = @"IE")] + IE = 104, + + [System.Runtime.Serialization.EnumMember(Value = @"IL")] + IL = 105, + + [System.Runtime.Serialization.EnumMember(Value = @"IM")] + IM = 106, + + [System.Runtime.Serialization.EnumMember(Value = @"IN")] + IN = 107, + + [System.Runtime.Serialization.EnumMember(Value = @"IO")] + IO = 108, + + [System.Runtime.Serialization.EnumMember(Value = @"IQ")] + IQ = 109, + + [System.Runtime.Serialization.EnumMember(Value = @"IR")] + IR = 110, + + [System.Runtime.Serialization.EnumMember(Value = @"IS")] + IS = 111, + + [System.Runtime.Serialization.EnumMember(Value = @"IT")] + IT = 112, + + [System.Runtime.Serialization.EnumMember(Value = @"JE")] + JE = 113, + + [System.Runtime.Serialization.EnumMember(Value = @"JM")] + JM = 114, + + [System.Runtime.Serialization.EnumMember(Value = @"JO")] + JO = 115, + + [System.Runtime.Serialization.EnumMember(Value = @"JP")] + JP = 116, + + [System.Runtime.Serialization.EnumMember(Value = @"KE")] + KE = 117, + + [System.Runtime.Serialization.EnumMember(Value = @"KG")] + KG = 118, + + [System.Runtime.Serialization.EnumMember(Value = @"KH")] + KH = 119, + + [System.Runtime.Serialization.EnumMember(Value = @"KI")] + KI = 120, + + [System.Runtime.Serialization.EnumMember(Value = @"KM")] + KM = 121, + + [System.Runtime.Serialization.EnumMember(Value = @"KN")] + KN = 122, + + [System.Runtime.Serialization.EnumMember(Value = @"KP")] + KP = 123, + + [System.Runtime.Serialization.EnumMember(Value = @"KR")] + KR = 124, + + [System.Runtime.Serialization.EnumMember(Value = @"KW")] + KW = 125, + + [System.Runtime.Serialization.EnumMember(Value = @"KY")] + KY = 126, + + [System.Runtime.Serialization.EnumMember(Value = @"KZ")] + KZ = 127, + + [System.Runtime.Serialization.EnumMember(Value = @"LA")] + LA = 128, + + [System.Runtime.Serialization.EnumMember(Value = @"LB")] + LB = 129, + + [System.Runtime.Serialization.EnumMember(Value = @"LC")] + LC = 130, + + [System.Runtime.Serialization.EnumMember(Value = @"LI")] + LI = 131, + + [System.Runtime.Serialization.EnumMember(Value = @"LK")] + LK = 132, + + [System.Runtime.Serialization.EnumMember(Value = @"LR")] + LR = 133, + + [System.Runtime.Serialization.EnumMember(Value = @"LS")] + LS = 134, + + [System.Runtime.Serialization.EnumMember(Value = @"LT")] + LT = 135, + + [System.Runtime.Serialization.EnumMember(Value = @"LU")] + LU = 136, + + [System.Runtime.Serialization.EnumMember(Value = @"LV")] + LV = 137, + + [System.Runtime.Serialization.EnumMember(Value = @"LY")] + LY = 138, + + [System.Runtime.Serialization.EnumMember(Value = @"MA")] + MA = 139, + + [System.Runtime.Serialization.EnumMember(Value = @"MC")] + MC = 140, + + [System.Runtime.Serialization.EnumMember(Value = @"MD")] + MD = 141, + + [System.Runtime.Serialization.EnumMember(Value = @"ME")] + ME = 142, + + [System.Runtime.Serialization.EnumMember(Value = @"MF")] + MF = 143, + + [System.Runtime.Serialization.EnumMember(Value = @"MG")] + MG = 144, + + [System.Runtime.Serialization.EnumMember(Value = @"MH")] + MH = 145, + + [System.Runtime.Serialization.EnumMember(Value = @"MK")] + MK = 146, + + [System.Runtime.Serialization.EnumMember(Value = @"ML")] + ML = 147, + + [System.Runtime.Serialization.EnumMember(Value = @"MM")] + MM = 148, + + [System.Runtime.Serialization.EnumMember(Value = @"MN")] + MN = 149, + + [System.Runtime.Serialization.EnumMember(Value = @"MO")] + MO = 150, + + [System.Runtime.Serialization.EnumMember(Value = @"MP")] + MP = 151, + + [System.Runtime.Serialization.EnumMember(Value = @"MQ")] + MQ = 152, + + [System.Runtime.Serialization.EnumMember(Value = @"MR")] + MR = 153, + + [System.Runtime.Serialization.EnumMember(Value = @"MS")] + MS = 154, + + [System.Runtime.Serialization.EnumMember(Value = @"MT")] + MT = 155, + + [System.Runtime.Serialization.EnumMember(Value = @"MU")] + MU = 156, + + [System.Runtime.Serialization.EnumMember(Value = @"MV")] + MV = 157, + + [System.Runtime.Serialization.EnumMember(Value = @"MW")] + MW = 158, + + [System.Runtime.Serialization.EnumMember(Value = @"MX")] + MX = 159, + + [System.Runtime.Serialization.EnumMember(Value = @"MY")] + MY = 160, + + [System.Runtime.Serialization.EnumMember(Value = @"MZ")] + MZ = 161, + + [System.Runtime.Serialization.EnumMember(Value = @"NA")] + NA = 162, + + [System.Runtime.Serialization.EnumMember(Value = @"NC")] + NC = 163, + + [System.Runtime.Serialization.EnumMember(Value = @"NE")] + NE = 164, + + [System.Runtime.Serialization.EnumMember(Value = @"NF")] + NF = 165, + + [System.Runtime.Serialization.EnumMember(Value = @"NG")] + NG = 166, + + [System.Runtime.Serialization.EnumMember(Value = @"NI")] + NI = 167, + + [System.Runtime.Serialization.EnumMember(Value = @"NL")] + NL = 168, + + [System.Runtime.Serialization.EnumMember(Value = @"NO")] + NO = 169, + + [System.Runtime.Serialization.EnumMember(Value = @"NP")] + NP = 170, + + [System.Runtime.Serialization.EnumMember(Value = @"NR")] + NR = 171, + + [System.Runtime.Serialization.EnumMember(Value = @"NU")] + NU = 172, + + [System.Runtime.Serialization.EnumMember(Value = @"NZ")] + NZ = 173, + + [System.Runtime.Serialization.EnumMember(Value = @"OM")] + OM = 174, + + [System.Runtime.Serialization.EnumMember(Value = @"PA")] + PA = 175, + + [System.Runtime.Serialization.EnumMember(Value = @"PE")] + PE = 176, + + [System.Runtime.Serialization.EnumMember(Value = @"PF")] + PF = 177, + + [System.Runtime.Serialization.EnumMember(Value = @"PG")] + PG = 178, + + [System.Runtime.Serialization.EnumMember(Value = @"PH")] + PH = 179, + + [System.Runtime.Serialization.EnumMember(Value = @"PK")] + PK = 180, + + [System.Runtime.Serialization.EnumMember(Value = @"PL")] + PL = 181, + + [System.Runtime.Serialization.EnumMember(Value = @"PM")] + PM = 182, + + [System.Runtime.Serialization.EnumMember(Value = @"PN")] + PN = 183, + + [System.Runtime.Serialization.EnumMember(Value = @"PR")] + PR = 184, + + [System.Runtime.Serialization.EnumMember(Value = @"PS")] + PS = 185, + + [System.Runtime.Serialization.EnumMember(Value = @"PT")] + PT = 186, + + [System.Runtime.Serialization.EnumMember(Value = @"PW")] + PW = 187, + + [System.Runtime.Serialization.EnumMember(Value = @"PY")] + PY = 188, + + [System.Runtime.Serialization.EnumMember(Value = @"QA")] + QA = 189, + + [System.Runtime.Serialization.EnumMember(Value = @"RE")] + RE = 190, + + [System.Runtime.Serialization.EnumMember(Value = @"RO")] + RO = 191, + + [System.Runtime.Serialization.EnumMember(Value = @"RS")] + RS = 192, + + [System.Runtime.Serialization.EnumMember(Value = @"RU")] + RU = 193, + + [System.Runtime.Serialization.EnumMember(Value = @"RW")] + RW = 194, + + [System.Runtime.Serialization.EnumMember(Value = @"SA")] + SA = 195, + + [System.Runtime.Serialization.EnumMember(Value = @"SB")] + SB = 196, + + [System.Runtime.Serialization.EnumMember(Value = @"SC")] + SC = 197, + + [System.Runtime.Serialization.EnumMember(Value = @"SD")] + SD = 198, + + [System.Runtime.Serialization.EnumMember(Value = @"SE")] + SE = 199, + + [System.Runtime.Serialization.EnumMember(Value = @"SG")] + SG = 200, + + [System.Runtime.Serialization.EnumMember(Value = @"SH")] + SH = 201, + + [System.Runtime.Serialization.EnumMember(Value = @"SI")] + SI = 202, + + [System.Runtime.Serialization.EnumMember(Value = @"SJ")] + SJ = 203, + + [System.Runtime.Serialization.EnumMember(Value = @"SK")] + SK = 204, + + [System.Runtime.Serialization.EnumMember(Value = @"SL")] + SL = 205, + + [System.Runtime.Serialization.EnumMember(Value = @"SM")] + SM = 206, + + [System.Runtime.Serialization.EnumMember(Value = @"SN")] + SN = 207, + + [System.Runtime.Serialization.EnumMember(Value = @"SO")] + SO = 208, + + [System.Runtime.Serialization.EnumMember(Value = @"SR")] + SR = 209, + + [System.Runtime.Serialization.EnumMember(Value = @"SS")] + SS = 210, + + [System.Runtime.Serialization.EnumMember(Value = @"ST")] + ST = 211, + + [System.Runtime.Serialization.EnumMember(Value = @"SV")] + SV = 212, + + [System.Runtime.Serialization.EnumMember(Value = @"SX")] + SX = 213, + + [System.Runtime.Serialization.EnumMember(Value = @"SY")] + SY = 214, + + [System.Runtime.Serialization.EnumMember(Value = @"SZ")] + SZ = 215, + + [System.Runtime.Serialization.EnumMember(Value = @"TA")] + TA = 216, + + [System.Runtime.Serialization.EnumMember(Value = @"TC")] + TC = 217, + + [System.Runtime.Serialization.EnumMember(Value = @"TD")] + TD = 218, + + [System.Runtime.Serialization.EnumMember(Value = @"TF")] + TF = 219, + + [System.Runtime.Serialization.EnumMember(Value = @"TG")] + TG = 220, + + [System.Runtime.Serialization.EnumMember(Value = @"TH")] + TH = 221, + + [System.Runtime.Serialization.EnumMember(Value = @"TJ")] + TJ = 222, + + [System.Runtime.Serialization.EnumMember(Value = @"TK")] + TK = 223, + + [System.Runtime.Serialization.EnumMember(Value = @"TL")] + TL = 224, + + [System.Runtime.Serialization.EnumMember(Value = @"TM")] + TM = 225, + + [System.Runtime.Serialization.EnumMember(Value = @"TN")] + TN = 226, + + [System.Runtime.Serialization.EnumMember(Value = @"TO")] + TO = 227, + + [System.Runtime.Serialization.EnumMember(Value = @"TR")] + TR = 228, + + [System.Runtime.Serialization.EnumMember(Value = @"TT")] + TT = 229, + + [System.Runtime.Serialization.EnumMember(Value = @"TV")] + TV = 230, + + [System.Runtime.Serialization.EnumMember(Value = @"TW")] + TW = 231, + + [System.Runtime.Serialization.EnumMember(Value = @"TZ")] + TZ = 232, + + [System.Runtime.Serialization.EnumMember(Value = @"UA")] + UA = 233, + + [System.Runtime.Serialization.EnumMember(Value = @"UG")] + UG = 234, + + [System.Runtime.Serialization.EnumMember(Value = @"UM")] + UM = 235, + + [System.Runtime.Serialization.EnumMember(Value = @"US")] + US = 236, + + [System.Runtime.Serialization.EnumMember(Value = @"UY")] + UY = 237, + + [System.Runtime.Serialization.EnumMember(Value = @"UZ")] + UZ = 238, + + [System.Runtime.Serialization.EnumMember(Value = @"VA")] + VA = 239, + + [System.Runtime.Serialization.EnumMember(Value = @"VC")] + VC = 240, + + [System.Runtime.Serialization.EnumMember(Value = @"VE")] + VE = 241, + + [System.Runtime.Serialization.EnumMember(Value = @"VG")] + VG = 242, + + [System.Runtime.Serialization.EnumMember(Value = @"VI")] + VI = 243, + + [System.Runtime.Serialization.EnumMember(Value = @"VN")] + VN = 244, + + [System.Runtime.Serialization.EnumMember(Value = @"VU")] + VU = 245, + + [System.Runtime.Serialization.EnumMember(Value = @"WF")] + WF = 246, + + [System.Runtime.Serialization.EnumMember(Value = @"WS")] + WS = 247, + + [System.Runtime.Serialization.EnumMember(Value = @"XA")] + XA = 248, + + [System.Runtime.Serialization.EnumMember(Value = @"XB")] + XB = 249, + + [System.Runtime.Serialization.EnumMember(Value = @"XK")] + XK = 250, + + [System.Runtime.Serialization.EnumMember(Value = @"YE")] + YE = 251, + + [System.Runtime.Serialization.EnumMember(Value = @"YT")] + YT = 252, + + [System.Runtime.Serialization.EnumMember(Value = @"ZA")] + ZA = 253, + + [System.Runtime.Serialization.EnumMember(Value = @"ZM")] + ZM = 254, + + [System.Runtime.Serialization.EnumMember(Value = @"ZW")] + ZW = 255, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum Currency + { + + [System.Runtime.Serialization.EnumMember(Value = @"AED")] + AED = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"AUD")] + AUD = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"BGN")] + BGN = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"BRL")] + BRL = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"CAD")] + CAD = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"CHF")] + CHF = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"CNY")] + CNY = 6, + + [System.Runtime.Serialization.EnumMember(Value = @"CZK")] + CZK = 7, + + [System.Runtime.Serialization.EnumMember(Value = @"DKK")] + DKK = 8, + + [System.Runtime.Serialization.EnumMember(Value = @"EUR")] + EUR = 9, + + [System.Runtime.Serialization.EnumMember(Value = @"GBP")] + GBP = 10, + + [System.Runtime.Serialization.EnumMember(Value = @"HKD")] + HKD = 11, + + [System.Runtime.Serialization.EnumMember(Value = @"HRK")] + HRK = 12, + + [System.Runtime.Serialization.EnumMember(Value = @"HUF")] + HUF = 13, + + [System.Runtime.Serialization.EnumMember(Value = @"IDR")] + IDR = 14, + + [System.Runtime.Serialization.EnumMember(Value = @"ILS")] + ILS = 15, + + [System.Runtime.Serialization.EnumMember(Value = @"INR")] + INR = 16, + + [System.Runtime.Serialization.EnumMember(Value = @"ISK")] + ISK = 17, + + [System.Runtime.Serialization.EnumMember(Value = @"JPY")] + JPY = 18, + + [System.Runtime.Serialization.EnumMember(Value = @"KRW")] + KRW = 19, + + [System.Runtime.Serialization.EnumMember(Value = @"MXN")] + MXN = 20, + + [System.Runtime.Serialization.EnumMember(Value = @"MYR")] + MYR = 21, + + [System.Runtime.Serialization.EnumMember(Value = @"NOK")] + NOK = 22, + + [System.Runtime.Serialization.EnumMember(Value = @"NZD")] + NZD = 23, + + [System.Runtime.Serialization.EnumMember(Value = @"PHP")] + PHP = 24, + + [System.Runtime.Serialization.EnumMember(Value = @"PLN")] + PLN = 25, + + [System.Runtime.Serialization.EnumMember(Value = @"RON")] + RON = 26, + + [System.Runtime.Serialization.EnumMember(Value = @"RSD")] + RSD = 27, + + [System.Runtime.Serialization.EnumMember(Value = @"RUB")] + RUB = 28, + + [System.Runtime.Serialization.EnumMember(Value = @"SEK")] + SEK = 29, + + [System.Runtime.Serialization.EnumMember(Value = @"SGD")] + SGD = 30, + + [System.Runtime.Serialization.EnumMember(Value = @"THB")] + THB = 31, + + [System.Runtime.Serialization.EnumMember(Value = @"TRY")] + TRY = 32, + + [System.Runtime.Serialization.EnumMember(Value = @"UAH")] + UAH = 33, + + [System.Runtime.Serialization.EnumMember(Value = @"USD")] + USD = 34, + + [System.Runtime.Serialization.EnumMember(Value = @"ZAR")] + ZAR = 35, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ConversationRate + { + + [System.Text.Json.Serialization.JsonPropertyName("from_currency")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Currency From_currency { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("to_currency")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Currency To_currency { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("conversation_rate")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Conversation_rate { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Date { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum CorrectionType + { + + [System.Runtime.Serialization.EnumMember(Value = @"advance")] + Advance = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"canceled")] + Canceled = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"cancellation")] + Cancellation = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"cert_of_completion")] + Cert_of_completion = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"d_cert_of_completion")] + D_cert_of_completion = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"dossier")] + Dossier = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"draft")] + Draft = 6, + + [System.Runtime.Serialization.EnumMember(Value = @"draft_offer")] + Draft_offer = 7, + + [System.Runtime.Serialization.EnumMember(Value = @"draft_order_form")] + Draft_order_form = 8, + + [System.Runtime.Serialization.EnumMember(Value = @"draft_waybill")] + Draft_waybill = 9, + + [System.Runtime.Serialization.EnumMember(Value = @"invoice")] + Invoice = 10, + + [System.Runtime.Serialization.EnumMember(Value = @"modification")] + Modification = 11, + + [System.Runtime.Serialization.EnumMember(Value = @"modified")] + Modified = 12, + + [System.Runtime.Serialization.EnumMember(Value = @"offer")] + Offer = 13, + + [System.Runtime.Serialization.EnumMember(Value = @"order_form")] + Order_form = 14, + + [System.Runtime.Serialization.EnumMember(Value = @"proforma")] + Proforma = 15, + + [System.Runtime.Serialization.EnumMember(Value = @"receipt")] + Receipt = 16, + + [System.Runtime.Serialization.EnumMember(Value = @"receipt_cancellation")] + Receipt_cancellation = 17, + + [System.Runtime.Serialization.EnumMember(Value = @"waybill")] + Waybill = 18, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class Discount + { + + [System.Text.Json.Serialization.JsonPropertyName("type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(CamelCaseStringEnumConverter))] + public string Type { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("value")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Value { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DiscountType + { + + [System.Runtime.Serialization.EnumMember(Value = @"percent")] + Percent = 0, + + } + + /// + /// Document object representing your invoice. NOTE: partner property is deprecated. Please use document_partner instead. + /// + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class Document + { + /// + /// The document's unique identifier. + /// + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Id { get; set; } + + /// + /// The document's invoice number. + /// + + [System.Text.Json.Serialization.JsonPropertyName("invoice_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Invoice_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(CamelCaseStringEnumConverter))] + public string Type { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("cancelled")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Cancelled { get; set; } + + /// + /// DocumentBlock's identifier. + /// + + [System.Text.Json.Serialization.JsonPropertyName("block_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Block_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("payment_status")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public PaymentStatus Payment_status { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("payment_method")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public PaymentMethod Payment_method { get; set; } + + /// + /// The document's gross total price. + /// + + [System.Text.Json.Serialization.JsonPropertyName("gross_total")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Gross_total { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("currency")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Currency Currency { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("conversion_rate")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Conversion_rate { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("invoice_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Invoice_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("fulfillment_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Fulfillment_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("due_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Due_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("paid_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Paid_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("organization")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public DocumentOrganization Organization { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("partner")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public Partner Partner { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("document_partner")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public DocumentPartner Document_partner { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("electronic")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Electronic { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("comment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Comment { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("tags")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Tags { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("notification_status")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public DocumentNotificationStatus Notification_status { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("language")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public DocumentLanguage Language { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("items")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Items { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("summary")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public DocumentSummary Summary { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("settings")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public DocumentSettings Settings { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("online_szamla_status")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public OnlineSzamlaStatusEnum Online_szamla_status { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("related_documents")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Related_documents { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("discount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public Discount Discount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("correction_type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public CorrectionType Correction_type { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + /// + /// An object representing related documents to another document. + /// + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentAncestor + { + /// + /// Unique identifier of the related document. + /// + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Id { get; set; } + + /// + /// Invoice number of the related document. + /// + + [System.Text.Json.Serialization.JsonPropertyName("invoice_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Invoice_number { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentBankAccount + { + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int? Id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + public string Name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("account_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + public string Account_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("account_number_iban")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Account_number_iban { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("swift")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Swift { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentCancellation + { + + [System.Text.Json.Serialization.JsonPropertyName("cancellation_reason")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Cancellation_reason { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("cancellation_recipients")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Cancellation_recipients { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DocumentForm + { + + [System.Runtime.Serialization.EnumMember(Value = @"electronic")] + Electronic = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"paper")] + Paper = 1, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DocumentFormat + { + + [System.Runtime.Serialization.EnumMember(Value = @"")] + Empty = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"electronic")] + Electronic = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"traditional")] + Traditional = 2, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentInsert + { + + [System.Text.Json.Serialization.JsonPropertyName("vendor_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Vendor_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("partner_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public int Partner_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("block_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public int Block_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("bank_account_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Bank_account_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + //[System.Text.Json.Serialization.JsonConverter(typeof(CamelCaseStringEnumConverter))] + public string Type { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("fulfillment_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Fulfillment_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("due_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Due_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("payment_method")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + //[System.Text.Json.Serialization.JsonConverter(typeof(CamelCaseStringEnumConverter))] + public string Payment_method { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("language")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + //[System.Text.Json.Serialization.JsonConverter(typeof(CamelCaseStringEnumConverter))] + public string Language { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("currency")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + //[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public string Currency { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("conversion_rate")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Conversion_rate { get; set; } = 1F; + + [System.Text.Json.Serialization.JsonPropertyName("electronic")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Electronic { get; set; } = false; + + [System.Text.Json.Serialization.JsonPropertyName("paid")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Paid { get; set; } = false; + + [System.Text.Json.Serialization.JsonPropertyName("items")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Items { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("comment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Comment { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("settings")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public DocumentSettings Settings { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("advance_invoice")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Advance_invoice { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("discount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public Discount Discount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("instant_payment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Instant_payment { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DocumentInsertType + { + + Advance, + + Draft, + + Invoice, + + Proforma, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentItem + { + + [System.Text.Json.Serialization.JsonPropertyName("product_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int? Product_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("net_unit_amount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Net_unit_amount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("quantity")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Quantity { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("unit")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Unit { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("net_amount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Net_amount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("gross_amount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Gross_amount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public string Vat { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat_amount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Vat_amount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("entitlement")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Entitlement Entitlement { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("comment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Comment { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentItemData + { + + [System.Text.Json.Serialization.JsonPropertyName("product_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public int Product_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("quantity")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public float Quantity { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("comment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Comment { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DocumentLanguage + { + + [System.Runtime.Serialization.EnumMember(Value = @"de")] + De = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"en")] + En = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"fr")] + Fr = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"hr")] + Hr = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"hu")] + Hu = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"it")] + It = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"ro")] + Ro = 6, + + [System.Runtime.Serialization.EnumMember(Value = @"sk")] + Sk = 7, + + [System.Runtime.Serialization.EnumMember(Value = @"us")] + Us = 8, + + } + + /// + /// A object with a data property that contains an array of up to limit documents. Each entry in the array is a separate document object. If no more documents are available, the resulting array will be empty. + /// + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentList + { + + [System.Text.Json.Serialization.JsonPropertyName("data")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Data { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Total { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("per_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Per_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("current_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Current_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("last_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Last_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("prev_page_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Prev_page_url { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("next_page_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Next_page_url { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DocumentNotificationStatus + { + + [System.Runtime.Serialization.EnumMember(Value = @"closed")] + Closed = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"downloaded")] + Downloaded = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"failed")] + Failed = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"none")] + None = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"opened")] + Opened = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"readed")] + Readed = 5, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentOrganization + { + + [System.Text.Json.Serialization.JsonPropertyName("name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("tax_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Tax_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("bank_account")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public DocumentBankAccount Bank_account { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("address")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public Address Address { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("small_taxpayer")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Small_taxpayer { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("ev_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Ev_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("eu_tax_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Eu_tax_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("cash_settled")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Cash_settled { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentPartner + { + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("address")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public Address Address { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("emails")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Emails { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("taxcode")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Taxcode { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("iban")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Iban { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("swift")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Swift { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("account_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Account_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("phone")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Phone { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("tax_type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(CamelCaseStringEnumConverter))] + public string Tax_type { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentProductData + { + + [System.Text.Json.Serialization.JsonPropertyName("name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + public string Name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("unit_price")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public float Unit_price { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("unit_price_type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + //[System.Text.Json.Serialization.JsonConverter(typeof(CamelCaseStringEnumConverter))] + public string Unit_price_type { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("quantity")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public float Quantity { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("unit")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + public string Unit { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + //[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public string Vat { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("comment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Comment { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("entitlement")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public string Entitlement { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentPublicUrl + { + + [System.Text.Json.Serialization.JsonPropertyName("public_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Public_url { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentSettings + { + + [System.Text.Json.Serialization.JsonPropertyName("mediated_service")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Mediated_service { get; set; } = false; + + [System.Text.Json.Serialization.JsonPropertyName("without_financial_fulfillment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Without_financial_fulfillment { get; set; } = false; + + [System.Text.Json.Serialization.JsonPropertyName("online_payment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public string Online_payment { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("round")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(CamelCaseStringEnumConverter))] + public string Round { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("no_send_onlineszamla_by_user")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool No_send_onlineszamla_by_user { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("order_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Order_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("place_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int? Place_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("instant_payment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Instant_payment { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("selected_type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(CamelCaseStringEnumConverter))] + public string Selected_type { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentSummary + { + + [System.Text.Json.Serialization.JsonPropertyName("net_amount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Net_amount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("net_amount_local")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Net_amount_local { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("gross_amount_local")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Gross_amount_local { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat_amount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Vat_amount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat_amount_local")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Vat_amount_local { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat_rate_summary")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Vat_rate_summary { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DocumentType + { + + [System.Runtime.Serialization.EnumMember(Value = @"advance")] + Advance = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"cancellation")] + Cancellation = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"cert_of_completion")] + Cert_of_completion = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"d_cert_of_completion")] + D_cert_of_completion = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"dossier")] + Dossier = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"draft")] + Draft = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"draft_offer")] + Draft_offer = 6, + + [System.Runtime.Serialization.EnumMember(Value = @"draft_order_form")] + Draft_order_form = 7, + + [System.Runtime.Serialization.EnumMember(Value = @"draft_waybill")] + Draft_waybill = 8, + + [System.Runtime.Serialization.EnumMember(Value = @"invoice")] + Invoice = 9, + + [System.Runtime.Serialization.EnumMember(Value = @"modification")] + Modification = 10, + + [System.Runtime.Serialization.EnumMember(Value = @"offer")] + Offer = 11, + + [System.Runtime.Serialization.EnumMember(Value = @"order_form")] + Order_form = 12, + + [System.Runtime.Serialization.EnumMember(Value = @"proforma")] + Proforma = 13, + + [System.Runtime.Serialization.EnumMember(Value = @"receipt")] + Receipt = 14, + + [System.Runtime.Serialization.EnumMember(Value = @"receipt_cancellation")] + Receipt_cancellation = 15, + + [System.Runtime.Serialization.EnumMember(Value = @"waybill")] + Waybill = 16, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentVatRateSummary + { + + [System.Text.Json.Serialization.JsonPropertyName("vat_name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Vat_name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat_percentage")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Vat_percentage { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat_rate_net_amount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Vat_rate_net_amount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat_rate_vat_amount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Vat_rate_vat_amount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat_rate_vat_amount_local")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Vat_rate_vat_amount_local { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat_rate_gross_amount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Vat_rate_gross_amount { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + /// + /// + ///
* `AAM` - Alanyi adómentesség + ///
* `ANTIQUES` - Különbözet szerinti szabályozás - gyűjteménydarabok és régiségek - + ///
* `ARTWORK` - Különbözet szerinti szabályozás - műalkotások - + ///
* `ATK` - Áfa tv. tárgyi hatályán kívüli ügylet + ///
* `EAM` - Áfamentes termékexport, azzal egy tekintet alá eső értékesítések, nemzetközi közlekedéshez kapcsolódó áfamentes ügyletek (Áfa tv. 98-109. §) + ///
* `EUE` - EU más tagállamában áfaköteles (áfa fizetésére az értékesítő köteles) + ///
* `EUFAD37` - Áfa tv. 37. § (1) bekezdése alapján a szolgáltatás teljesítése helye az EU más tagállama (áfa fizetésére a vevő köteles) + ///
* `EUFADE` - Áfa tv. egyéb rendelkezése szerint a teljesítés helye EU más tagállama (áfa fizetésére a vevő kötelezett) + ///
* `HO` - Áfa tv. szerint EU-n kívül teljesített ügylet + ///
* `KBAET` - Más tagállamba irányuló áfamentes termékértékesítés (Áfa tv. 89. §) + ///
* `NAM_1` - Áfamentes közvetítői tevékenység (Áfa tv. 110. §) + ///
* `NAM_2` - Termékek nemzetközi forgalmához kapcsolódó áfamentes ügylet (Áfa tv. 111-118. §) + ///
* `SECOND_HAND` - Különbözet szerinti szabályozás - használt cikkek - + ///
* `TAM` - Tevékenység közérdekű jellegére vagy egyéb sajátos jellegére tekintettel áfamentes (Áfa tv. 85-87.§) + ///
* `TRAVEL_AGENCY` - Különbözet szerinti szabályozás - utazási irodák - + ///
+ [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum Entitlement + { + + [System.Runtime.Serialization.EnumMember(Value = @"AAM")] + AAM = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"ANTIQUES")] + ANTIQUES = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"ARTWORK")] + ARTWORK = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"ATK")] + ATK = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"EAM")] + EAM = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"EUE")] + EUE = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"EUFAD37")] + EUFAD37 = 6, + + [System.Runtime.Serialization.EnumMember(Value = @"EUFADE")] + EUFADE = 7, + + [System.Runtime.Serialization.EnumMember(Value = @"HO")] + HO = 8, + + [System.Runtime.Serialization.EnumMember(Value = @"KBAET")] + KBAET = 9, + + [System.Runtime.Serialization.EnumMember(Value = @"NAM_1")] + NAM_1 = 10, + + [System.Runtime.Serialization.EnumMember(Value = @"NAM_2")] + NAM_2 = 11, + + [System.Runtime.Serialization.EnumMember(Value = @"SECOND_HAND")] + SECOND_HAND = 12, + + [System.Runtime.Serialization.EnumMember(Value = @"TAM")] + TAM = 13, + + [System.Runtime.Serialization.EnumMember(Value = @"TRAVEL_AGENCY")] + TRAVEL_AGENCY = 14, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class InvoiceSettings + { + + [System.Text.Json.Serialization.JsonPropertyName("document_type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public DocumentType Document_type { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("fulfillment_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Fulfillment_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("due_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Due_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("document_format")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public DocumentFormat Document_format { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("comment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Comment { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ModificationDocumentInsert + { + + [System.Text.Json.Serialization.JsonPropertyName("due_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Due_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("comment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Comment { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("payment_method")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public PaymentMethod Payment_method { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("without_financial_fulfillment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Without_financial_fulfillment { get; set; } = false; + + [System.Text.Json.Serialization.JsonPropertyName("items")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Items { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum OnlinePayment + { + + [System.Runtime.Serialization.EnumMember(Value = @"")] + Empty = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"Barion")] + Barion = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"SimplePay")] + SimplePay = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"no")] + No = 3, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class OnlineSzamlaStatus + { + + [System.Text.Json.Serialization.JsonPropertyName("transaction_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Transaction_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("status")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Status { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("messages")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Messages { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum OnlineSzamlaStatusEnum + { + + [System.Runtime.Serialization.EnumMember(Value = @"aborted")] + Aborted = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"done")] + Done = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"empty_organization_country_code")] + Empty_organization_country_code = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"empty_partner_country_code")] + Empty_partner_country_code = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"empty_tax")] + Empty_tax = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"forbidden")] + Forbidden = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"invalid_address")] + Invalid_address = 6, + + [System.Runtime.Serialization.EnumMember(Value = @"invalid_client")] + Invalid_client = 7, + + [System.Runtime.Serialization.EnumMember(Value = @"invalid_conversion_rate")] + Invalid_conversion_rate = 8, + + [System.Runtime.Serialization.EnumMember(Value = @"invalid_customer")] + Invalid_customer = 9, + + [System.Runtime.Serialization.EnumMember(Value = @"invalid_invoice_reference")] + Invalid_invoice_reference = 10, + + [System.Runtime.Serialization.EnumMember(Value = @"invalid_postalcode")] + Invalid_postalcode = 11, + + [System.Runtime.Serialization.EnumMember(Value = @"invalid_security_user")] + Invalid_security_user = 12, + + [System.Runtime.Serialization.EnumMember(Value = @"invalid_tax")] + Invalid_tax = 13, + + [System.Runtime.Serialization.EnumMember(Value = @"invalid_tax_number")] + Invalid_tax_number = 14, + + [System.Runtime.Serialization.EnumMember(Value = @"invalid_user_relation")] + Invalid_user_relation = 15, + + [System.Runtime.Serialization.EnumMember(Value = @"invalid_vat_data")] + Invalid_vat_data = 16, + + [System.Runtime.Serialization.EnumMember(Value = @"invoice_number_not_unique")] + Invoice_number_not_unique = 17, + + [System.Runtime.Serialization.EnumMember(Value = @"kobak_processing")] + Kobak_processing = 18, + + [System.Runtime.Serialization.EnumMember(Value = @"missing_document_item_name")] + Missing_document_item_name = 19, + + [System.Runtime.Serialization.EnumMember(Value = @"nav_warn")] + Nav_warn = 20, + + [System.Runtime.Serialization.EnumMember(Value = @"no_online_szamla_settings")] + No_online_szamla_settings = 21, + + [System.Runtime.Serialization.EnumMember(Value = @"no_send_by_user")] + No_send_by_user = 22, + + [System.Runtime.Serialization.EnumMember(Value = @"non_exist_tax_number")] + Non_exist_tax_number = 23, + + [System.Runtime.Serialization.EnumMember(Value = @"not unique")] + Not_unique = 24, + + [System.Runtime.Serialization.EnumMember(Value = @"not_checked")] + Not_checked = 25, + + [System.Runtime.Serialization.EnumMember(Value = @"not_registered_customer")] + Not_registered_customer = 26, + + [System.Runtime.Serialization.EnumMember(Value = @"processing")] + Processing = 27, + + [System.Runtime.Serialization.EnumMember(Value = @"received")] + Received = 28, + + [System.Runtime.Serialization.EnumMember(Value = @"saved")] + Saved = 29, + + [System.Runtime.Serialization.EnumMember(Value = @"send_failed")] + Send_failed = 30, + + [System.Runtime.Serialization.EnumMember(Value = @"sent")] + Sent = 31, + + [System.Runtime.Serialization.EnumMember(Value = @"started")] + Started = 32, + + [System.Runtime.Serialization.EnumMember(Value = @"technical_error")] + Technical_error = 33, + + [System.Runtime.Serialization.EnumMember(Value = @"under_tax_limit")] + Under_tax_limit = 34, + + [System.Runtime.Serialization.EnumMember(Value = @"user_has_invalid_kobak")] + User_has_invalid_kobak = 35, + + [System.Runtime.Serialization.EnumMember(Value = @"user_hasnot_kobak")] + User_hasnot_kobak = 36, + + [System.Runtime.Serialization.EnumMember(Value = @"validation_ok")] + Validation_ok = 37, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class OnlineSzamlaStatusMessage + { + + [System.Text.Json.Serialization.JsonPropertyName("validation_result_code")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Validation_result_code { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("validation_error_code")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Validation_error_code { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("human_readable_message")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Human_readable_message { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class PaymentHistory + { + + [System.Text.Json.Serialization.JsonPropertyName("date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("price")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public float Price { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("payment_method")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public PaymentMethod Payment_method { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("voucher_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Voucher_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("conversion_rate")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float? Conversion_rate { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum PaymentMethod + { + + [System.Runtime.Serialization.EnumMember(Value = @"aruhitel")] + Aruhitel = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"bankcard")] + Bankcard = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"barion")] + Barion = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"barter")] + Barter = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"cash")] + Cash = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"cash_on_delivery")] + Cash_on_delivery = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"coupon")] + Coupon = 6, + + [System.Runtime.Serialization.EnumMember(Value = @"elore_utalas")] + Elore_utalas = 7, + + [System.Runtime.Serialization.EnumMember(Value = @"ep_kartya")] + Ep_kartya = 8, + + [System.Runtime.Serialization.EnumMember(Value = @"kompenzacio")] + Kompenzacio = 9, + + [System.Runtime.Serialization.EnumMember(Value = @"levonas")] + Levonas = 10, + + [System.Runtime.Serialization.EnumMember(Value = @"online_bankcard")] + Online_bankcard = 11, + + [System.Runtime.Serialization.EnumMember(Value = @"other")] + Other = 12, + + [System.Runtime.Serialization.EnumMember(Value = @"paylike")] + Paylike = 13, + + [System.Runtime.Serialization.EnumMember(Value = @"payoneer")] + Payoneer = 14, + + [System.Runtime.Serialization.EnumMember(Value = @"paypal")] + Paypal = 15, + + [System.Runtime.Serialization.EnumMember(Value = @"paypal_utolag")] + Paypal_utolag = 16, + + [System.Runtime.Serialization.EnumMember(Value = @"payu")] + Payu = 17, + + [System.Runtime.Serialization.EnumMember(Value = @"pick_pack_pont")] + Pick_pack_pont = 18, + + [System.Runtime.Serialization.EnumMember(Value = @"postai_csekk")] + Postai_csekk = 19, + + [System.Runtime.Serialization.EnumMember(Value = @"postautalvany")] + Postautalvany = 20, + + [System.Runtime.Serialization.EnumMember(Value = @"skrill")] + Skrill = 21, + + [System.Runtime.Serialization.EnumMember(Value = @"szep_card")] + Szep_card = 22, + + [System.Runtime.Serialization.EnumMember(Value = @"transferwise")] + Transferwise = 23, + + [System.Runtime.Serialization.EnumMember(Value = @"upwork")] + Upwork = 24, + + [System.Runtime.Serialization.EnumMember(Value = @"utalvany")] + Utalvany = 25, + + [System.Runtime.Serialization.EnumMember(Value = @"valto")] + Valto = 26, + + [System.Runtime.Serialization.EnumMember(Value = @"wire_transfer")] + Wire_transfer = 27, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum PaymentStatus + { + + [System.Runtime.Serialization.EnumMember(Value = @"expired")] + Expired = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"none")] + None = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"outstanding")] + Outstanding = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"paid")] + Paid = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"partially_paid")] + Partially_paid = 4, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ReceiptInsert + { + + [System.Text.Json.Serialization.JsonPropertyName("vendor_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Vendor_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("partner_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Partner_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("emails")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Emails { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("block_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public int Block_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public DocumentType Type { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("payment_method")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public PaymentMethod Payment_method { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("currency")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Currency Currency { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("conversion_rate")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Conversion_rate { get; set; } = 1F; + + [System.Text.Json.Serialization.JsonPropertyName("electronic")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Electronic { get; set; } = false; + + [System.Text.Json.Serialization.JsonPropertyName("items")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Items { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ReceiptItemData + { + + [System.Text.Json.Serialization.JsonPropertyName("product_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public int Product_id { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ReceiptProductData + { + + [System.Text.Json.Serialization.JsonPropertyName("name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("unit_price")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public float Unit_price { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Vat Vat { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum Round + { + + [System.Runtime.Serialization.EnumMember(Value = @"five")] + Five = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"none")] + None = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"one")] + One = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"ten")] + Ten = 3, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class SendDocument + { + + [System.Text.Json.Serialization.JsonPropertyName("emails")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Emails { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum UnitPriceType + { + + [System.Runtime.Serialization.EnumMember(Value = @"gross")] + Gross = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"net")] + Net = 1, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum Vat + { + + [System.Runtime.Serialization.EnumMember(Value = @"0%")] + _0_ = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"1%")] + _1_ = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"10%")] + _10_ = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"11%")] + _11_ = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"12%")] + _12_ = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"13%")] + _13_ = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"14%")] + _14_ = 6, + + [System.Runtime.Serialization.EnumMember(Value = @"15%")] + _15_ = 7, + + [System.Runtime.Serialization.EnumMember(Value = @"16%")] + _16_ = 8, + + [System.Runtime.Serialization.EnumMember(Value = @"17%")] + _17_ = 9, + + [System.Runtime.Serialization.EnumMember(Value = @"18%")] + _18_ = 10, + + [System.Runtime.Serialization.EnumMember(Value = @"19%")] + _19_ = 11, + + [System.Runtime.Serialization.EnumMember(Value = @"2%")] + _2_ = 12, + + [System.Runtime.Serialization.EnumMember(Value = @"20%")] + _20_ = 13, + + [System.Runtime.Serialization.EnumMember(Value = @"21%")] + _21_ = 14, + + [System.Runtime.Serialization.EnumMember(Value = @"22%")] + _22_ = 15, + + [System.Runtime.Serialization.EnumMember(Value = @"23%")] + _23_ = 16, + + [System.Runtime.Serialization.EnumMember(Value = @"24%")] + _24_ = 17, + + [System.Runtime.Serialization.EnumMember(Value = @"25%")] + _25_ = 18, + + [System.Runtime.Serialization.EnumMember(Value = @"26%")] + _26_ = 19, + + [System.Runtime.Serialization.EnumMember(Value = @"27%")] + _27_ = 20, + + [System.Runtime.Serialization.EnumMember(Value = @"3%")] + _3_ = 21, + + [System.Runtime.Serialization.EnumMember(Value = @"4%")] + _4_ = 22, + + [System.Runtime.Serialization.EnumMember(Value = @"5%")] + _5_ = 23, + + [System.Runtime.Serialization.EnumMember(Value = @"5,5%")] + _5_5_ = 24, + + [System.Runtime.Serialization.EnumMember(Value = @"6%")] + _6_ = 25, + + [System.Runtime.Serialization.EnumMember(Value = @"7%")] + _7_ = 26, + + [System.Runtime.Serialization.EnumMember(Value = @"7,7%")] + _7_7_ = 27, + + [System.Runtime.Serialization.EnumMember(Value = @"8%")] + _8_ = 28, + + [System.Runtime.Serialization.EnumMember(Value = @"9%")] + _9_ = 29, + + [System.Runtime.Serialization.EnumMember(Value = @"9,5%")] + _9_5_ = 30, + + [System.Runtime.Serialization.EnumMember(Value = @"AAM")] + AAM = 31, + + [System.Runtime.Serialization.EnumMember(Value = @"AM")] + AM = 32, + + [System.Runtime.Serialization.EnumMember(Value = @"EU")] + EU = 33, + + [System.Runtime.Serialization.EnumMember(Value = @"EUK")] + EUK = 34, + + [System.Runtime.Serialization.EnumMember(Value = @"F.AFA")] + F_AFA = 35, + + [System.Runtime.Serialization.EnumMember(Value = @"FAD")] + FAD = 36, + + [System.Runtime.Serialization.EnumMember(Value = @"K.AFA")] + K_AFA = 37, + + [System.Runtime.Serialization.EnumMember(Value = @"MAA")] + MAA = 38, + + [System.Runtime.Serialization.EnumMember(Value = @"TAM")] + TAM = 39, + + [System.Runtime.Serialization.EnumMember(Value = @"ÁKK")] + ÁKK = 40, + + [System.Runtime.Serialization.EnumMember(Value = @"ÁTHK")] + ÁTHK = 41, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentBlock + { + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("prefix")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Prefix { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("custom_field1")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Custom_field1 { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("custom_field2")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Custom_field2 { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public DocumentBlockType Type { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + /// + /// A object with a data property that contains an array of up to limit document blocks. Each entry in the array is a separate document block object. If no more document block are available, the resulting array will be empty. + /// + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentBlockList + { + + [System.Text.Json.Serialization.JsonPropertyName("data")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Data { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Total { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("per_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Per_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("current_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Current_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("last_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Last_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("prev_page_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Prev_page_url { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("next_page_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Next_page_url { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DocumentBlockType + { + + [System.Runtime.Serialization.EnumMember(Value = @"certificate_of_completion")] + Certificate_of_completion = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"dossier")] + Dossier = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"invoice")] + Invoice = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"offer")] + Offer = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"order_form")] + Order_form = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"receipt")] + Receipt = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"waybill")] + Waybill = 6, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class CreateDocumentExport + { + + [System.Text.Json.Serialization.JsonPropertyName("query_type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public DocumentExportQueryType Query_type { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("start_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Start_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("end_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset End_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("document_block_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Document_block_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("export_type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public DocumentExportType Export_type { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("number_start_year")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Number_start_year { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("number_start_sequence")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Number_start_sequence { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("number_end_year")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Number_end_year { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("number_end_sequence")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Number_end_sequence { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("payment_method")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public PaymentMethod Payment_method { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("sort_by")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public DocumentExportSortBy Sort_by { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("other_options")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public DocumentExportOtherOptions Other_options { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("filter_extra")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public DocumentExportFilterExtra Filter_extra { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentExportFilterExtra + { + + [System.Text.Json.Serialization.JsonPropertyName("tensoft_vkod")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Tensoft_vkod { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("ledger_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public LedgerNumberInformation Ledger_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("forintsoft_konyvelesi_naplo_szam")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Forintsoft_konyvelesi_naplo_szam { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("positive_ledger_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Positive_ledger_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("negative_ledger_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Negative_ledger_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("rlb_kata")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Rlb_kata { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("rlb_note")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Rlb_note { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("novitax_naplokod")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Novitax_naplokod { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("use_gross_values")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Use_gross_values { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentExportId + { + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Id { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DocumentExportOtherOptions + { + + [System.Runtime.Serialization.EnumMember(Value = @"all")] + All = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"expired")] + Expired = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"outstanding")] + Outstanding = 2, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DocumentExportQueryType + { + + [System.Runtime.Serialization.EnumMember(Value = @"fulfillment_date")] + Fulfillment_date = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"invoice_date")] + Invoice_date = 1, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DocumentExportSortBy + { + + [System.Runtime.Serialization.EnumMember(Value = @"fulfillment_date")] + Fulfillment_date = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"invoice_date")] + Invoice_date = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"invoice_raw_number")] + Invoice_raw_number = 2, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class DocumentExportStatus + { + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("state")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public DocumentExportStatusState State { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("message")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Message { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DocumentExportStatusState + { + + [System.Runtime.Serialization.EnumMember(Value = @"fail")] + Fail = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"pending")] + Pending = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"processing")] + Processing = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"success")] + Success = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"warning")] + Warning = 4, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DocumentExportType + { + + [System.Runtime.Serialization.EnumMember(Value = @"armada")] + Armada = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"aws_batch")] + Aws_batch = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"ex_panda")] + Ex_panda = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"forintsoft")] + Forintsoft = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"hessyn")] + Hessyn = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"ima")] + Ima = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"infoteka")] + Infoteka = 6, + + [System.Runtime.Serialization.EnumMember(Value = @"kulcs_konyv")] + Kulcs_konyv = 7, + + [System.Runtime.Serialization.EnumMember(Value = @"maxitax")] + Maxitax = 8, + + [System.Runtime.Serialization.EnumMember(Value = @"nagy_machinator")] + Nagy_machinator = 9, + + [System.Runtime.Serialization.EnumMember(Value = @"nav_ptgszlah")] + Nav_ptgszlah = 10, + + [System.Runtime.Serialization.EnumMember(Value = @"nav_status")] + Nav_status = 11, + + [System.Runtime.Serialization.EnumMember(Value = @"nav_xml")] + Nav_xml = 12, + + [System.Runtime.Serialization.EnumMember(Value = @"nav_xml_alias")] + Nav_xml_alias = 13, + + [System.Runtime.Serialization.EnumMember(Value = @"novitax")] + Novitax = 14, + + [System.Runtime.Serialization.EnumMember(Value = @"proforma_outstanding")] + Proforma_outstanding = 15, + + [System.Runtime.Serialization.EnumMember(Value = @"relax")] + Relax = 16, + + [System.Runtime.Serialization.EnumMember(Value = @"rlb")] + Rlb = 17, + + [System.Runtime.Serialization.EnumMember(Value = @"rlb60")] + Rlb60 = 18, + + [System.Runtime.Serialization.EnumMember(Value = @"rlb_double_entry")] + Rlb_double_entry = 19, + + [System.Runtime.Serialization.EnumMember(Value = @"simple_csv")] + Simple_csv = 20, + + [System.Runtime.Serialization.EnumMember(Value = @"simple_excel")] + Simple_excel = 21, + + [System.Runtime.Serialization.EnumMember(Value = @"simple_excel_items")] + Simple_excel_items = 22, + + [System.Runtime.Serialization.EnumMember(Value = @"tensoft")] + Tensoft = 23, + + [System.Runtime.Serialization.EnumMember(Value = @"tensoft_29_dot_65")] + Tensoft_29_dot_65 = 24, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class LedgerNumberInformation + { + + [System.Text.Json.Serialization.JsonPropertyName("bevetel")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Bevetel { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vevo")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Vevo { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("penztar")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Penztar { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("afa")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Afa { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum Feature + { + + [System.Runtime.Serialization.EnumMember(Value = @"api_limit_basic")] + Api_limit_basic = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"api_limit_pro")] + Api_limit_pro = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"api_limit_standard")] + Api_limit_standard = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"banksync_plus")] + Banksync_plus = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"campaign_manager_basic")] + Campaign_manager_basic = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"campaign_manager_standard")] + Campaign_manager_standard = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"ceginfo_enterprise")] + Ceginfo_enterprise = 6, + + [System.Runtime.Serialization.EnumMember(Value = @"ceginfo_pro")] + Ceginfo_pro = 7, + + [System.Runtime.Serialization.EnumMember(Value = @"ceginfo_standard")] + Ceginfo_standard = 8, + + [System.Runtime.Serialization.EnumMember(Value = @"innovator")] + Innovator = 9, + + [System.Runtime.Serialization.EnumMember(Value = @"limit_increase")] + Limit_increase = 10, + + [System.Runtime.Serialization.EnumMember(Value = @"master")] + Master = 11, + + [System.Runtime.Serialization.EnumMember(Value = @"partnermonitor_basic")] + Partnermonitor_basic = 12, + + [System.Runtime.Serialization.EnumMember(Value = @"partnermonitor_pro")] + Partnermonitor_pro = 13, + + [System.Runtime.Serialization.EnumMember(Value = @"partnermonitor_standard")] + Partnermonitor_standard = 14, + + [System.Runtime.Serialization.EnumMember(Value = @"softpos")] + Softpos = 15, + + [System.Runtime.Serialization.EnumMember(Value = @"subscription_basic")] + Subscription_basic = 16, + + [System.Runtime.Serialization.EnumMember(Value = @"subscription_pro")] + Subscription_pro = 17, + + [System.Runtime.Serialization.EnumMember(Value = @"subscription_standard")] + Subscription_standard = 18, + + [System.Runtime.Serialization.EnumMember(Value = @"tendermonitor_standard")] + Tendermonitor_standard = 19, + + [System.Runtime.Serialization.EnumMember(Value = @"tendermonitor_vip")] + Tendermonitor_vip = 20, + + [System.Runtime.Serialization.EnumMember(Value = @"whitelabel")] + Whitelabel = 21, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class OrganizationData + { + + [System.Text.Json.Serialization.JsonPropertyName("tax_code")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Tax_code { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("subscription")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public Subscription Subscription { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class Subscription + { + + [System.Text.Json.Serialization.JsonPropertyName("expiration_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Expiration_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("features")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + + // TODO(system.text.json): Add string enum item converter + public System.Collections.Generic.ICollection Features { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class Partner + { + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("address")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public Address Address { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("emails")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Emails { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("taxcode")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Taxcode { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("iban")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Iban { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("swift")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Swift { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("account_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Account_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("phone")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Phone { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("general_ledger_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string General_ledger_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("tax_type")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(CamelCaseStringEnumConverter))] + public string Tax_type { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("custom_billing_settings")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public PartnerCustomBillingSettings Custom_billing_settings { get; set; } + + /// + /// The tax number of group member. Send tax number for update. Send empty string for delete. Ignored if omitted. + /// + + [System.Text.Json.Serialization.JsonPropertyName("group_member_tax_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Group_member_tax_number { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class PartnerCustomBillingSettings + { + + [System.Text.Json.Serialization.JsonPropertyName("payment_method")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(CamelCaseStringEnumConverter))] + public string Payment_method { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("document_form")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(CamelCaseStringEnumConverter))] + public string Document_form { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("due_days")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int? Due_days { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("document_currency")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public string Document_currency { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("template_language_code")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + //[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public string Template_language_code { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("discount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public Discount Discount { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + /// + /// A object with a data property that contains an array of up to limit partners. Each entry in the array is a separate partner object. If no more partners are available, the resulting array will be empty. + /// + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class PartnerList + { + + [System.Text.Json.Serialization.JsonPropertyName("data")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Data { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Total { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("per_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Per_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("current_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Current_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("last_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Last_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("prev_page_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Prev_page_url { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("next_page_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Next_page_url { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum PartnerTaxType + { + + [System.Runtime.Serialization.EnumMember(Value = @"")] + Empty = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"FOREIGN")] + FOREIGN = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"HAS_TAX_NUMBER")] + HAS_TAX_NUMBER = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"NO_TAX_NUMBER")] + NO_TAX_NUMBER = 3, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class Product + { + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + public string Name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("comment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Comment { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("currency")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Currency Currency { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("vat")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Vat Vat { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("net_unit_price")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Net_unit_price { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("unit")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + public string Unit { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("general_ledger_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string General_ledger_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("general_ledger_taxcode")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string General_ledger_taxcode { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("entitlement")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Entitlement Entitlement { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + /// + /// A object with a data property that contains an array of up to limit products. Each entry in the array is a separate product object. If no more products are available, the resulting array will be empty. + /// + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ProductList + { + + [System.Text.Json.Serialization.JsonPropertyName("data")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Data { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Total { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("per_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Per_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("current_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Current_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("last_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Last_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("prev_page_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Prev_page_url { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("next_page_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Next_page_url { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum Category + { + + [System.Runtime.Serialization.EnumMember(Value = @"advertisement")] + Advertisement = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"development")] + Development = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"other")] + Other = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"overheads")] + Overheads = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"service")] + Service = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"stock")] + Stock = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"tangible_assets")] + Tangible_assets = 6, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum DateType + { + + [System.Runtime.Serialization.EnumMember(Value = @"due_date")] + Due_date = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"fulfillment_date")] + Fulfillment_date = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"invoice_date")] + Invoice_date = 2, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum PaymentStatusSpending + { + + [System.Runtime.Serialization.EnumMember(Value = @"all")] + All = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"paid")] + Paid = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"unpaid")] + Unpaid = 2, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum Source + { + + [System.Runtime.Serialization.EnumMember(Value = @"all")] + All = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"manual")] + Manual = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"nav")] + Nav = 2, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class Spending + { + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("organization_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Organization_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("category")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Category Category { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("paid_at")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset? Paid_at { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("fulfillment_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Fulfillment_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("partner")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public SpendingPartner Partner { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("invoice_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Invoice_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("currency")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Currency Currency { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("conversion_rate")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Conversion_rate { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total_gross")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Total_gross { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total_gross_local")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Total_gross_local { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total_vat_amount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Total_vat_amount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total_vat_amount_local")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Total_vat_amount_local { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("invoice_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Invoice_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("due_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Due_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("payment_method")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public SpendingPaymentMethod Payment_method { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("comment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Comment { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + /// + /// An object with a data property that contains an array of up to limit spending. Each entry in the array is a separate spending object. If no more spending are available, the resulting array will be empty. + /// + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class SpendingList + { + + [System.Text.Json.Serialization.JsonPropertyName("data")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public System.Collections.Generic.ICollection Data { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Total { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("per_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Per_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("current_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Current_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("last_page")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Last_page { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("prev_page_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Prev_page_url { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("next_page_url")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Next_page_url { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class SpendingListItem + { + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("organization_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Organization_id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("category")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Category Category { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("paid_at")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset? Paid_at { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("fulfillment_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Fulfillment_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("partner")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public SpendingPartner Partner { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("invoice_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Invoice_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("currency")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Currency Currency { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("conversion_rate")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Conversion_rate { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total_gross")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Total_gross { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total_gross_local")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Total_gross_local { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total_vat_amount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Total_vat_amount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total_vat_amount_local")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Total_vat_amount_local { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("invoice_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Invoice_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("due_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Due_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("payment_method")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public SpendingPaymentMethod Payment_method { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("comment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Comment { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("is_created_by_nav")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public bool Is_created_by_nav { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class SpendingPartner + { + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Id { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("name")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Name { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("tax_code")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Tax_code { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("address")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public Address Address { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("iban")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Iban { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("swift")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Swift { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("account_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Account_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("phone")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Phone { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("internal_comment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Internal_comment { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("group_member_tax_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Group_member_tax_number { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum SpendingPaymentMethod + { + + [System.Runtime.Serialization.EnumMember(Value = @"aruhitel")] + Aruhitel = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"bankcard")] + Bankcard = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"barion")] + Barion = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"barter")] + Barter = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"cash")] + Cash = 4, + + [System.Runtime.Serialization.EnumMember(Value = @"cash_on_delivery")] + Cash_on_delivery = 5, + + [System.Runtime.Serialization.EnumMember(Value = @"coupon")] + Coupon = 6, + + [System.Runtime.Serialization.EnumMember(Value = @"elore_utalas")] + Elore_utalas = 7, + + [System.Runtime.Serialization.EnumMember(Value = @"ep_kartya")] + Ep_kartya = 8, + + [System.Runtime.Serialization.EnumMember(Value = @"kompenzacio")] + Kompenzacio = 9, + + [System.Runtime.Serialization.EnumMember(Value = @"levonas")] + Levonas = 10, + + [System.Runtime.Serialization.EnumMember(Value = @"online_bankcard")] + Online_bankcard = 11, + + [System.Runtime.Serialization.EnumMember(Value = @"other")] + Other = 12, + + [System.Runtime.Serialization.EnumMember(Value = @"paylike")] + Paylike = 13, + + [System.Runtime.Serialization.EnumMember(Value = @"payoneer")] + Payoneer = 14, + + [System.Runtime.Serialization.EnumMember(Value = @"paypal")] + Paypal = 15, + + [System.Runtime.Serialization.EnumMember(Value = @"paypal_utolag")] + Paypal_utolag = 16, + + [System.Runtime.Serialization.EnumMember(Value = @"payu")] + Payu = 17, + + [System.Runtime.Serialization.EnumMember(Value = @"pick_pack_pont")] + Pick_pack_pont = 18, + + [System.Runtime.Serialization.EnumMember(Value = @"postai_csekk")] + Postai_csekk = 19, + + [System.Runtime.Serialization.EnumMember(Value = @"postautalvany")] + Postautalvany = 20, + + [System.Runtime.Serialization.EnumMember(Value = @"skrill")] + Skrill = 21, + + [System.Runtime.Serialization.EnumMember(Value = @"szep_card")] + Szep_card = 22, + + [System.Runtime.Serialization.EnumMember(Value = @"transferwise")] + Transferwise = 23, + + [System.Runtime.Serialization.EnumMember(Value = @"upwork")] + Upwork = 24, + + [System.Runtime.Serialization.EnumMember(Value = @"utalvany")] + Utalvany = 25, + + [System.Runtime.Serialization.EnumMember(Value = @"valto")] + Valto = 26, + + [System.Runtime.Serialization.EnumMember(Value = @"wire_transfer")] + Wire_transfer = 27, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class SpendingSave + { + + [System.Text.Json.Serialization.JsonPropertyName("currency")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Currency Currency { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("conversion_rate")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public float Conversion_rate { get; set; } = 1F; + + [System.Text.Json.Serialization.JsonPropertyName("total_gross")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public float Total_gross { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total_gross_huf")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public float Total_gross_huf { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total_vat_amount")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public float Total_vat_amount { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("total_vat_amount_huf")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + public float Total_vat_amount_huf { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("fulfillment_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Fulfillment_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("paid_at")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Paid_at { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("category")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public Category Category { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("comment")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Comment { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("invoice_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Invoice_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("invoice_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Invoice_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("due_date")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(DateFormatConverter))] + public System.DateTimeOffset Due_date { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("payment_method")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.Never)] + [System.ComponentModel.DataAnnotations.Required(AllowEmptyStrings = true)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public SpendingPaymentMethod Payment_method { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("partner_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Partner_id { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum CheckTaxNumberMessage + { + + [System.Runtime.Serialization.EnumMember(Value = @"external_nav_service_unreachable")] + External_nav_service_unreachable = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"invalid_tax_number")] + Invalid_tax_number = 1, + + [System.Runtime.Serialization.EnumMember(Value = @"no_online_szamla_settings")] + No_online_szamla_settings = 2, + + [System.Runtime.Serialization.EnumMember(Value = @"non_exist_tax_number")] + Non_exist_tax_number = 3, + + [System.Runtime.Serialization.EnumMember(Value = @"validation_ok")] + Validation_ok = 4, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class Id + { + + [System.Text.Json.Serialization.JsonPropertyName("id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Id1 { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("legacy_id")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Legacy_id { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ServerTime + { + + [System.Text.Json.Serialization.JsonPropertyName("epoch")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public int Epoch { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("formatted")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Formatted { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("w3c")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string W3c { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("timezone")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Timezone { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class TaxNumber + { + + [System.Text.Json.Serialization.JsonPropertyName("tax_number")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + public string Tax_number { get; set; } + + [System.Text.Json.Serialization.JsonPropertyName("result")] + + [System.Text.Json.Serialization.JsonIgnore(Condition = System.Text.Json.Serialization.JsonIgnoreCondition.WhenWritingDefault)] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Serialization.JsonStringEnumConverter))] + public CheckTaxNumberMessage Result { get; set; } + + private System.Collections.Generic.IDictionary _additionalProperties; + + [System.Text.Json.Serialization.JsonExtensionData] + public System.Collections.Generic.IDictionary AdditionalProperties + { + get { return _additionalProperties ?? (_additionalProperties = new System.Collections.Generic.Dictionary()); } + set { _additionalProperties = value; } + } + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public enum Size + { + + [System.Runtime.Serialization.EnumMember(Value = @"58")] + _58 = 0, + + [System.Runtime.Serialization.EnumMember(Value = @"80")] + _80 = 1, + + } + + [System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + internal class DateFormatConverter : System.Text.Json.Serialization.JsonConverter + { + public override System.DateTimeOffset Read(ref System.Text.Json.Utf8JsonReader reader, System.Type typeToConvert, System.Text.Json.JsonSerializerOptions options) + { + var dateTime = reader.GetString(); + if (dateTime == null) + { + throw new System.Text.Json.JsonException("Unexpected JsonTokenType.Null"); + } + + return System.DateTimeOffset.Parse(dateTime); + } + + public override void Write(System.Text.Json.Utf8JsonWriter writer, System.DateTimeOffset value, System.Text.Json.JsonSerializerOptions options) + { + writer.WriteStringValue(value.ToString("yyyy-MM-dd")); + } + } + + [System.CodeDom.Compiler.GeneratedCode("NSwag", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class FileResponse : System.IDisposable + { + private System.IDisposable _client; + private System.IDisposable _response; + + public int StatusCode { get; private set; } + + public System.Collections.Generic.IReadOnlyDictionary> Headers { get; private set; } + + public System.IO.Stream Stream { get; private set; } + + public bool IsPartial + { + get { return StatusCode == 206; } + } + + public FileResponse(int statusCode, System.Collections.Generic.IReadOnlyDictionary> headers, System.IO.Stream stream, System.IDisposable client, System.IDisposable response) + { + StatusCode = statusCode; + Headers = headers; + Stream = stream; + _client = client; + _response = response; + } + + public void Dispose() + { + Stream.Dispose(); + if (_response != null) + _response.Dispose(); + if (_client != null) + _client.Dispose(); + } + } + + + [System.CodeDom.Compiler.GeneratedCode("NSwag", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ApiException : System.Exception + { + public int StatusCode { get; private set; } + + public string Response { get; private set; } + + public System.Collections.Generic.IReadOnlyDictionary> Headers { get; private set; } + + public ApiException(string message, int statusCode, string response, System.Collections.Generic.IReadOnlyDictionary> headers, System.Exception innerException) + : base(message + "\n\nStatus: " + statusCode + "\nResponse: \n" + ((response == null) ? "(null)" : response.Substring(0, response.Length >= 512 ? 512 : response.Length)), innerException) + { + StatusCode = statusCode; + Response = response; + Headers = headers; + } + + public override string ToString() + { + return string.Format("HTTP Response: \n\n{0}\n\n{1}", Response, base.ToString()); + } + } + + [System.CodeDom.Compiler.GeneratedCode("NSwag", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")] + public partial class ApiException : ApiException + { + public TResult Result { get; private set; } + + public ApiException(string message, int statusCode, string response, System.Collections.Generic.IReadOnlyDictionary> headers, TResult result, System.Exception innerException) + : base(message, statusCode, response, headers, innerException) + { + Result = result; + } + } + +} + +#pragma warning restore 108 +#pragma warning restore 114 +#pragma warning restore 472 +#pragma warning restore 612 +#pragma warning restore 1573 +#pragma warning restore 1591 +#pragma warning restore 8073 +#pragma warning restore 3016 +#pragma warning restore 8603 +#pragma warning restore 8604 diff --git a/Nop.Plugin.Misc.BillingoInvoicing/Services/BillingoEmailMessageService.cs b/Nop.Plugin.Misc.BillingoInvoicing/Services/BillingoEmailMessageService.cs new file mode 100644 index 0000000..dc5e33f --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/Services/BillingoEmailMessageService.cs @@ -0,0 +1,294 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; +using System.Threading.Tasks; +using Nop.Core; +using Nop.Core.Domain.Blogs; +using Nop.Core.Domain.Catalog; +using Nop.Core.Domain.Common; +using Nop.Core.Domain.Customers; +using Nop.Core.Domain.Forums; +using Nop.Core.Domain.Messages; +using Nop.Core.Domain.News; +using Nop.Core.Domain.Orders; +using Nop.Core.Domain.Shipping; +using Nop.Core.Domain.Vendors; +using Nop.Core.Events; +using Nop.Services.Affiliates; +using Nop.Services.Catalog; +using Nop.Services.Common; +using Nop.Services.Customers; +using Nop.Services.Localization; +using Nop.Services.Orders; +using Nop.Services.Stores; +using Nop.Services.Messages; + +namespace Nop.Plugin.Misc.BillingoInvoicing.Services +{ + /// + /// Workflow message service + /// + public partial class BillingoEmailMessageService + { + #region Fields + + private readonly CommonSettings _commonSettings; + private readonly EmailAccountSettings _emailAccountSettings; + private readonly IAddressService _addressService; + private readonly IAffiliateService _affiliateService; + private readonly ICustomerService _customerService; + private readonly IEmailAccountService _emailAccountService; + private readonly IEventPublisher _eventPublisher; + private readonly ILanguageService _languageService; + private readonly ILocalizationService _localizationService; + private readonly IMessageTemplateService _messageTemplateService; + private readonly IMessageTokenProvider _messageTokenProvider; + private readonly IOrderService _orderService; + private readonly IProductService _productService; + private readonly IQueuedEmailService _queuedEmailService; + private readonly IStoreContext _storeContext; + private readonly IStoreService _storeService; + private readonly ITokenizer _tokenizer; + private readonly MessagesSettings _messagesSettings; + + #endregion + + #region Ctor + + public BillingoEmailMessageService(CommonSettings commonSettings, + EmailAccountSettings emailAccountSettings, + IAddressService addressService, + IAffiliateService affiliateService, + ICustomerService customerService, + IEmailAccountService emailAccountService, + IEventPublisher eventPublisher, + ILanguageService languageService, + ILocalizationService localizationService, + IMessageTemplateService messageTemplateService, + IMessageTokenProvider messageTokenProvider, + IOrderService orderService, + IProductService productService, + IQueuedEmailService queuedEmailService, + IStoreContext storeContext, + IStoreService storeService, + ITokenizer tokenizer, + MessagesSettings messagesSettings) + { + _commonSettings = commonSettings; + _emailAccountSettings = emailAccountSettings; + _addressService = addressService; + _affiliateService = affiliateService; + _customerService = customerService; + _emailAccountService = emailAccountService; + _eventPublisher = eventPublisher; + _languageService = languageService; + _localizationService = localizationService; + _messageTemplateService = messageTemplateService; + _messageTokenProvider = messageTokenProvider; + _orderService = orderService; + _productService = productService; + _queuedEmailService = queuedEmailService; + _storeContext = storeContext; + _storeService = storeService; + _tokenizer = tokenizer; + _messagesSettings = messagesSettings; + } + + #endregion + + #region Utilities + + /// + /// Get active message templates by the name + /// + /// Message template name + /// Store identifier + /// + /// A task that represents the asynchronous operation + /// The task result contains the list of message templates + /// + protected virtual async Task> GetActiveMessageTemplatesAsync(string messageTemplateName, int storeId) + { + //get message templates by the name + var messageTemplates = await _messageTemplateService.GetMessageTemplatesByNameAsync(messageTemplateName, storeId); + + //no template found + if (!messageTemplates?.Any() ?? true) + return new List(); + + //filter active templates + messageTemplates = messageTemplates.Where(messageTemplate => messageTemplate.IsActive).ToList(); + + return messageTemplates; + } + + /// + /// Get EmailAccount to use with a message templates + /// + /// Message template + /// Language identifier + /// + /// A task that represents the asynchronous operation + /// The task result contains the emailAccount + /// + protected virtual async Task GetEmailAccountOfMessageTemplateAsync(MessageTemplate messageTemplate, int languageId) + { + var emailAccountId = await _localizationService.GetLocalizedAsync(messageTemplate, mt => mt.EmailAccountId, languageId); + //some 0 validation (for localizable "Email account" dropdownlist which saves 0 if "Standard" value is chosen) + if (emailAccountId == 0) + emailAccountId = messageTemplate.EmailAccountId; + + var emailAccount = (await _emailAccountService.GetEmailAccountByIdAsync(emailAccountId) ?? await _emailAccountService.GetEmailAccountByIdAsync(_emailAccountSettings.DefaultEmailAccountId)) ?? + (await _emailAccountService.GetAllEmailAccountsAsync()).FirstOrDefault(); + return emailAccount; + } + + /// + /// Ensure language is active + /// + /// Language identifier + /// Store identifier + /// + /// A task that represents the asynchronous operation + /// The task result contains the return a value language identifier + /// + protected virtual async Task EnsureLanguageIsActiveAsync(int languageId, int storeId) + { + //load language by specified ID + var language = await _languageService.GetLanguageByIdAsync(languageId); + + if (language == null || !language.Published) + { + //load any language from the specified store + language = (await _languageService.GetAllLanguagesAsync(storeId: storeId)).FirstOrDefault(); + } + + if (language == null || !language.Published) + { + //load any language + language = (await _languageService.GetAllLanguagesAsync()).FirstOrDefault(); + } + + if (language == null) + throw new Exception("No active language could be loaded"); + + return language.Id; + } + + /// + /// Get email and name to send email for store owner + /// + /// Message template email account + /// Email address and name to send email fore store owner + protected virtual async Task<(string email, string name)> GetStoreOwnerNameAndEmailAsync(EmailAccount messageTemplateEmailAccount) + { + var storeOwnerEmailAccount = _messagesSettings.UseDefaultEmailAccountForSendStoreOwnerEmails ? await _emailAccountService.GetEmailAccountByIdAsync(_emailAccountSettings.DefaultEmailAccountId) : null; + storeOwnerEmailAccount ??= messageTemplateEmailAccount; + + return (storeOwnerEmailAccount.Email, storeOwnerEmailAccount.DisplayName); + } + + #endregion + + #region Methods + + public virtual async Task SendErrorToStoreOwnerNotificationMessageAsync(string errorMessage, int languageId, Order order) + { + var store = await _storeContext.GetCurrentStoreAsync(); + languageId = await EnsureLanguageIsActiveAsync(languageId, store.Id); + + + //tokens + var commonTokens = new List(); + await _messageTokenProvider.AddOrderTokensAsync(commonTokens, order, languageId); + await _messageTokenProvider.AddCustomerTokensAsync(commonTokens, order.CustomerId); + + var messageTemplates = await _messageTemplateService.GetMessageTemplatesByNameAsync(MessageTemplateSystemNames.ORDER_PAID_STORE_OWNER_NOTIFICATION, store.Id); + var messageTemplate = messageTemplates.First(); + + //email account + var emailAccount = await GetEmailAccountOfMessageTemplateAsync(messageTemplate, languageId); + + var tokens = new List(commonTokens); + await _messageTokenProvider.AddStoreTokensAsync(tokens, store, emailAccount); + + var (toEmail, toName) = await GetStoreOwnerNameAndEmailAsync(emailAccount); + + return await SendNotificationAsync(errorMessage, emailAccount, languageId, tokens, toEmail, toName); + + } + + + + #region Common + + /// + /// Send notification + /// + /// Message template + /// Email account + /// Language identifier + /// Tokens + /// Recipient email address + /// Recipient name + /// Attachment file path + /// Attachment file name + /// "Reply to" email + /// "Reply to" name + /// Sender email. If specified, then it overrides passed "emailAccount" details + /// Sender name. If specified, then it overrides passed "emailAccount" details + /// Subject. If specified, then it overrides subject of a message template + /// + /// A task that represents the asynchronous operation + /// The task result contains the queued email identifier + /// + public virtual async Task SendNotificationAsync(string errorMessage, + EmailAccount emailAccount, int languageId, IList tokens, + string toEmailAddress, string toName, + string attachmentFilePath = null, string attachmentFileName = null, + string replyToEmailAddress = null, string replyToName = null, + string fromEmail = null, string fromName = null, string subject = null) + { + + if (emailAccount == null) + throw new ArgumentNullException(nameof(emailAccount)); + + if (string.IsNullOrEmpty(subject)) + subject = "BillingoInvoicing error occured"; + var body = errorMessage; + + //Replace subject and body tokens + var subjectReplaced = _tokenizer.Replace(subject, tokens, false); + var bodyReplaced = _tokenizer.Replace(body, tokens, true); + + //limit name length + toName = CommonHelper.EnsureMaximumLength(toName, 300); + + var email = new QueuedEmail + { + Priority = QueuedEmailPriority.High, + From = !string.IsNullOrEmpty(fromEmail) ? fromEmail : emailAccount.Email, + FromName = !string.IsNullOrEmpty(fromName) ? fromName : emailAccount.DisplayName, + To = toEmailAddress, + ToName = toName, + ReplyTo = replyToEmailAddress, + ReplyToName = replyToName, + CC = string.Empty, + Subject = subjectReplaced, + Body = bodyReplaced, + AttachmentFilePath = attachmentFilePath, + AttachmentFileName = attachmentFileName, + CreatedOnUtc = DateTime.UtcNow, + EmailAccountId = emailAccount.Id, + }; + + await _queuedEmailService.InsertQueuedEmailAsync(email); + return email.Id; + } + + #endregion + + #endregion + } +} diff --git a/Nop.Plugin.Misc.BillingoInvoicing/Services/InvoiceGenerator.cs b/Nop.Plugin.Misc.BillingoInvoicing/Services/InvoiceGenerator.cs new file mode 100644 index 0000000..47caeb8 --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/Services/InvoiceGenerator.cs @@ -0,0 +1,149 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Net.Http; +using System.Text; +using System.Threading.Tasks; +using DocumentFormat.OpenXml.Spreadsheet; +using Nop.Core; +using Nop.Core.Domain.Orders; +using Nop.Services.Catalog; +using Nop.Services.Common; +using Nop.Services.Configuration; +using Nop.Services.Directory; +using Nop.Services.Events; +using Nop.Services.Logging; +using Nop.Services.Orders; + +namespace Nop.Plugin.Misc.BillingoInvoicing.Services +{ + public class InvoiceGenerator : IConsumer + { + private BillingoClientService _billingoService; + private readonly IOrderService _orderService; + private readonly IProductService _productService; + private readonly IAddressService _addressService; + private readonly ICountryService _countryService; + private readonly ISettingService _settingService; + private readonly ILogger _logger; + private readonly BillingoEmailMessageService _billingoEmailMessageService; + private readonly IStoreContext _storeContext; + + public InvoiceGenerator( + BillingoClientService billingoClientService, + IOrderService orderService, + IProductService productService, + IAddressService addressService, + ICountryService countryService, + IStoreContext storeContext, + ISettingService settingService, + ILogger logger, + BillingoEmailMessageService billingoEmailMessageService) + { + _billingoService = billingoClientService; + _orderService = orderService; + _productService = productService; + _addressService = addressService; + _countryService = countryService; + _storeContext = storeContext; + _settingService = settingService; + _logger = logger; + _billingoEmailMessageService = billingoEmailMessageService; + } + + public async Task HandleEventAsync(OrderPaidEvent eventMessage) + { + try + { + if (eventMessage?.Order != null) + { + var orderItems = await _orderService.GetOrderItemsAsync(eventMessage.Order.Id); + var currentAddress = await _addressService.GetAddressByIdAsync(eventMessage.Order.BillingAddressId); + var currentCountry = (await _countryService.GetCountryByAddressAsync(currentAddress)); + var partnersWithName = await _billingoService.ListPartnerAsync(1, 100, $"{currentAddress.LastName} {currentAddress.FirstName}"); + Partner currentPartner = partnersWithName.Data.Where(partner => partner.Iban == eventMessage.Order.CardNumber + && partner.Address.Country_code.ToString() == currentCountry.TwoLetterIsoCode + && partner.Address.City == currentAddress.City + && partner.Address.Post_code == currentAddress.ZipPostalCode + && partner.Address.Address1 == currentAddress.Address1).FirstOrDefault(); + + if (currentPartner == null) + { + var partner = new Partner() + { + Name = $"{currentAddress.LastName} {currentAddress.FirstName}", + Address = new Address + { + Address1 = currentAddress.Address1, + City = currentAddress.City, + Country_code = currentCountry.TwoLetterIsoCode, + Post_code = currentAddress.ZipPostalCode + }, + Emails = new List() { currentAddress.Email } + }; + currentPartner = await _billingoService.CreatePartnerAsync(partner); + } + + var storeId = await _storeContext.GetActiveStoreScopeConfigurationAsync(); + var settings = await _settingService.LoadSettingAsync(storeId); + + var document = new DocumentInsert() + { + Partner_id = currentPartner.Id, //1802491707, + Block_id = settings.BlockId, //217127, + Bank_account_id = 179109, + Type = "invoice", + Fulfillment_date = DateTime.Now, + Due_date = DateTime.Now, + Payment_method = "paypal", + Language = "hu", + Currency = "HUF", + Conversion_rate = 1, + Electronic = false, + Paid = true, + Items = new List(), + Settings = new DocumentSettings() + { + Mediated_service = false, + Without_financial_fulfillment = false, + Round = "one", + No_send_onlineszamla_by_user = true, + Order_number = eventMessage.Order.Id.ToString(), + Place_id = 0, + Instant_payment = true, + Selected_type = "invoice" + }, + }; + foreach (var orderItem in orderItems) + { + var product = await _productService.GetProductByIdAsync(orderItem.ProductId); + var productData = new DocumentProductData() + { + Name = product.Name, + Unit_price = (float)orderItem.UnitPriceInclTax, + Unit_price_type = "gross", + Quantity = orderItem.Quantity, + Unit = "db", + Vat = "27%", + Entitlement = "AAM" + }; + document.Items.Add(productData); + } + var invoice = await _billingoService.CreateDocumentAsync(document); + + await _billingoService.SendDocumentAsync(invoice.Id, new SendDocument + { + Emails = new List() { currentAddress.Email }, + }); + } + } + catch (Exception ex) + { + var errorMessage = $"Billingo invoice creation failed at userId {eventMessage.Order.CustomerId}, message: {ex.Message}"; + await _logger.ErrorAsync(errorMessage, ex); + await _billingoEmailMessageService.SendErrorToStoreOwnerNotificationMessageAsync(errorMessage, eventMessage.Order.CustomerLanguageId, eventMessage.Order); + } + } + } +} diff --git a/Nop.Plugin.Misc.BillingoInvoicing/Views/Configure.cshtml b/Nop.Plugin.Misc.BillingoInvoicing/Views/Configure.cshtml new file mode 100644 index 0000000..bfd9382 --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/Views/Configure.cshtml @@ -0,0 +1,50 @@ +@model ConfigurationModel + +@{ + Layout = "_ConfigurePlugin"; +} + +@await Component.InvokeAsync(typeof(StoreScopeConfigurationViewComponent)) + +
+
+
+
+ @T("Plugins.Misc.BillingoInvoicing.Title") +
+
+

+ Ez egy NopCommerce automatikus számlageneráló plugin a Billingo számlázórendszerhez.
+ Szükséges, hogy legyen API és tömeges számlagenerálás előfizetése.
+ Kizárólag saját felelősségre használható!
+ Hozzon létre egy V3 API kulcsot: Hol tudok API kulcsot generálni? + Hozzon létre egy számlatömböt: Új bizonylattömb létrehozása +

+
+
+
+ +
+
+ + +
+
+
+
+ +
+
+ + +
+
+
+
+ +
+
+
+
+
+
\ No newline at end of file diff --git a/Nop.Plugin.Misc.BillingoInvoicing/Views/_ViewImports.cshtml b/Nop.Plugin.Misc.BillingoInvoicing/Views/_ViewImports.cshtml new file mode 100644 index 0000000..0319f27 --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/Views/_ViewImports.cshtml @@ -0,0 +1,13 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework + +@using Nop.Web.Areas.Admin.Components +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Nop.Web.Framework.UI +@using Nop.Web.Framework.Extensions +@using System.Text.Encodings.Web +@using Nop.Services.Events +@using Nop.Web.Framework.Events +@using Nop.Web.Framework.Infrastructure +@using Nop.Plugin.Misc.BillingoInvoicing.Models \ No newline at end of file diff --git a/Nop.Plugin.Misc.BillingoInvoicing/logo.jpg b/Nop.Plugin.Misc.BillingoInvoicing/logo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..29e93681156f2b78e3b531a21f60682e5093f057 GIT binary patch literal 3621 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 B{Gb2; literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.BillingoInvoicing/plugin.json b/Nop.Plugin.Misc.BillingoInvoicing/plugin.json new file mode 100644 index 0000000..1e76b6a --- /dev/null +++ b/Nop.Plugin.Misc.BillingoInvoicing/plugin.json @@ -0,0 +1,11 @@ +{ + "Group": "Misc", + "FriendlyName": "Billingo Invoicing", + "SystemName": "Misc.BillingoInvoicing", + "Version": "1.00", + "SupportedVersions": [ "4.70" ], + "Author": "András Vesztergombi", + "DisplayOrder": 1, + "FileName": "Nop.Plugin.Misc.BillingoInvoicing.dll", + "Description": "" +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/Areas/Admin/Views/_ViewImports.cshtml b/Nop.Plugin.Misc.MyTestPlugin1/Areas/Admin/Views/_ViewImports.cshtml new file mode 100644 index 0000000..270744e --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/Areas/Admin/Views/_ViewImports.cshtml @@ -0,0 +1,10 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework + +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Nop.Web.Framework.UI +@using Nop.Web.Framework.Extensions +@using System.Text.Encodings.Web +@using Nop.Services.Events +@using Nop.Web.Framework.Events \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/Components/CustomViewComponent.cs b/Nop.Plugin.Misc.MyTestPlugin1/Components/CustomViewComponent.cs new file mode 100644 index 0000000..0809817 --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/Components/CustomViewComponent.cs @@ -0,0 +1,19 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Web.Framework.Components; + +namespace Nop.Plugin.Misc.MyTestPlugin1.Components +{ + [ViewComponent(Name = "Custom")] + public class CustomViewComponent : NopViewComponent + { + public CustomViewComponent() + { + + } + + public IViewComponentResult Invoke(int productId) + { + throw new NotImplementedException(); + } + } +} diff --git a/Nop.Plugin.Misc.MyTestPlugin1/Domains/CustomTable.cs b/Nop.Plugin.Misc.MyTestPlugin1/Domains/CustomTable.cs new file mode 100644 index 0000000..57f9a11 --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/Domains/CustomTable.cs @@ -0,0 +1,9 @@ +using Nop.Core; + +namespace Nop.Plugin.Misc.MyTestPlugin1.Domains +{ + public partial class CustomTable : BaseEntity + { + + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/Infrastructure/PluginNopStartup.cs b/Nop.Plugin.Misc.MyTestPlugin1/Infrastructure/PluginNopStartup.cs new file mode 100644 index 0000000..e16fcbd --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/Infrastructure/PluginNopStartup.cs @@ -0,0 +1,40 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Mvc.Razor; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Nop.Core.Infrastructure; + +namespace Nop.Plugin.Misc.MyTestPlugin1.Infrastructure +{ + public class PluginNopStartup : INopStartup + { + /// + /// Add and configure any of the middleware + /// + /// Collection of service descriptors + /// Configuration of the application + public void ConfigureServices(IServiceCollection services, IConfiguration configuration) + { + services.Configure(options => + { + options.ViewLocationExpanders.Add(new ViewLocationExpander()); + }); + + //register services and interfaces + //services.AddScoped(); + } + + /// + /// Configure the using of added middleware + /// + /// Builder for configuring an application's request pipeline + public void Configure(IApplicationBuilder application) + { + } + + /// + /// Gets order of this startup configuration implementation + /// + public int Order => 3000; + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/Infrastructure/RouteProvider.cs b/Nop.Plugin.Misc.MyTestPlugin1/Infrastructure/RouteProvider.cs new file mode 100644 index 0000000..8bf3699 --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/Infrastructure/RouteProvider.cs @@ -0,0 +1,25 @@ +using Microsoft.AspNetCore.Routing; +using Nop.Web.Framework.Mvc.Routing; + +namespace Nop.Plugin.Misc.MyTestPlugin1.Infrastructure +{ + /// + /// Represents plugin route provider + /// + public class RouteProvider : IRouteProvider + { + /// + /// Register routes + /// + /// Route builder + public void RegisterRoutes(IEndpointRouteBuilder endpointRouteBuilder) + { + + } + + /// + /// Gets a priority of route provider + /// + public int Priority => 0; + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/Infrastructure/ViewLocationExpander.cs b/Nop.Plugin.Misc.MyTestPlugin1/Infrastructure/ViewLocationExpander.cs new file mode 100644 index 0000000..1516d6f --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/Infrastructure/ViewLocationExpander.cs @@ -0,0 +1,39 @@ +using Microsoft.AspNetCore.Mvc.Razor; + +namespace Nop.Plugin.Misc.MyTestPlugin1.Infrastructure +{ + public class ViewLocationExpander : IViewLocationExpander + { + /// + /// Invoked by a to determine the values that would be consumed by this instance + /// of . The calculated values are used to determine if the view location + /// has changed since the last time it was located. + /// + /// The for the current view location + /// expansion operation. + public void PopulateValues(ViewLocationExpanderContext context) + { + } + + /// + /// Invoked by a to determine potential locations for a view. + /// + /// The for the current view location + /// expansion operation. + /// The sequence of view locations to expand. + /// A list of expanded view locations. + public IEnumerable ExpandViewLocations(ViewLocationExpanderContext context, IEnumerable viewLocations) + { + if (context.AreaName == "Admin") + { + viewLocations = new[] { $"/Plugins/Nop.Plugin.Misc.MyTestPlugin1/Areas/Admin/Views/{context.ControllerName}/{context.ViewName}.cshtml" }.Concat(viewLocations); + } + else + { + viewLocations = new[] { $"/Plugins/Nop.Plugin.Misc.MyTestPlugin1/Views/{context.ControllerName}/{context.ViewName}.cshtml" }.Concat(viewLocations); + } + + return viewLocations; + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/Mapping/Builders/PluginBuilder.cs b/Nop.Plugin.Misc.MyTestPlugin1/Mapping/Builders/PluginBuilder.cs new file mode 100644 index 0000000..8d3f3f8 --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/Mapping/Builders/PluginBuilder.cs @@ -0,0 +1,21 @@ +using FluentMigrator.Builders.Create.Table; +using Nop.Data.Mapping.Builders; +using Nop.Plugin.Misc.MyTestPlugin1.Domains; + +namespace Nop.Plugin.Misc.MyTestPlugin1.Mapping.Builders +{ + public class PluginBuilder : NopEntityBuilder + { + #region Methods + + /// + /// Apply entity configuration + /// + /// Create table expression builder + public override void MapEntity(CreateTableExpressionBuilder table) + { + } + + #endregion + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/Mapping/NameCompatibility.cs b/Nop.Plugin.Misc.MyTestPlugin1/Mapping/NameCompatibility.cs new file mode 100644 index 0000000..284e830 --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/Mapping/NameCompatibility.cs @@ -0,0 +1,17 @@ +using Nop.Data.Mapping; + +namespace Nop.Plugin.Misc.MyTestPlugin1.Mapping +{ + public partial class NameCompatibility : INameCompatibility + { + /// + /// Gets table name for mapping with the type + /// + public Dictionary TableNames => new(); + + /// + /// Gets column name for mapping with the entity's property and type + /// + public Dictionary<(Type, string), string> ColumnName => new(); + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/Migrations/SchemaMigration.cs b/Nop.Plugin.Misc.MyTestPlugin1/Migrations/SchemaMigration.cs new file mode 100644 index 0000000..53b1074 --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/Migrations/SchemaMigration.cs @@ -0,0 +1,20 @@ +using FluentMigrator; +using Nop.Data.Extensions; +using Nop.Data.Migrations; +using Nop.Plugin.Misc.MyTestPlugin1.Domains; + +namespace Nop.Plugin.Misc.MyTestPlugin1.Migrations +{ + //2022-04-05 17:00:00 + [NopMigration("2024-10-22 11:45:18", "Nop.Plugin.Misc.MyTestPlugin1 schema", MigrationProcessType.Installation)] + public class SchemaMigration : AutoReversingMigration + { + /// + /// Collect the UP migration expressions + /// + public override void Up() + { + Create.TableFor(); + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/MyTestPlugin.cs b/Nop.Plugin.Misc.MyTestPlugin1/MyTestPlugin.cs new file mode 100644 index 0000000..81b444c --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/MyTestPlugin.cs @@ -0,0 +1,11 @@ +using Nop.Services.Plugins; + +namespace Nop.Plugin.Misc.MyTestPlugin1 +{ + /// + /// Rename this file and change to the correct type + /// + public class MyTestPlugin : BasePlugin + { + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/Nop.Plugin.Misc.MyTestPlugin1.csproj b/Nop.Plugin.Misc.MyTestPlugin1/Nop.Plugin.Misc.MyTestPlugin1.csproj new file mode 100644 index 0000000..1cb87dc --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/Nop.Plugin.Misc.MyTestPlugin1.csproj @@ -0,0 +1,68 @@ + + + + net8.0 + ..\..\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.MyTestPlugin1 + $(OutputPath) + + false + enable + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Nop.Plugin.Misc.MyTestPlugin1/Views/_ViewImports.cshtml b/Nop.Plugin.Misc.MyTestPlugin1/Views/_ViewImports.cshtml new file mode 100644 index 0000000..253a8a0 --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/Views/_ViewImports.cshtml @@ -0,0 +1,11 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework + +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Nop.Web.Framework.UI +@using Nop.Web.Framework.Extensions +@using System.Text.Encodings.Web +@using Nop.Services.Events +@using Nop.Web.Framework.Events +@using Nop.Web.Framework.Infrastructure \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/logo.jpg b/Nop.Plugin.Misc.MyTestPlugin1/logo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cae3ce3f17ad9ee8604dab7af6726378985e81ae GIT binary patch literal 3118 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 +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.AssemblyInfo.cs b/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.AssemblyInfo.cs new file mode 100644 index 0000000..3cd433f --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Nop.Plugin.Misc.MyTestPlugin1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Nop.Plugin.Misc.MyTestPlugin1")] +[assembly: System.Reflection.AssemblyTitleAttribute("Nop.Plugin.Misc.MyTestPlugin1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.AssemblyInfoInputs.cache b/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.AssemblyInfoInputs.cache new file mode 100644 index 0000000..83e432b --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d9c6bfc69fbee00446024090601d4e410296f5f89c4125785fc03c41f6f621a4 diff --git a/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.GeneratedMSBuildEditorConfig.editorconfig b/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..cb3ec24 --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.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 = Nop.Plugin.Misc.MyTestPlugin1 +build_property.ProjectDir = D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.MyTestPlugin1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.GlobalUsings.g.cs b/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.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/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.assets.cache b/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/Nop.Plugin.Misc.MyTestPlugin1.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..782ee71c10b1816ffe88501bb76a5f771c16fea7 GIT binary patch literal 136335 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/project.razor.vs.bin b/Nop.Plugin.Misc.MyTestPlugin1/obj/Debug/net8.0/project.razor.vs.bin new file mode 100644 index 0000000000000000000000000000000000000000..6bbfd02613e8988312e7f5f38b3a908434b146be GIT binary patch literal 241221 zcmdqJ2|SctA2*&Q`&P(OYAmG)$x;g0vWBdwkilTG48~qs6e^N*6(Uk8q#{}@No1?x zRHxFkD5M3gv~T}&%^=*}cd4Gw|9#)*^L(C1XRhlkzxDfD&XvkW_cvPLY#AEhOLVr> zw=%I_w%EXV2_=kVKn|fgTTue-Yz>{4`h|Lv0~r5QX8x^gNv3)zTSnTGs3FV|RcDI( zYG)&od#JZ_04Zd?@*L;DV9IKeM~HGTF^Uqb97a`kCkN2|{?>A6Z~wj-We+O8I(Ed; z(NIZEdCoz!pBmO(cUinKuj4O)_bY4K=n>#Kdv1Tx-0p zR?a-#eGTx6#`6u*LSZGqwq*aOyGFWKF<8{o@l=b_ss!}w9A~$`6fgk`>)luvmW4hA zp--1*yj|fdg8_%bMrN=~a|@VZX=u?loy7>=FOiVmJkEv!Z#H-GTnd)X!Ql0%wQ5oZ z?Ww@fWWMBAm-&t`A;@CVQua-3aFenHyXMiVD;UsB(+T~ zOXhrY8gM7pWcSrYp2T2vpuzjo$s&$0$@ki(l)IgE@Fjcb27gTvT@bydZR6=jsar9) zMJ$(F?6RjDtX!qLVT<76Ah<*KQir9ai!gBPF}GNDUgazXBG~7UQq$Fw0AKHhuS%L9 zMc|#Sao5ZZ4NBm4mIpIFWE~O4fY)>r4t?DU0?hMWlp;-h*a5q8vnQp$J{1SwfA*!i zgvCZ-z@J<9*6D@2CWDaWuO*6QHoCyL7v22!0Xge|o)vA|gY^nB7<^UHC1Kg{i2xSp zsvq8$bmKYPJtHt*-C-6LcBVI*h~0m@4}*<4yeGWu`omzIulTcBf^13fT($BWDR;>S z@Y=Q=he~HH$iYCE`1lyT@lO?D$HE;#noh=-VSQR7t4QnBoq)BqG6!_jvtkffm zO2Ha-d)l2ZF!4ovr6rHgda(XA{l#J1{8X^w2^Q|m+bxCx_m3K0=aYSU!Ia0WUkxq` zvjDH-&4(Tk^dG@0F9H70kR%@r#@1@@S(*M?3x1eAjU0ZwVheDae4oegfyr^$(=cv= z?yRY87*I*QDm%q0rv;urbH8MllZ*vS^LF#lezS8o2-B#RIW#eHKL#@`8xoc1oY%ne z{tVh-0c$C^??tL_A?!Ke>`RUWbMk ztpbtHgVWZjhc5wc%eHJWX)%z;;GO#y-)Y@{uMM9hygN5zrk9j2=f7B4&K z+jsuM0SvYqxSq_gXIT&XKQ0JcyWsOTK)f6FH0E9@ADE?Sq}^l`!-WB*FtgmvS{mqXX1PitR>)bbH&$Qp~gGY{@3cIAh zY6Vu5Os&5uZ>xsEufYo|n_jJy1rF2uFNsv$hyeQD)bjcDuD|=sYgh+PCEW9PR|Pvv_iIlI+2sb~&Ej+|_{ZrYOD8=qva~y}5b#r;W-SH76ml+ryH<|7G}k1&4wi|uKbpBO%nokv zIu^Doiu)o4$hCGc@yVe;S;dYk0L`&U9|}wHkhS9&rG!e>D^=QWo+&R^MI)To}KJ{;+?Q^e@w{T z)n~cDOtBA}Z(2T{fx(z*@H?_uz4 z$ck?9z&ux2UbXag!R{6#*wVW$wM^{M4d8VnmuL6-C#x|aVb1Sc&B2f*A_n~2xrCIn&dfoe0m?~a~282f6?vG(wDIj|`$dhG_@EvJ#uR_?Pd zeO-gWBiTuZg}Zc2(P4Q-bfNvUPe3J`aU4OLIR?P%h}izzXU&(_FP2eR%k^ z=`8aJoJ2sXT%)r)B10FJJnXdI%C+qo2KSV{@CZ)1SO(KJ(`4#aI6nmz{KdSYMW0=O zxXW5L7q03`q%E=8Ys0MP_=9QOO2(fn1>Zv~G2|U3Lh&rT`LyCrV)x1~80@~^y_=;k zt^n|*iWg0#J+T5#$F-m5AC!mzZmil@-*9-VV?a13a&!3tw)H?f{Oq^4?pMQrnbudC z$UDyiU|DxW`U#8qaTwgLYHZUlZ^Z>)o;XxD``Nb+A2{NB6!+`5X-1-Cn&k=n%ULaM>_xXKJcu zEsW8*FVcLy)(zfG>%8BjAtr*s{)rs%Qp(YD0MFHmwXt3I$HN1%A>Rrn`dYyaJKGw2 zAnP#<#w#_QwYfi~1SU#Fx0V}pi30g9-o0DKy^R5i^Y)vmpR#MkfTJ8+oqhJh1bBVY z8}nC6AAEu8!GzVXPH(7!-!^^oPkIrD6yg5Dl>HKKZuJ9+6m0qP9rttLZXVT1bDwqC z!1x}HTR|mmF&N;HW1F0*gX5q0@WHPa_h1&QK3Y zdj1*SUUS=+m*Bn=XfzueTq=j@K+W&mt9(1bIt+-rM<2d+MYaZBxUuuynyw}f;IUN0 zsO+eOD6Dz?Vgq@@*%cVv{IX-3U-89ynEtJe)B2*V7+9CyDJ)S}xdj$3lU}8>#^OB& zrps*cFpOWW0aIH~8okSMxDM}{PFg|bcH@ED({sdOc;-p1GPu%yuRMO~ufU?)LUvTnn;Sx7m#N>6NVk#qtR+=4=c_$sZ;OhvY)QvXR7K97>QYUR`3NnOu4sFaz(DvzuZ`PVT z^^xDu1JfR7T{MrSPeL{`HB~9{^tLRpFZUhY2PRnv>CHeHg+Y*n&GQ$plmSGOW<`BlYqFm-G3e1*Dzo4{?e{Nd=v_f;4?u_&~v?9B>0m{vl~ zG(Mx70MEX>@ubRO?Q+;C1Cjz?u8YNBq7S?K{jz;3LO# zoM7Ra17ch2Xv={YH=m53)mm%VHETjm6fr9s+3`i`Yi49P$HR7FDG!^S1Od1$usWfZ zC&;m*6>xtoaZ~MlcoTw zsp*khud=TLWx-<;gbl-{V6Zqh_nutz%TsVi4e9(_s<CU+v*SB*5ymk0FYjeTO9+)I<>9hWBnkO=13mU7Mo;)mpN%~Fx zDY2H$!2UzSs?9s5`@^n~+?s5f(0l~7r*GA}UNvqmtQ>E9QE=xQ2Y8a>iGV@t{x`te z%J*c%1^Wd^=y-|sdO>^lLaaXT(R`O%et;rTa`)g@^Fv_O)te=UYdHKdxGyr>&neNl z8VHQvtY?$s5(4~nAI7t8u9{tPbSj-zS0Mmi}3lEM7+J?eONZRz=OcMccttrGVM-XCl4edFeZ< zPjVG6V~`fzwL2hRb}ArWw$k@I#As$fBJA1*hb!6Zkfm#%y|nQKMGokE zWWVy!pN$5_aip^*PG6bUK>SEWbNa-g7l2Pt8r6-cRFnH*g&xEd& z>^1O>tns$j3CqR7v{xd=VQ=p{0jlRV(ST?Rgv3s1H7O^ij*o%eoRQJ}J_n+JZqV*8 znr-xM;9wS|x35Kq69a1ErlxH<1V_M2ZJQ~Z>~SBkTsYRJ%KPyYST;wv?D8>vSAQlqCLJVFiS}OO|q%9fP84%_?xawdH z&u{3Ty?=Kn31Vv+Wku5H>KH6Iz3Pp$_04-=eZi@=DJP3w04GAX9#K6&3O?E+*%F!X zH3MzDW~Y%(>e^sHAxpj)=MbO-Y-IcC5eiG1fE<)G4n3fSq2=}zT)YbptAXgb?cx{e z#d(3H8Q)1`k!kF(l;pc`#gKH(>=Wy}& ziie(|C|_Z6#yf%C4!Z$)eUY#1wHQOV>qF+s(n<#!usN%Y>ZyFj(b0wfc=$`zj!JO{1fO>#zWSWy+QNe%MCf2}$DH81zzdri6#Q{!CVa&n)fknQ zx*LOa=Ut;sYE<%o<>fmqM&r_TVDh!jpv`4!H(>sT=UiFjttd=7>20jYv$YNYPR&G; zR&aSYENm+|_--p(EbQk_Fx|_Rv;%|n{f`s`lq0QSKHH6JR|&M!KzYf>x8TG0&p^y5 z?ZwOZMHeyHdg&DB8Qznt;f`y~e3wt0F9s3wEna`t!#v=biS$Owj!Q2vpd5)^whND7 z1(FAkBv*J_`2fQtxwkul?iYfE4)lhytCmZV=R6+AO^gX`f$xM*%8k#Jmxk3}&tJ&7 z=iC7AZLV9@bw;=igXgvsfe##4T)~X56^Gt_I{69AnRcVNgEL|#Otb7SicZ^wMCD-N z*UNEm`9)ysVnI(ZxmE|3NSMzE@Sj);n@U<1iQUxvf>LmG@7fy7UmSrsVHO;-g-(dT z(icYXXj=JNFxxxa>1`Yj%0E@KNGBf*FU^3-pKE4x&zI_hIqDzIc8Ynl!%`osZEEDH z4>1t*&4Tq>S?opNap#%Cy{w`X`1O9cMEeG|+wkW2v`uwo3y}jd40;yu+E7OhwpR44 z2;(eqh0pR=S-jf!4S=u(S}g32TTp6AE=TrelKI=+u;>bpSz-tuKd{>7Xn0c5-X6x= zco!C?9YvVVZanFmVwcVb_~DV8RX5#ZHjELIWecBi%^eoc4z-Ratv`wZPK`L;S8+AG zurjgqwdRCaX?Sizx7I>_&Q8FySF!U1(YFQz+AA&C!!7<^@LPZ#iK7XtQc)IzCt8z11QLM{mx_$G}3L2X+9 zi3$->K=coKbhvY_2jDQIOkI1y#SJWbr@qPQlvWl7Kkt%MU^7rI1|oVJ3SWep(tt%W zjsLQJ=|W&lsQc1)XK4lo)^uF&+;)TaF05Wu&iU=US1#PtxA?LvYy1z~!u_!9{8_yP z>2s@Lb@!EHcMD{Wf)!ye-De-=n{N+BU{pZN z!(hhhVqhh3qU2DaXaOwHc~oeiyYn`zoqo@>CSaxz2A`&wyqRx3(F(@NPB?P6UiT3! z){;K{CFDa3jCs5G41RHOyhmSqZx%f3(qcnr^y_}U6#B!i~WwCzqlUtR@<(F0YNwN6Z z0V6QYp4Gc_GOP{DmlfC>bsMJA**;j$pMgB*hg`#+2$2J;f%;z7BwOiz||XZ@i%8SVnFvjmt6_VQfa_#)!$VuXKM$hl|0;}>>T|RKFPW|mv!1s z1>~rGZ43QGmbby*x)Hl2m zR7(g2W}9}rcRQ^t22^_Mm19)uOHp?1)s|1ra)(>tm4=x;Sxf9W;OVRb>=%1KB*D+| zX;0bcdsQ&N9+Jma+89BIf%hhbzvUfG;>kl zq3~_eE5mzRVXX@5!)^Huneg1roX#(t{m3I++VFJRF2bx1c(*H2{=&gDUii8*{nLEQ z7;D&e%;Ch6dO>9je%ju*T14<(Ieg(_t{wB`O98BTo@?bHDlP-a-<}^(QQBsPRO*e7 zs+6j{4Ln=SQ*`0BX$**5-RHX0M^zMVOig@V9J{}4zoD3Xu4{tL9TDc)>7N@J< zMk(El%d6A&O-zTG7kWun`56}QnOo)&Df!q#@E%N?Ftar)90M+Ok{d)5*xcY(aRoh* zi7)xU+=}HSbp?AK_~K)?1HXqNDmH9YPo1EcvhsY}}-1^YIC zYO#C0X)bcF_cG=g7hik~&)uGAe{V)cFFZSAYPO1bf(V${kTHHSshNm^Krxy9t}ivc zflaoHpzv0uUGSyCJRJ+k#e#6ZgmIa~_G2^@|H^t-4|q1SNLLDF=K<#@h7-#I zC!U6fE*5*Goy$QAbk9hteAiY*eGn32yOPjIeg?m|`W7dq)bqiu!gVKKs;+v8!Cv1D z$#!0oj=)VQ0($SP4Ict2qmZUKm~R5i3U2Uovb4K_ zvLReXGqAe-IS^aP_P$kHy&rxSOfOwky|E9B=j}|=U%9Cdovt(L^_3{zhp^Rc|7An@ zk|wZ9f&cv7bs8HGUi$sHN5mpfB1pw+s4LG-lM5`buydIy}`qXDd=R7ARulF=eo361;Ks6vo!o2zklT?7iIJvlXJ&C*U&@+`o z_ZrWogBearPB}%lsTh2+J)vcm72j^SN&BUO;rk7H;FkV~@YipBJ_5o<(`TUt?H5qy zppX`slHXV z2cG?+)4wcU%o!e5;shO z6bu(5y;EUrXg~bzF+6X2v}1R&s8b9U7eqY!5UWHx8 zZT+h)Si<1z@HeL?s5d*qJoapC4E0C9RJ$a*9=-o`%Fh?+%U=VW{SY;KH+MLvv!=uvW9n)D$gfW;dF!NT> z%a@L@DQtDp3e$02aQpr?i3>tG7rSAu~Mj!a_d1}vWOg;^GQx|yew&1&m0lwL3MSb$gui=j46O;Op zJA{{#zInWquPTPS;x;<)O{PD?fYDQ#PmQ|gP63gZZdGU4qYnd(qmf62@85k27Ua#q zmb8{0!vL?n@PXXzvXQVOEnL%#%jpa3t5*)@nmoGz%rnc~80w~mP;?(lQ4fjlXgWN@ z8y^rRU#kb$G$g&Y9S^4fyPkqZh3%Q?Na*}^BTd34#KNy?U*?XVcws7#tKZSxdw2Q= zFmr-LAm^Qrx)|J)zIgw{#U z5@>D*Q}=tQ*#$h<1p7I}mey%&tOssxGo<Ps1Y}Lw?BFB2Ns+Uyxq^YOd6=1`82gsg?ko!9l4`BI&Cs4 zgXOxW+^95cT?Er^ifk!WuS|iZOEorE)VSRM0&_O89!^q6(MG|YP0g#>KP>_?#CK%` zC~}$sFZyxexTjuxAo!Hm%zJltA(gs+C3qq^I>Qd;t?`?`x@loH+;zpg|CY`=lyA+2<8)g{97MN^e&`(}a(j?H%}q9DGr5W4b-CW6I@Y z@cy2B6R{7oTVY9wdh>;k=bi%j{Y!#Y7G&Ycehlxo3b-X9u_`*;HwbX@jgJrA zE&Lchxu_C2A( zQDszCtzK8wRJL&*@X`8M-!6@`RDm_BVnd%uEo>^1Z?r9*h_aB5p4FEll8&wgatXCh z4%P9w!c0R}?TUqOg26azUsaEHY$*S9?TY5>ii0cS;5Ffg!3(t#TjAv?`>Ef=Xy!n| z|JFmVqKd^RjkCx>M|ksx8}K9PYv#*WyxcH;O<_`Av~(AYNqX>dxBb({2p4F@Zfe&) zKmqawB8u-j-f6(AS**3Y70W~65&tg=qRna9s6;Srf%3fK^`SuX(Sb%|+spu%dOXPB zoa(qVFn5O7{I)FpXbfiXl~?;~6*$*0=JZi0og4ZKi5;D&Z3Z{Dz<$3&CodDS6+S6*DwAI z2=9+d$(mrY1yBx#owr_OxB`RQZckmL>Lob~zS!=&Sp0bv5oUjlO`p^rFcDroO`<{R z3*xA(djI6+vsvY$@Z}8klUA}1xMBO$BMbc#8q8o@Zn)n$pLvTO_S8c%yIaE_3h&qLv-CtL;{`vtD|z?rPMWjHtD$V964T z-mO>H>Y&)X57g8iJ5m9!`9pRux?U1cl_K>4GSgFFLO?z2S;~TnuyrQy z#09EsU`i=Te|e1)!kIDspVr9LHklzueY}o)N8xQC*Rn9&qW@t#SRKtK)KFa@g$(PW z6X1I2*CilCAiSuNO^O$mt)idyzZK2~KkVDHWn9NzTLiM4pPRZ-J6wUUD>-6m(F#}K zN$`z2J8iEmyqo_%e7=#XJ=&Ad&WzV9PKLu9AFXG%bW3%?i-k6vO`SXV;5Pv_uj~*9 zWa+BSH_!FYTT>4>R+#Ud#Q%*A`18!`Tbj7e3g#>_<|K4TN~3&%+6<$KY%|hf<6FOj zgg06HVa1XiBC1;DAA$Qr+BExp`Y6}K>M%F$#07Ifm><&S&0?Lg0&o|+`KsBPn*+po zJjV;WWFatW5FzxqB^%bj%QGhLB_9oc2~S)VIcRFT)B}E&n-hLxQ|20!i=O55jwf-d zDZH+5xV_!kJ|D;ly(j0jt1Jhay>#!I$WHW7d+QDVY~CO(AWd;v)ft>{36RpTX%2FB zeqbebjkAP92dR0DMq-h5+e0!;e|&V`W(t`GQ((1UE^KE5{BAoco~ysG!hp%=_S9Ea zbOYFaX!_KBDRKGmT!8l1k}1nwVg3E3-~6wnAz1rJ!Kf(;ymSWRTGfTTCOFN64{eWk zbzc2C4~WE#yI1N^EQJA<@D6S>R`x4!54p;q2ZXMIJ#u}LRd0$N0LzOTk67lkWua8S z-Mj~1gt+42eOPitZlTl{FuA^M*6~AaIlv*+JS|)J@f{49dG@Irt4Vpo?S$72Tvw{x z0oP@=du_)|Vu1FOYuTpOk~0uub^Vyzq_yP}a5}bAr`!H`0?gYwXWnItop0fhtjQTm z_E%p=y+$Nz&69U34q(x}w1cVU6#=j%!uxv7W-A|9Q+_<*A;%PyR}p_}_;Qk!>v4$P zAv_U1y>=E%@HEgk82mLJm?Tx_n~6u8qU7-Tha7@ti!|Z0ZDhHa>0xtW-^<;Po_gL) zf_L1WI0}(tU!nLec&DVtnzyweQh{YnWXtp?Ks1>z)3Qjm6hwaWoBC;aGb)DKeA9YD z6A9LX^~UQiu+-^kz|BTGCRd!@kq94DpOlolZ;V3Rk{c%!9292<1M69PzPT?j?0|P< zdV-D{3aY`HX<=W}9%S9e;MJG31;>f5-oSHw^l7&oiM{aFnKkd_WF9>P;zxPU+n=)v zKuHB{%IoY23kATq$!;YAiYKPPi&AQa+Leo^z=J;GP9M!lh~govQx9LRsVarH*9mgp zU*0JI^ChVqj`8CPAiN`#Y*}1gj0%szU#!0dDmjBF*V;142QTA*T&%KKmBwKO_?+_Y zNLBgU_bAF2ZQdrmb;TaIwHEN5y>rb5?kTDZ7WdT=04AZZvrJY4fp*(N3TCtKFKdTe z1#{YzQ>GHY)GI>g#FJBy@#H(u+i)&227!nFBwRGoe4j~Zx#XqCr_g&Kkga- zF}5oSz}zxiG5bEL70iDdJNKfjY&Ogi6->5m?_G}I|3ty7Ez7IT;QQwNy`tiY*0A{5 zrSPe)b-ZBGe!VHVsJ@77<_w|y^39o7fEm_A)i~Yo3Ajx65-nUH)d-~47lOoo8yVDe zN0z+b{g%K7kLdZYnwY>M2opre`s3w1jKDmlrcW#N6;UOy4ys9ca*AvODh)m#9tG4Y zfN>v{T;E-`XoP3wn``(po+002np<1kHT!8Kykt|Ex}$%(IPAEu9V!usKM_-%Q zh<~=Y8J<78#_oY_iy#KP%PUn=jAzaUR!WN<=1N9whIztk{kr@QK7}ofd-|fzYOF>5 z1s(n-ra~7E!PBqa=|Af{H5=}1R=f0ijzAkctuy!5S3$1xsEQkJr@g9s!+YRo`+VAl zLkPNZPd~~2#cKitvs=&RGzHNgV(_Kb%iHliA-sT{|Ax*10&27wx9#YP$5R`kVAI3B z37PT|%?OMpxqj^0KBEOlEFes+n%n0EY{}$aQ?ic%a6ME!e&T|O+mXLJz_q0)vy%l_ zbF@TkQCC1{+3-6Z4J>1t8j}U9dBy#7ZsAZ@D_iS1*x4%O zTDjSD6Wn`iwl{~?b(F20R#Co*D?R)zJQKX|fQh)J9&DCbzIJV};3;?^-BsB1#d3rT z?zJo5Fbh&ap7YI0k@-7yT*3TLcSWacUa%KTDf&`1S-x#A%GS1WE?Q8d)d_)P)Oo|3 zT)D8vq0a*zSv&)Xe$MB=6aZ|HH{bu5Z_U@kz?|dNvD@@M?}WLN z9z2etF5)vy$Pu~Y0y5{(|H*-Y- zov!VZR%|drc)WuC+#^XUlMQePxJPeaXm0|${PrHmJ}yFqpMtGl(yDjXBX2I?`rxFg zWehCY(eXZln(_{?hN!F6M|q0^?irH>%lCf_L+J2}<2RdQzD0n20f)7*$YDRg5p;6< znsaUUfyPGuwp44bM+mOLCwAeVt?t9NX*}nX!nVx;sy$h!XG%Z24JgT?hc|z^i7Lzb zDp!|Z6IFr0OU*;vaDtx>u#PE`T0Gu-9$515+Un}l@v11%@gc!mY+@xUcVOO6`RZLv zfaBYq7F+7pD%g4>X5l#g8{Mcb^+qWgU~nmR$N5Db!tzFTm6!DZ_9>`OG5`Rr|e@Vi9|;Dt=KFqYi``(cyt7x(ucLs94O>g_wO z=>%G?2j(%WG10FElCW_buXMuuD06t$QOQ!aNDZaCqIBo1<^0q<0lq9bqRNSV*ae@? z;&I>lB9#Ny>xCcHa&4(Y5w*}{Xv$xy&j{&_+7 zf@9-geZC|&cVW$Q;36^G@%mf4a+In}{<_Vr;`4IYGk2C%zS3C&%u3wV7*#z-6i}W7 zdW8u-J%*Am*H+G7_tJGa;K8hWAJsdg0PU1T+qJKAJqCe^7ktm#UqIqZKGBo>aF0Y(0$=Naj}SIqv6O1P_TwtuKxG zS^?ND-%<~fIE|Xg8jRK|=*pg34(6{SNC{5Q^h8Oyj%9+rODe#4kC~N|K3&;^>Mg3< zTNRdc*aL!PRcWTn!~(#5&K7#klnnzO<5_LylvrD$B$ZBFY0a?^C9o)U-N|oay;1NQ z?_0IaH@(#%eHzdB^6)drX7a@7lvRo!Nr0Euiwnp|IG=~vm)kYZN#4E&I{}v1LyFHt z%6U_1%f5?6eSjsl`J?;XbA|Bnt;u#N8k8EaF2hLX%9osb7<~TFL@=sgpDs*Dbg7B9 z=DG&YtZTF6J^TCs?A{uE$9Lv5RHnCi;yGDs*^LI^y!pl?WeJwK@Ty^CWa-|U>)`!! z`FRpfB64`U)f5Bn+ipQXV1}B!D6Lr(mS-q^UZv>Q2zv;bbkvcCqOy(J^CbuiH}%4+ z&^b`Tb;ewnNI7-hR4&aFtWES1q}b_iLS8CRdoH%7#&+b%F((Y6GV2Zc*vzPWKV}KQPnZNUr!a2wR z^}Se8*lTeEkhT=F+d5y)08Y!A+KfebTwzw^n)Hk083@yD?oe&tUOrn6OlD1bqg!=g z1uR>A$s^{{fhM3h?ymK0{TG1J_3e2)?SgP8Tgnm1TYK_ra{&2HKen1Or z9|6(twWE@-SK*Tup3 zoo5#=zSVO8-SWvSHKh0lQUXW;Aynm|Kk0gwWRGA9mEskmtWOQJB83=If=SUnE;fXb8!XObVwfjcJDQDJ-{HE42Md{_dn;LIBa9q$6X$U`$i| zU=uRB{5*u=|Iwy~`uh`uBS(*;gQF`~Bq|}qheU8E`4Gd%lwc}>;ziJ=l1K!PV3OA# z><6cZ3_(SgKn(C4+k`{p#9yC1>M&Fa+AcAKKn@{zlBt1y#7O4;1Bu=wfec%hbWJH zY~;TP`ktO-Tpoyievz}$%xDsiLFpn;Ljwc-$cV;7f(Mc6LG;9T7f1|7ybeJ;N3;%! z3?z-Dk6k1+gygSm?-NX7Jg;m|r20}B|LdmuBbtQ!kUf0R;e7{qiJwd!?IJWd7)dze zNa+8`9t^Q1P(z4_8pJRn*^lV%N5YTkNuqj?0z8ShI*dA=O~$`i40~iJJSYJn zxKJ^aFr4h?hb+gSCL)~~rdtH02mutP_%V*>IZC$vQ?zPplK0RF$VB-gOKajsamUrm zCY0#MP-%OlG*(E5=o`HmKP~tvK}Iq8S6}-lr$)BBP(=~rpkVf)QaH7xz zBnEl5Bq}8|*n@Ozz~)=K<5!{?9A1hpOryX5oO6R~ATx6JuXAm1@-eUs5t?yk-0?6y z7tzB55g)e~?j+nl;x;Cj;^#*itHr?hPYv>81VIJG5V7+axWb4SLZr|7srKNA0e_Ui zijZG^{4a28aAjP}6voQ0A?Tz$bl6|yj0q_OLBC*xc+mgjfRG8AJP{3)3HCUs@x&2} z{}5ng0IuO)U?gxD0B6W0;P?-p@H^@WBl?9hpbElqgDzwMC^1kM^J#C=nEXX;GR99= z9c2G6b4+jw5{+X&uF41@nGh7J5Vhexc1bNSlub9uyEzsqR` z0!2uaNI+;BogY_BST3ND332L6;jk6$*KWL6W6|!3YjqCL|}Poj?!bplc9gjV~KDVCIQqAQV{zbK!CH z@Mo!kL=O^2p=~I7z@MayPkCzCy5E_YoXI|(1I53bcnC3mFks;3!HK||!h&yl9HP`j zVSGR&g+&w%u%H1kaeP1`g+&q#u%dw}Qux5s6qaeVwaIK~Kw1VLkWFEcLr<`yff@4n zz)U73#wRE5RT!_xHJf923IN}yB_2D{Wrpq6ICMDV9C}7cIXP2^ZuK*P9mF%=qm%!_ z_#CR}&^Rr)x$xj=XO<9i+jN(|B@iP*3Y649Fg_v#8^_DSjp)Q6iz-f*v%?5rMzzCZ zXriA5Ilxm$2^Wk(P-}&fCx{HH-}gO!#J=Yan>kZ~F|(SG${ZzioOVn8n0AB2MQX#L zfusYc+(ZWDaQDZET-}Ocg7BrlQRc@XKsg`zVJ7{Rhz@16cU^QNq#Bc%F(W z^}~riW*Tb?>L79!4tIeJuR|~YnHd-v!u^Hx)bDzEhBOa9z+dJgGwnSLBm5#uah(~| zh2fFGAm6^@N!%pi@!p_K8grz#hhIQYj}b#NF$2Bg|1R#0@WzOJFaM$%GT1j_f&Ur* zP&DxSJj4NB!Jxq=c`~)|?EhVS{JwoWlH32cx%hqh{}~JaRRvKHhoZrOKrRwRR*bNn z;DwR|j3UQSJU^S@NnvJs{ZMs=8TgHSepo%}k6ida4b#};GTd@3W>^kpa6u0no5cN* z(H`U{LT9+VjQd~73!4A$3C#aCiTXXNqg(u0%9G(12NROWrr!D6)E%6A45a-ZCOh%y zcOXbK{|kU{M8W{YgJ}wyit}f4;L$F-CLZR@!vg@#LCmkkfT9ahSQeu2kq>P}hcTd= z!m=K1?jHul7XSzJ7fIo^4h9fEtOSEtNztUp@{=S!yq*yv4+c5CTASsOhgcO7FLh|IWL2`=IVeu$BIQ#`Vd|zfb z5f%^1gUv7^*nHo}NFvzcL>PD_Q(@qhK_Zy^4I&_~!eNJ$6Q{yN1{LsZi`}rz*?s?= zu{k{3GVnWdC+u|dvF*fguxkP*(Wu%hhkZ4^mCFBmhGDOEB5TCRB+}!4w))5*Z;a0V zzcw-=>59D5$3OEgS0kJ5cE~jO_Uv@!KRu{D$0& zy`sZ_o3S5YsQpN$Ii|2ILz*Co3mfBMBuWfxzwBqs98@c&wf|+3aX6tBammtiz%4Gm zt`ok=0gLSP{darj@0o+Y4+^>N&vs@^3HGNd;}u5z02D+qHb`|u-3_SVMhT`*|E2er z;}~+{NICj>^6|fy{zY*?O;1z;zJ0>5{o@e=egM=A#b|t@1T$($C@VHB0Ql7nE=FBd z1DIs2)fb#~Xa9}14B5ir&2mNO*((_EX88(4$(8t9%Ljhl%lwroXzX;&Ut)){K3*1~ z1bdT$Bkd`^qyW0?&)!=`a(6+t;O6h~aP)e=$h)C5J~OEq%;>s8xtIX--=PDbbQ?MW zYMnrVpAXp+m3#=O;^Q}_iabuyqS2ciqQ8rx+W`GtToDmg;ZM5^(Vy|_ApL*ZA;Xku zTx9UST#2}12>%{Y2PgSOVlw>&P9?;7e*$Tsw#i6;c`$qz%4Lq!fS-rJBafpzN);HH z(0}dN`_HBooW^;BCuGoiZx(y$_YOw=5LA9djgllPeaS%8(hzUN@W6GNs%%0EK(z)B zWiwmUnP`oADUHaCUr=+Y_Q2zIjQZtl!oWY74K2(@yyU+*<4-;FC>s9gjJT8tjg*ox z^X5nM{-WrNXt_ZBp+khmli87jx%wT@!>VR*+YrAy6F~2re z@fo&BTxweWP-=!v_lv?}H`qvwV=@vlbj(b9LL0Sp0M=#Ks| zW|?Eohvbcw|4-$OIn`)cLu~)?)c}UsZ+x4KZhy2VQWyd@c%LV#I)#yfm8d9S zL3_oU&GBVt+S%F8BH$hH#9%Uos!Tve20e|s-H6D$g^@-rG4vv{vx%{o55h?S6aop= z;!(@ykQSh}D6|dq15O?#MiUj2M0jbQK~hvc35X0QMvgia;Xl1N3WhNL(}U7FQrrXs zkSOLd)Pd0|LtprdN!9O`75|H=P`Ihf_(RcSYUZzXH89#u5X@wDAcjx^l@RZc8DSce zfrB6+_$~}6{1|Bsaa%KzVJJvNfh|hXgnHoak@-4e3uDrsnoI)myOkU{@9=`iZ(1(~ zrHA{1v6nM2{>g$=#Bx14@n>d>2~~gjdIi2Y>TvAIL~;B6=gW-MP7cr8;u0(HhY~w{ zzR?!*Ukv6*!A0W6yd%Nrqh#6(y!IWyFgy&`JWOE55)k7&8EZ6*ti>LFdeES`7$f_B z^|gOW%RqfT&pN;kcOD^hx1TM&I1Kp%Lv+!@o#^5F)BcKouE=n;Y5(h0#wwnJ=f_2} z^bbXIaIVo}`LB)~b=eHi6WPpR?bhUgFcjY-|BZ60L)H{`R!pyi4CN?~G}89r9lk#X zns~_=@7h6yFVrhYCF3{Dyl{&hO!h{J5!~P6ox6pgrl|KUySqb>i`l}#@&UHGCIt5 zk0n&WIXv8*;&O;<+)z^?Ba%mGB@EA^j#9s$;lVxp>jY^V*5iV4!aBe#fHB8#(a8Qk z&n%AEB`zFJe=Hm$ru=_YJdo-BT>;s|5Rg1v67hC+W;dzsFV-)=TPTJk4^DzJPW2BN zH#pZXa%@E6Y%ne)py1onZ{QyNP}qt55Q;Q|2XKENg&Kl;5|ll`qs|fWAPNTqDJbe2 zrFdp2aAe+NW!#7H3}v{mVbS6DKyuWZKT}zZUt5qChZJ_8i9_f2_%M(G8S02gQy?mO z3?$ZxcqZH(Px=xElf9mdD@|T0EZztg%A(cDt8v%io5JFU2ISB{00kciOkoK^1Jls} zl@UmWq_Bjdff;B(FARSoJcT6!4alQ`D2Dr4o5B)}24;Yv&VXBX73MjIn$`bE7&u{asu0E)K2WKR>xeU-VR`7fV@Q^cBsOCboVrGTPF==aze7&kAu&Xm@pTXM z4>GP310Lyn;{?N<;OSFBNH|3ar2q-&V=QEW{|F*dIw z!%T549rk4cnNd(y<)5<*ecc1G2ICJFr0qofDP+uOh{*WQ$kVj!4RZhkci<-L&2)$ zuZEo?88!IUD255rFlJ=I5Q4=Kfhf4gO9Avn0}n1C2Lvg9A4gfkp=So`!p5Ni9)o`m zR7P}}lCbFyC;5F@_`XXd4sCx)9KKKbTM~iN*+aBrrfg8Lf_dF`;6qKnEf?s1{IXFT z{x8OjdX&MyQDZ}l6r`miBXM-#R^s>A!gx%WcBHxvn+!MUCV$SKVKe>?Z*aptcmpi} zg-_p02|w(N!S6@tGU`zbCC0-Drp?DwZr*q&1?rSS!3Zfh80E+OkxHR@8TETcj^Q>2 zJc$?jSQBDD1;5=+#p@a9%T6A6#aCN}vCL?z{?D@Ba09`JJhJc}C|aT-EomTFpd~T@ zBW*j5s%VKLkrZtQLg>i@&YHH9;izdTXlxf6n}c{y!)UwlsDQQy4W^<&ReUg=wwE!O zfd(_t;9Pt#i;4NO(b#@8riS;|4Qynv;b-2@yu&cKiyFO1+V%|7r0Yt{L9)V17%3}b z!o2u&=rdcR-0Hujmi`;@;?|tW!O^hR9?25^$qUpXhhkIw>j=~VaY8aS^cJ2;T`-Eb zj9ZfU3pz6HsH#W``Nvk#WlDeDVM(eXu#F$h9^K2w(YCe<?=dr_i17gd+Mzw;_*rO&SZFy&M)wHP z4h_%7;@?JCI{4v)33S<^mOAvAw&6dSQHPpNbB$3Y5&!nnA^ZvYSOPi*-_T37NWbWT zV^j@%wXwKJe6c}wVjKqf#>*r1=~uI!Lj*>_3cihhNa{b$6pn011Sh!B4Z)9qdZJA2 zEtd>Ln8*~OOzB{0ZHxd3Il_g5p6oZMDM-shY%D?i$6IX{Xtd(j3S zxBFp7;%}?Oj|2K)zL9nacX@OprZM^Lbr=q9z`^d}ryW9Z*zm8)4YXq7YUPP%{b?9o z<7cuw66_DSOvYxTe(TjgJKIns#()cH{B)gP)yW^8gAt_APBLhbPMQM$>A3PSq=L4i+g0C^AJBJMUkYgAIrANTH97Wo} z*(=amjK+Fe4g-+U4&acIuJSV>8wKhH-7@Xa4?MCaF7tV`eB39}3eX;oA~!t`A3Vl{ zm&eiA2{bl;$bis_(9m}b%hXd^F&e}{EdG%V1Y%1Vc(oJ_;vjYbKA28B%@{m`25}I( z5FZ=>v1Mp%0K{f0(1uPwh-1fcWMlNHLRVS^9_x(iU>OsB#i#j2tBwkzLy1~ucR(;P zkQrq%T&)-W@kC}AGT7IS7et4B)AmOw)67~KnOqW)(Wt^q029&YY4OSMkJ2)GV@BiQ z|16f^(!)e+_~960k%B&+XdS>bA$0$r3D!u1@w2Cgi6Oooa}mZA`oZ2*rinQGvq}Ey zl4CI}_?DFiNrQ01mp{M_Bj)-=q521UBjH^=qY_<%9l@xUIkF99WD`6Ui5;_P4;>20 z4kP_ICecCaip*&Apluu**M9Y_p9qW~t%{L8^Q0RMnDHMXm@(a@*!nkS8nama82j92 zVf#}V`_aU|BX56R${1np#tc~L&Vw@Zi~Je&_#jptHT?a)1fH|0P^6t3%-K{hJO-_j zk+Z27G>x<>+Ifb{sz&bV0@49p+zHZZ8DkgGSREQ$#K^laCmZxvT0c{eVWMsoihs6# z5D~c28gS25Fj5l6Rs;c|(+{{dBZ4t0ltkQao571-=iqa}zAS8i|5C~*=X+`hcIWxKD&b`CE zcajXgt!VY%zlMO3mllLP2!sG4Afm?b(^j2R-`eY|Qd_lHYHO`%e?ETSwbtI}?0wEY zbI&>V4wJU_)0WA;`|QX1uD#aUYp=cbdtur{&8@!%v#_}(mQ{Ns`~FsX(7ZC_*oZ>J!jPv#ca zG{4)g>m-J3>q_l%x|lPM#NLparhog*3Y)pkOH>tW-_`AqVtYbk@6kTH>vfp4i~H+k zv!6D0aevLiefDp77nkyiUJk)B`x&s=XCZ9DMKL?;;JjHMg|RK$-=Z+KW&0coqg%Gm zqb%IA1yj{3@Wq{Y&yYIj~ zlWw{tJk(yDUGCbXp{5`zKGy@vP*Zsc!)MqK1w^DNSiXEmlEU{IB-TV!WTX_IEVp@M z@x^7cUp92e7g;>ceu;I+@mXbTN?9}e70C9l0x^@7XTOHRzf&;Iw#7U6b(DPrWveMe z(QGhQtpqv-I7OAfnIu<3P4F$i`=2(vnYKdAFWhEob-=aBM}pU8>`h8mVxvpCnh^K~ zGb@Sxp_1THF?u*(jqNPH1q5hkp^`JrbQ-CBgE5P76%tf~6v@Z*^}_RQys|3-g_qTE z-nA((x-JruQV(ttMs};6=;!2Gfji?ue>&+3Sxc!iemi>);7~&G6TL#ASCVmpR(3|} ztOj+I_48K?YW*-v1|&|qvwK-i-Ea4%41k!W-hNXjHtl+M=UDALnmKlOS3C|oyrf~x zxyxIh)7r4XNZRRrYuW7I8(R8Xm(D_U&3>D;bjR~#=Ymct>}S7&ejbMWHzdjIKcMWp ztd;fpnf*r;MO_cG|AfNW2Jm|*jBNnFkHY8%@CPUhH-G^JME4)jIYFUw+QA~TubVuA zz8)rOo;LgUI+xt+BTRICC*+Y!XN_9_tTW05wJ`|dTkwusi>BLDXLtyT5IVpc=n-bHVWK4cj!ltdI z?LpoY{YctpAbHXtE||{|!Yk z?e*^{jA^eQqcEnu{sVv)UDST@c6j0EHCWA^Hu z{jd09nf<>gBVm6o^ZM*BI0WODC?sLOo(iv>{WTT(g+(YOX@4G-N_?STSd2m??r}>- zh9a`QKhqro;@p*p%DdDr^g+0O*LJgH+6?HX(h69-`&n&Os(3k81rr9I#g5m*1>i0u z?Y=-A(By5r7VdVqreIo$ds;q@rYTd}qiLKr#F()C`fP&AmMd9BLO2v#aGEQi{g%g9 zOod~Li7I0WwsYKJ4Dd}5DOiKc{K9||D)^VIO25!gas~gk8PzW=0e}%T>=%B^fvR74 z0!rhu<+o89lPym~VIW(AF=^?NGU++llk1R*7=GyuWu#ukRPcan`^)(ROtiI>G6wG; z2M<$E%3zSt6Qf}XGe&vpabeO!GEXFcq?7P*j2iDdHd~o(w>zUlWUQ_V-Qn5PPqa0D zGZ*xWcx%$0MmU>GNyHJH1KPx+6T&Rs8a%;EuJ6;@8#~Ds+x^nf0;Fj*hm6UotT$rb z-2Qm=mQv~&hv@gdKc;`Cj|Z-9ntStBk~JRwK6Li4QT(wsp-f9OG>?NqON;t&j|)_6fNsPds(M7 zs$=b@_OmPVf?l7{kLPX<1{tOl7)L}HlAY08-pEt{4M-1paO!U4#HJi1&2kA(_~eNi z=puPB@y}hcxd+T2i9!a6!RZt%pxn(jDPz%jmtvm6Wn-h&9FSnhf4%T@nM@0^$Eu!?Y<`2NHF!qIdk6uCFBv>;OdAat0cKt!5f zcp9zJcFJ@dF#@Mu%zokNq*9)Nu@Otq(D=%wU-&~R|09&Yf&#V7k?L(q=CN&%Cl4^g zA_?uB&jf{YRqdt3JFUo;aNR>gG^-ghnz(o=`5@b?Gd(O2qgVLCz?yDlq#B=k1SFaV zr0IO(B6dwt-WZ@1JB|9-w0gy)gI0|gwHHxlpFqvh^AHF)r6!=Dt5vyALf31Nhr5J} zMx|!6UalbBhUj9B!<11VzNxH9wg}AGOlnc>f zfbIjYjn|i^t6ix?T=9cwf<#^#Y!Qkgto*{W#6MKDm!e;IHi^mSKum@#;1`}th0kM| z%2HmnnObn3kB430)xoyAJl#CEc1~$?Wdhuau^dB!vtonT+1gELFC|_p$MGObu_l9{ zAV~J()ZtX-cU35#FCJ3d=rxuj<^(HloJP%Qevwj5US+eB9Zi;6h_a+aCB;=6HmE?A zdP5~@EF*mhGR*Le3Q9IJO<}c^(xi-A6P(uGZcPu29(I{&A_Ei0yCB0CCBWx2k4>-$ zJ#+nYLVVTkx1(#(`P8cPW<4FxR__$zGiJKIVfTTRIZ z*0QC@^#)Cha%Pom9wkZv>&KK9B&rhBY`3KEpk`((IZsozTETu!`R0auCE zxebxAwnn|y7FtEL<}gq`yT)8eVPxMtyI$Ue;T(^hOC*(P zdQoh*mJ;HXVJM#%GZ9(I$=9~mKX7jCbPwAk zZR3nkG zIIqY^-AhUavt&H^r{qN-Qsz*}R?ZN}b!IoPK#bdp^>TSSo2JDIMJUG`(z=jsRMURd ziK8H-UdRbUJ`5fkuQVptY>hIxB+9-ZRibR&T?D1Xwuu!Yp3L;>J#8m>I00`Jk$ney zZM0F}g17vTjkQ#*PZX6$1RJ+W2pv)_Fx&9t5FX@1er^0!7CIK;SAnc5dyyC75E{Wk z#NeRpx}^cwUM#xhc<7cBmP5KLt#Q1FX}|EtqBV}!Vhlk0g%^o8|3p#|e*y+9v*vg) zL+lq`Ld7SccuX`$(6-hb9fRu({1I+LD&u5=_&N4!&!jV`osIXyF9heckY#XbY*CMFOtLN9eRi^s?_jK|ojqg=)Qxj2ec_+#{%qGk^MU}M7@ zKL%%+Fz}JogBSvW03ElA7o0zw#ZDu{iB7Z=63X)J(8v?RiV{JN;s_#&#tpW}P3r6K2$wA62iuF$ z#`$ab<&yT}8zLElEO?eVd@7r;dq&sTIU3FbVjfS%7#;pVS`q`O#MIuHjV)aLrLMdh z!6nbmJ5?4C`kBfsrVcLx^GqD3apsqrqllaB%zo?Vh8JP@!#aV=3ljqCKSa5#;;Y;1F4sIw9_4OmI4UZlzfCkW;&kN2!TNDHp zjCvd4SAy>+!t`^ckY?G`J|(Nsr$ix72o}Q{u^3K<#qd(YVmMi}v|l(yEQXV{^6?8R z)Ryv8G7L_`C?>!U;`Q|lE2;2w6w)z@+^Y5qtEg}_3W;;jrC&IMc)%~5Nk6Q`4;#g{ z2u2~c#Sxt&vm^Xv1-f7gFXNtR3a4Ry`W6Ao^>l+n{Fg;*pR8{aShX=Qz6;mU=()%n z9a;-d8?0Pfb7=i6@L?pwRA-wf(o9MY#DgoF@oGbm?2=?_CO4Dr_T1?fC3x@dHvVk} z9hi--)U1)hYnV+I>v1cpTkJquGIG||*}|Et!IWUcOdKtSWj872DD)pfA-cs#AKPTz zJUm^5z*$%o>y}@tHVtP9&-#V4MFgB>W9Jvnp~ZDBFKc%1tIt!f-MMIszSnc}YVEEI z*Y0{5Ww3JBN9&#yuH2xmUbjP?)Q%pMa6Xzo56kvvw)#lFY}NWncOobuiQ%Hfc9K@{ z7(GFoi!;d{B}0h@6NR*5~u8t&>|cq~}evPG(CK>$j8- z7?)VhqWX!*w+6Gb*JZoXiNL~VsqI@@5kX%Oi5kr|mQJ9$TT2O2T5(#EefJnn;U;P0 z&DdojvIsVE)sKMJFAR8nM0nCKTp+wYV$Gb$hsWF4rUkA0zkF~2MYHH|#G%Q#{tVS0`jojubdF&PoVLB#shyGzSX4>qMLo-%|C zJI+@fK~H4dwXU?aGC4h|CO%zj-L5L*MD2wqa7@9OI9bVoPON1zAl_;l5SS)W>3Nm$cq7i%U&fYgXnYBa~`Nd z3|xKKJ({OXyulY^;0kr+A?n%P}+KVgjb{8Xl#x1O6tezlVW&v=7I zLRnCb2NvGVSeG)sBtCny8-1mPZdCvu05Tx%qfL>y(@|4oKs@_kKz^ZWH9`TtK_l8Y zTAc=~3oDJ*G-9PM=Og-|;GcNOY?xld!$>Ac3=P|2D4oF+v=(hV^*xQiAvBIxP)T=U zsI3{kn<)MV5)yD#>RCXD=*UxgkuQxufu97XB=*SUS(?O2<|G~n_hr zzHI?8h+qP)v9!8`2l$J_tZ{0%_{Xz@NZ#uwYeYI5fHrA^+i*IL4me%pMu7kmi z?v#xn+lNnO#J^MZbY1sG4j6L+|NOky{9`nqmwzk)K+L2JUYvG$MMO&%XS^2VKH@2> zb-n=zC-|fX+jl0Tl)zr)3T;<*f+!*-(tef>S@8H)-r(H62C+ahO4|G$%bGW38(D9d z#2f}$ARp^Bo0uKsjNVlDZc?hN^rp-HPdfl%AI?xf?RAsAIMVK!Va+E-K z$eVic#N(&7W~A}ehkZ!P1&gpC{F`7p?xQgW5Vz0mw6Gnr!)jqQLec4Ji)mqgpvR5& zMx0o~1~+8Bv+5v4zR0Z?dKRZhMT(1$}Oczi;k^C&X8+uCzG%}s2JCI zKRqloS#E2lPkP8uV5HB?hgfOmW*~?W9LbYVY1XG3nQubE9yw8SOD3X%7yeRqEBnrc z%MFPUYOBc2rkqXf3)A{UgGH6Ji?o_2%iwFhM!@PJ4-z_fif^orc?go8Byd4fBE8!HnO3BH-Kp*3OT!YR+w z5=XDxL}~`EToo*4w+{72dT$Dcf5wO)kf!f*8Y5go3wq zs#+;mTE(RsJun$e%Vui^mp;M1WLJX~xffwdyscA(@*d$tOS3}9!$FprvN{sh z7%wMUP)lqjs3=T)i8bjB70-b2;B76zTZOx_xI`c6E?DhqH0Wk&YqUN#v((Y7L5l9T zEjFhUVSp+ToaG2c(O4Q~z0M~vbPMrnNCI`*vZ0rYpEtb50Sp~}Ou{c;U*0|;yV(Ry zsG`v(#e?n_YUKEBcYGgdPBT+Gi{TFDm)-GS+f)2TPzMpC>>~6F$j#yxns6Y`lI;&C zR`APa`eh6K@@D>Jt6!L*y_a9OoPK#N{qh$6<@M|W@C$FC@;6fXpL6+}{KA{%i?`4( ze@?%=m4CUyFT72Dc{}~`7xc>&{L5eZh5uiEc^CciZu;eI{L7WWnbdarh4Q}6zMX%$ zT1D-?hst+Q`Cp)1C+&J~a9Bl0AcB`)xCZ3cCsyZW2QTz7>wS&oSq7lj(O{bD5UWlH zQ^Cd zd!tbA^@@6O_IhJ%A~(kC^F$<%l2Knq+~4ka1$`CgiG#_3L@(2jDg2)mAMdcl{K8Gx zUVg*2K|32Mc4w(iT4UD@RTM9oCX!5vOeWFZQ00`Chq4l2yHbMxGq{qI=ET)H3cbS~ zFKalY^^d-I2V#Kvj3@6J9jG^Sz7^TianElLLt|tKexUIM8;#C(lHF{+GfFaR$sp!v z&^qiqN^ln1Qej#%1=(1{vg%}5@k3Jj`O;M>pD?p07SM}X8-%*6YeI2L(LGYa7Ktbn zuqFbEauR}{(pGQtrM;S(K!}pj&8TB7&QaC^^Hq-K;FbvuvE6$*ZGl@upJEX}8nj#H!S}2sFdG~Ph4Dzu_ zB7s$@5(y;mh-wL*hQ%-FnoU$=QBFx%Fra>`G3_nKzHkgT$6MeOcIsr>1KQJqY?CER zn>}V4Iwvh7HW1r(Y|Vi({(#F-nyOSyqNk#)cM!Ev#v~k4dcw6d? zO~iuDO_eF~ne%RVddhB6dZa^II8qKJ2-N&+fsp-@BfoED7c2>_g-WYQJf&W2V&=iTZ5J=vx#U_zAJ) zMfKIWqp$JGtLI97j)XNon3-DZe3XMw(vmi2QL4SRV;>Wq=X^JDopDtutJ0F zmN@a*0ttVt@<8P@4rh7e(+zwa&AbN-lY)`CYUWMx-f$io0(Glvyb~2OZhOOyqFddM z+O+SyCK8%T2}Dfb89QEeqbnn~lS#5m1|@3XrCHQ~F&p`lRKSg0&_s>I2npxNbN88F zj2e0`Lu^_V{==!Nas|{OKAJeyLi#5*FxgcQq1Fg~2^2!HCpth@0Mfc5cUUQuS-h#U z-b6^tJAsDb%YdiTIaO9wLqhJkkZ~Us8FxQq+yjP;yI+eIzwlv^arfH`%rAU|B-w+I zWRmpbqw1jLV^sWc5^y(&fD4+|CThog>cRme;HjiT66Og;VwE4WVaX{%zxQUdjJwfbJgg|J5E)Sy>V07vu zOu98IE5J5uI5;8{$HiJ#68P3&Mw&lVzTj7;qGsxR!AvwWL+~@9TqyoLwsV5(epwNp07E@wtcXuAI{|dRa8OpnC+r#fh5xg?V2{c#d@^X0&Pjtd zwXW~D-_+@Ec*G4J!l&YPSUSFg(@CclPA6Prn;>N|BY^_3F{eZZ7b5RnbE*#i2!#qL z!%HPS zH0w3UZ>l#hj^^by$J@GZCo}p%2%6$A%!h28Vz+$YXg3c-;MfVVXxQ8#xQ+HiM#!Av z6AU;dr`Vc;xr?qYGyf3dWHQiU1K>g4^CO(oi31|lU7P?;`&)3@o^$H0Gbmk!T)ybF z#UEL=x-&?Cf9Vo=-Bcd54a1d$t+r<=riso81S$BB$B8h(wLFe&0@9 zM)wiE#P<<)GR51Mbky$Fsba?qT|{htJV2KDyXLL=tgD}=3(SAeCFa~tuK_R32i^}+ zg6fK1h8clK{aJuFIP0s-S$mPVke>g586gWg;}f4*kqx^8ypMDVZ`fFRj44@kaG@c- zicz`ckH{jwq&L6?(}`Hddtcl5wd_s9_^AxA}yw8lxDywrJ|$|p#S;T;wIUp9k%_-{dUf=M>5zW38Il4Kgsn?Vv zi82(|TyBXb@FFKp zl+=X|ZpX@{##l^BkoO#^8z4#`M{vT7gc10=KH97!Cn#PIg8>1tG+vpIOAl}@jMZUE z(g_%WcFJ+wfNe9*xus)^kd9=(3-e6{C%-ghIAa7zB}9U-R>}kODQwyQ23vNW75`Iu zzw8(OTDI(;(mP4)Rs6zdXrt&CK1+N0S@PB2jA6mH^b4PpUp`O2e1Uvfx9~4tQZc?? zrt+^)`A#nXs$ck;eDQbmOPku-#lL(*eeq2y{}z2gi7CL_e&O%si|^1c57RGn>;uxM z)82oi@_(Z8TT!m#c)u4+nEVOBgj2iLB2?6tC==@Y)Zw zd@6LW8DEHd?TGZLq}dj1;88GGu-wfLXkcv_7)Z?n3*(4a;TZ=*@eBVfft#u!3fwdr(u8Fua~7n*Peb;F@M(JYkM{tRWgQFz8 zz}AQ6ejUyk4z1E(W!#3#LlyrDZE&j^((u^RNQt!9rhF(hI+GY9628qI;|umq=Wb4g zuEa6?k3{zwFpT~k=&BR!W+%SPc!He-z8U#N`2TUQ@HZRI%L3&voZE=sp{=id?$GN6 zok<$QY)}c-e+Uiy=<@clouJcLsECpuYUSw{{zVk~54AY=3;(JvcKwL-{=bnycsCo0 z|ITaQFZ`Iw|AWdu7%-1t_z9K%r;LnDMH!i2_^CD(J7&GpW7KL&3kwrg9`|G16^$E_ zf{%t)<6}$=bQxHUkHzc%Ftizs`q~)jcw;0wNRiFl&CiILGe05gZZIYL%8Kkkg7@es z6zy5;8Rt4Zv`K_;8ta@U$v!o1X^dGI(S@3Y+rv2x5qoUf4(VD?#hXnDb1FqO?`DX} z6WXFs`32PV1=|uaL}@oxh$Vg6XXdm#Y}yZx(OSK%Tg4M?w3l$syWO!+aDGt29exI3 z{a^5%{8Xu=pJ^HD7k(}(>1WaP>=*toN&a8NRnjl1{8yrq_~nqGbM2~8t?{>PB_4MYe`nb7c(US^$PE$=3(%nYqH?MgJD;pEIsC?Cqn_hr< zUU`kbc=4i#4lKfdw&Rh^$w?#*S&ak)IAz`J1rM_wxoz7He{ny5aG&n^B&7DBVX4p( zX=Tam14iBZgSyRDeF_^`#Pe{n390;BRQbyH`-NYl`*x|5F=4x2JJqIp^Y*O85r2KB z54-NBqX(Xb#=U4nhZLBEEJ%U>>wD|yJ8UA?5AKhU{pv-B(kdtxqFD$_J;h)tfAJIR2mQsrBb@V;hh{&*tl}>|jEbKm{D9&I1N?vAUyLKPZL=R^ zC~j5ETB(uf6g2kggGGu`l@IE3eqEO>6K*Cuhg?a^UXxO8p@^@8G*+I$@~ z!(vlw^HBUfM-Y8Z45FYDC#27_>OW`>%8ltU2By!M59Mu7Qk3^!^`2)U-Q-f<0cnM4 zo&%Q9`UvD~Uoi#@3B6vcxEV=VI*AIlnY9v1sLYY}w5@#V6*^h^Y|Wr?^g zbK{2M5H}b)tR){}EqS{lQ`JL;=y0{~)8ymwI7G(_M8{h+4^|_8(J9M4*m$1BK!csNk9G}&K&uWX_w0~1yIMG>S)eek|=_$81I>W$bwZ>*1_HXNYWi(79(IPo( zRwp8}+Kmi~Lu6K2$iOXFMgr7LAuixH(DqT(Slpb@Oj{nW~@<~2w|c_8Y(HIJLO!BstM9~Oz<4D(4j*e zYTgOtxK)(|H&=Bow+REmvG%Kb51lnL5yjWecQ3glG0{jEV+@SpIT>Tj%@`;S8Kaym zh&@9PV=qEI;tplVG_)5{g){_vU2hUT*kplAdlB`8lNG8~ZMMdwQ}=qFG`L}tzjz}H z-y05DxIjEXY*Qj)o7{+@I7I97A?~ zayL3C4$+yh&`~lD30oS*dAVLdTpY*eje^e`odoA^oB+Mas;?K2)ORBEW&@!&YJ?75 z8OJjbh~Ah8(Hq?mp*V!-4HiUfQPvGdrC5}8mZP?1@KyoltrnrhLaa|YF}cF3Di$KD zI^lSm0moZ49EYk2S69Btw$svDXjL1-cL;{>uz(@!PW9r1@&B`Glc?0Sok;$rf#f^dW4$-)VsjLGe;#)4@t$(o z{EA$%dfx$_d8gCte}|iAP#p5iUkJ~*{4eh`%zk+8(5ZO`*d|P|&4QU$ zE7y0j#FbWEa>PkpCqryE7-E~hm>(o+&x52rE6V%%EJ~hjxvDNzHhMd^!u&R@(qI+;l-uD{tyhp<`58jot zdIk^AT@ZRtB0}$RBZT4*p{p%~_Q2(ZtQZr<;rFeeo|F~Z$90lqtN7yt$$On(d7T9g zpAhj^P9$%zDwCL&vAA)3pMm3b?Mpk2mdCjY**-=~kP%GRL*aqV{@Q)K+R!W{en#S}vmQZBcuZaKTL$uq0}^zLN<)VAUm# zk-AP%d$YjOZ;cn+j+vUa(#UX|}lULeqd!<2pdd60gRvH&k_x4KLCs6LQz@e4K^_@W8Vb!IT zCUu=K?l)lE=P%yND{W>WfZ#z24Eqvc*yn};#UTv0tEKcEUP{o0O}w01HpordP|D); zzFX*hcZ`Pefs^1Lv?|j&QL1=wu}-ptvlK$0r1jPgsN{Auo+MQ8;K- zW&y>myAAM%4BCG}(|%zD6pvC!{)t4Af5J_26o(`~V38bQ9g-NZT%Vc=*8_!hgynJ4 zBTp2Cb$rUACb?+CkDTQHYwH7&XT}Fk_Wv6Lf=_7(-mnntAC6RD_*5bcpK`;1;t+;U zS}?$`u9`Qu9pqOJisK-BRzUcyMN{$)1m8F@n6>H~pyB4469V6W;IkTn*DoLh`li`u z6A}2V8vzuD2zT#Ni9p7o@3;e%wfW z(Lmz!8i@tb)W%R{HGDo1i_g2UKyir0=PWF6gkg&#I>MlmLg#ma$z{H(TA7;5XZ{s| z>?;-kbnZcYII;SgRh2d!T-CW;{>}jDD{U{^I_Xr~Jw4ep&VvIsPRV>8SfZBj$ydN9 z$brZ=_3ev(UvcvZibFp6vhaz^S^iaHU%3MbHjfVw|hb|_N%)^bNULnF$k!AC6A|?;JF+p*N z$#*PFpz2!n>GDQA-%vI~!AaE_Kcox@AEBlayl>wVK)+{!M7q)F#<|RXV0}Tl(fq;* z?mrvges4a4!|jQR$eo8nl}IVD77J}3^^=bw_L?)MF;i}Nt< z*a}Ug^DtdXgRoaTQo_+b;!z83a=7YGoZRuRR&}y?gX&J!_>sXHkNS%rVM#m>+H%BN z3i&jpo{8Z0Xd-Tpx^Y8sh}*xYW&f`%im}Jw#_1YkxYMIOMo=6F=*I%kkKGhcybSsu zR(;xI1bw(I+n*Q^{a8aZ52AUbR}h7lL4TZx(U092p*Y0o-z|)=9cMyC+=a9q56j~y zJtinU=B7F~=3GcWvpxs}vwYxONGRd=p00(+BIdiF#|QUZJEC<CpSIG{_?rbew`*%-{A&39p?8vk*(alhbq`{dI;KwC8B+p z8*LPaX#cJfDgVh9?|yg#v^=r5x_5%E)=zOLpDa*5*#hL_(eIof{+{(syBPb(DGq+$ z!0*W#znzCFeirovx+f<>_hdJ8C=Q`J(t-{?3e|%hKTSRgnJx~C=T&@s)g4b0lC8Pn?+jk%8IK8nastam;u=vdE531np=yXebUrdqx6i zY|}YG<6q*SJxf4)mW6<^XvE-kfwt88!~jh`af0@21GH!TcL9y(BcMGi5wvHyK|^r} zTG0Y6l#I3`$B>NlLmaZ_31rW+=x<2IBxg<^r>zXK1sfpq7f!&AH2`~_2JBFmj5Hm= z>v@TIJk#l zG_YExvHHLvE)jLM**+woOxPVPb3=vV5ULkgP=!m2Zcm2d&{$gZLmaH*WoaF6fo0M@ z;Sy?}orBU?TGWplt`iKnj@NJ<>Pw5JBTMV}M7)l7Sk zefKIl#XtwiCneZ>L89)}Foo_X5jC8?j+5MUM{!7Zomf)Bz3&W2(843p(-Rv*fp%9& z9`#!s1xYd4XQ!Cty{sCs`qGJpooJF{WFucWRnbZV6{MRKRNj(J6~!)8fQZ)h&L|1v*ldDZ3E+o2w;y5IdRkF{{DoLU%_{Ir_omY}XS6JT( z!x;t)$Sf%^EJ(m#Fi=5&GDo@*SnWmt#UTPZb7ZhQ#-U_nlB6@#7fu-L9Fn9nbZsa3*Bj(V3dsf38ETk9cghdxrn@^o zWS^NIvQOuS6uNV`79L6nMUsSTp(svsN%zroua`im@W3vogX<8|hcvB?Bg zg>iDfQpo*Ei-sgl)E7>QUuxARaiVKGiOz`@713X*iM}8vs2Zlw{gsJyf2Eu5C=TiV zXBOSz`+$axnK|V92+QNt9~J74TJ$8lCH%+ltS`}M3PUqNsi)>j7;9#5DU6f*wL)$?-61o$eBq?{>nw`1U{ST5M1Q?O^w(;lFN|Q3 zVG7+}n@IQ9y6KMMknTwGXwaP^b1ReH^wby(nvl&o;4>(XQ~ymu{dg|JurVh9Z?*s+ zQ^xqfiNRY84Bn(MSP)Yt9I3$YrbHOtdmXuyCtgU$8o^kmGYq&NffmpBwx z2o!b-LppLXKXZcdHVX_ovbH{P!tr(kjw>`AZ(4{gl{r=cE<`y1&y+ zcNB+oe}_ePIFPIL(in%ghvJAF$U$++1d~vq6UaEzOo)$tx8U_|3omjy2mLq^v-1hk z<}Ix6#B954A$7;_g%%2 zt@98fALo!J+_PL1N9KA#=6Z|P zWIS_yCoVTwb!p2lb)BfZ&p_pRjmkXSs_PLdJQKm>`b12wcVmL$5R>a{OtABzg&N9W z+WAmP9FZFZksB>4)6R#gI{~@Ls!HH-RVN-FFz~oh<1r8S&3l9gO+?_hF%ga%-Eg2d zgyXMlI3U2N<=Fm66~;l?DWL4MC`|%Pec{AqmsOhtn6B-FX14*&P7TeWE5OuT1f89U z=W6=7W($7iqLvo}U@{fQHx+pOvw-lO_;yT)!e5ZbE| znvZCm-k1h@?gG)?M2PmfAwqEo(XBQ_I0EzkYD zolJ4R!4&uE?cnP=!N43Gq*LxqSdkv5pmJ~Ge(+v5Dku(7`H-NZ&XN)BB{`XN7omKm za2ETwI1nEZAUFP(TiXn#c+5hGtYVfm;5%SSXU3li;Rk5<6>NFq2Naf5^6 z5S#}raPHOw8S~=sd@vwa_-h=X0|L+io79v=QU)J>>xAeN_IGr>HTInoq=N=X2Q)}; zU5K?49k0N2AQ7emZkSLU!t`+qCir+mGKTAie7s?K9GXuGG@rCcOdgN$BPS-GvOXXm zuknEsjK4O(_@oA7L43U7NCk#ZCc^MZHw-8aVfa553}k_T6vmc{Ef6Y-6aO_^wP0??ic-W~E`RaY_J0~_@Ft9-eK?%rP5ZM$RufX)V zM3_G3h6%+XOn+;^gzUv(Cv4e;0*bO1M}CZh^ko6*%Qi@)t0SK}F|u|-ZN|7fE`8C&8XI)VBp z1E}w6psrX5X%-u>VD;TZtiJ2U3dJE-|6pMS!@%ezqH@SEi2fQ!>IZ_9oz0PzNAz1K zP@K{+5#c$s&Laj+KhQWWh+z<&r@-`sM3{cyh6%+XOy7^f)bL7UGdKy3N7@oh(O=^* zNfyRFI}0Pj6#do-lbw!{?YG!>&gJwY1198UTtNFRI$nW^vM;)0{oUCY`^@Z%eLDN1 z1SV1pZn;sfRzu5xV{o}F4vFMl?EA4LsyGIhKXBq;Ctc(aFRAP#zL9aU4;dGQ_zM$* z%cB&MQ!+(2$=%5m`^;pDeL9(9K=M|7VxnqS#J-nVIsMd3CXty0^RSE zbclVwh*42Ka8vP@R9gj)BeUTGQc*@JRHU4RpyHL+`h{Qniw~P1Ju?`|e1 z?9<5!g+t-#C?gS;!Jy>n;G!6@`WLY>?O$XOi$ns~chaiA5Ynn2>Gp(H3*x=tK{BcO z7bTIZf03!?Kt>&BcIT@4

>@TFs#ixUJIKyRy}4R7R&;UK8@P{en&=SXh1gqTf64 z(3JrX-ga6kXi4b1M3Jn&&+lLIG!8X6r9S!^Je$?=5GL$pDEt#0K6G#!-lZHk@^HVu zf7`Ze{KZEe`2xRx;DvsF-{6b3-LQ9fq%^VCt4?{1_6waeS+}`76x3-Bt%RSZ-UtfX z&rb1?-~Zd&3tunvoigc7j(Uw^tu*Pqbm_=RDL#$%w{*o}Pb?b$b4qi1aP-T5zNK5lqvI1EMH&{LS8bhKdfr6q2#*8@n z!!}2+&%@EGxs;4OveDz^Q>>2{Tlib}rwD(;#`;(aMx>>4O2fmF+0=}znRV06R&mrT zo>E>>gH!gDz~wbnZ*13+AB4amv^r^!sSd2+D2P1SdH*htahZZ+8JF43Tkbwm}bOr z#a?loYBQ(UAjT^yi}8OO1NMTU=a~m@Gq^^v;_nM9uIh#rl>xuK(Eegi*if~Xfd};- zqBsr|$nd@3{Ii!An|S`ISZWrRZfv!tmKO07|J7WYf;DYZaL;-*CPlU1>t0u^#ij@p z+tUk*QCk_PMf)+{CS<0=E!2~u!IQh^oHNwc5p=kx7j)3=WuOHZrKoqX`Dn67_p0df z6rsy$U92eH6OmYdWiO~AJFJLCORyx)f$v3c9(li!|h{4fLDuCr3Mxj zUXN)88Y=DTvK7&7#?0Wag|GIvm+g-@U6=d)PaK3d3-|K+pU^%bjSp*8sl3q(yteq> z?|%txLkDcirSr+!jin@(Aqx_EiMeEh@yb$|%OhK+`E}uyy>iD+ZUVm7ZQE`jhtQs> zMy1}Uv}VkAf7fhnd9@}WZw?U=;6WT(=S|idGyG3)xaCc*SD&5Ae#S-!PL^*|tqB{3 zA>A>-dV~#YI>%i?dnxff(`z-!0&CKL$wEs2JOddR_NjWcQl1G`6{A#yHySjzw{WM- z<#%U?4vaj3l!f8$%@A{gqchpHd4y0GqMg%cAch|4p6aKUn%&!e_L@t^gS;@oOa3C?pi^=?mzeVY)Qhi%iE)w-~E*R*C`-*fKfR(ncoo^z27 z-{za(Ja${4lTI~2 zK3cC=^OzyBa4tYYWQbhcQ!-Pl`G~xkwhGXCrB-o_%=F1h&1=%}CRr-BB7`d#q67z_ zAPSN|LosrtVchF)!5j=Mkt(9C@N=aWF+)0@m#&4gYKZh z8OQw^$1*fJ-mnxX*K`NvDrt+n6;JIcnyTT208}e#MW-m?X*U;fr)=9d<5Ti2_33J0M^$RfF3PHka*|;buRlqdXJ=OHqor!)a*i|^QdAkPjo0yaqXDkd zgo?Qua6DideCb=fVAyCgI{V`s)9-9t?-O2B?J_&=^|nq`K#0M5?Orw4)d&Ccvod)2NijAqekO#3xWTOqFT^$@*w%7htTUZU~P^{8ye$ zDQ}O|bhzETkmyGQmcut(pX3!wsgpu=ps2qErwgSq+~!U_f053c6?O;SNQ9 zHEsrAw}*67$lNO$^VGZ=bB(kD8vjeLXe=$}C9c>#TQ*j3P!>0QTBQl>RVnzh2(6|_ zKu(-my%p06@n|7i%20!n1}E!d zUVG5F2#E*J=S4=YdHHJ{sy}q_z=3u>((wt8XB@MbbIkG5$($86KI zo08t0$=g9c%z58nES&WqJ1e?6>AEY{9N##&g|1~taQ$0ZiSRL)-~U!|y$xpwcSuBO zh{6x@O0cbJPp{yfR;Zp{>GxmCw$7!>xU{_*r>4@R$&*yOHS+2B{jcVpPgOmS>V5Jn za_y5l_NiPKe!s`vo~F7Dw&$;$pKgPly5C>nj#sLVHwmUM>j9?0PSx+994MqjU~ZLT!xHM%|)Xj@j*S3yeKJ!wOXpUxKrEL;;Ky>*7f+ixXJc)TyHCD2S5`;9>QLL9!v^Z&Jo& z-9>ge!*VKO%!a%Ja0wKvutWIBgS|3%38q{bry~-BuIcu1#vlT=VB4U{KF~ZNbj~J+ zaY1={j3>F=CN;Xi=?~m_m>OL6y_vz9tzmcKxKe;_sZ^^>LAY@R`D|Mv+VkIL0K#EP zyvg55R$EiFSC;c=C%K3r5Ks5@#n;*kvujYJ8;H0siDFDwl0#&&gpdmITo9)b!%=jF zF?Dq!3e3c-C3{d=H=(aQfyj!r^^!811s{~E%{nmyHQ959;JGaC1y{@wjyr;phs)BO z9wC5av=sWyDp>KGRlv4T3N74u73@}gCF{Tw-P5CWpfnlz zQ*xbTI2V^zkB`$j$fEns;+#Y`E6z!Dv*MgYH!IFb zbhF}|L^mtWNp!Q~oJ2P(T13Cb%5#%tOXv`$L9Uzj$87POZbz8hVoE7Z`x)A~=o^cO zqr&Bz^yzNQ2nD~eT)ELyrk5-y8m^gyce!z*@$p{KCu}t*jmU{4Nu#pp0QLb6DgvoI zCt2={y9h-0BSD%E_KGxo-!h%?7-O7t=}v5Z8B*j>i9@<22VLsyB{}$#Xg+dGVJMlo z<2XeQmE7WG8TQ&P?x5iZ2`<_Pd&MM1vpE+K5hp{A3!7(-S42{m=d(B@Ttw1W&%rkb zdPO1KW=ir{C#K{bGH=vpW}+7=`lw6vtGi?(b)5J0LeJzcx0sSNo)v44Oz_Wd^1 z(r@g8wo=l_VCsZUVlg;bPWQ&)y|8xeDHeO68|VP%7HWY{ZmzX#^epM*2&sTBp>=-0 zP2=>|d9hcez1FH zFdFQFAYIzo`#C)@?qx!>PT=19eq}A3j?1f_zRa{PQkW_p$rc1F!!AgreW-i#87-zH z-$fgd};nGc-KC#Zmq*6F0GXw2wiR~B{>e^EmJZ`-nShmkv`}U?QRbsDUIspvm#mA{%qGflBO{#Tgk*NWf>ToVVnj)0@tlJznRpxNOj6hel z!aI>$>a}B9r1$tX>NxZng-kVzbXr?{4W-K`<#tT7Q9h;^oX*BZFh?*G?Fw(k1o^O0 zo;sMCLSX2invk4rewEHJuellB$iKhFXPVn(5BW6-_{d@#+b9ohXq1Uzo?$agx-De9 zsgz8!p+4Ox2fnikF>#D=?jXU0*9+E{niMnJ+SsU1Pi)kIY=JF={7mc4rr5p`0x=oI zSa);a1XFzb;WvX&%3}Dc#9^mTtP!EpN=ErY;aVd8)*cYwYBVJb?AiiZ#wulGpTK(< zF!sz9Wtf#E9y5_xVg$jC#py;h&Apg8RvZE{O*;!M*q4^wVS|=OHdCO7Et~(I&_2dSJ3(qjWwX^- zN_^*AHoGHP^bUdEj;S~7EkX>O_$m(!b`p;gLU83ZyJ@F~)x-?Nj_^(Q_phAA>a&0vWNGu!u!qF@m`57LdG+AniUdoarIX+7?gZ0w? zTzkEwR82AJqqUS|8zGUxvnVPdbS!0c;?=Z~UzMVS*O z7KNlB8Y&`n5#`eGilH`K%A4e+q17T%9fp+*iem3&<|$ZV4)J~tE{*VXp;u@G%7-vk z4CyJabmhWS7zXiiwCNMtvW-?PPvf07OkpVn&zZC2Y2&0SLh$kmWRERx8m(_7VTH`l zMw5udB;w#Z#_0q`h~t1YL51p_+oitb*oP;XRFBR(O9l_ zjvFMAwECB1l9=na=Mzn0+}FuS+Xd#wI#+g@x)+n>5IzEr#bS^}eU%=_BCF91B8j+J zA2&M#Nn_-SE7v&|YjzX5xRP$nXn7Xom*J(}+4LYOX7P>9tAxMJ{wh@s)EKP}SQ%vR zd&q0Uo=elIm`j`p>+n)!IWdF_N%PP)mO0&}!xWU5vL|_nNlKD?mT$$LNQTC$v_Tf3o(SVh_s>SQgm z0@GT4Bu$`o8!^4na4Nt5oDC11gJ&jkX^GjlDNa(kEwZ?|Bb=nTXz`LBa1om^5t*0p zjK>J%p2L@~MtTM$+_6mWtu8fI~0B2L)Eb8 zftF3jA;~&KNNemqC<1ON?-7;`6*-oVL>_kBP?F(`s&u^=dk6AC#>}-&*6r+-;+*<> zIH#=bZ4T$u*`-mh8qAIl4t_#xmdiP1HA@o_Wxg%M%@pDeq>9;(g$se%>HuGBW! z-2Y$1{kPg`Jb^DG{uisQlq8#P=EwAG-j5ucVFNWYN^}OQtMZCt-ILOtOztnjY_p& z+tofCt7i2*u&85oa}WasyZU`r>n*R@8Z09>F77VkTI0ZCyYd6^%J8%yt!ryW>i608 z9gVZ5m&*NiWxxNcGJigY+;%-lwp$oDmTXy09<7Bkv=)@5HTOJw&COx11q-%06mKf! z!ozVs8F<>LAr6A45Jh|<8B@ub_FmaND7ID7`Og0>L^QQ|`K8#FSz-d?R0|Vc6wd4o z4!z2DF@d!Bqkx9b_8_5gY<@kSfXXIeN0-r6iw9`3>;mp&RpxpT21$XA?C#PJYdF zO@i3jNHo-QUU{U~fy<4ZihC3=YPJ7bxF^enUVF8lp){I^-F7awS8|If*@sZ2`(rq_ zFBR>DOe+ylr(%}iZkB~|2sy(VurNx)?NI4MqwB_fqD zsC$PVZ+R2+_FvWVsD^d7!@5~oy=Qm7dK24E35JT2R+;74Kn#5N{5TG_N&zVl zsomTNCkq_!*wW&l6FIsdM|-haG<}FO*}=ocND5VK!~5YxdZ;DzRloml*k(C5Peizl ztraptc;*V>nWN2=7_xgPUj)xako$i|2#;SlUmzY>BvSJ13`YYt1|}~Ww$T;cuU1FP zDKSpYi`j(3)=wvm%0Xy;Wk&zY!(EvpYY2&vF7^b-Bh(pvn?-lD(Y78j}0fE_5u z;&Mn38+@vgTJ_E=N6fda=3pnM*T0j^X7QzEyA3QBzRZ#_!7Y_W;0IVmZUAVU#qa7J zR|f5-lt=_PyCdWf3a8|FPmkWh;{*9{b4E5DZ0z98ynyM*p%GE=j~C7~*Y(Of!q!IY z6}2=6%E|b!My7@%8E2^*50T?}4#M2M1@;n!CxxLwc{VJ)S_F6Lh60XKqPb6&z`Cv# zvk4!qg4gzT6$G4-{v4LJG1}cG>){aPdX^l&VfnTE;?VD9O zcizO=@aJ-eCJ-cYB)Y+?BC0GvkqzqNa0_nt(imPEta|h!L?jGb-|0af(&AVh_v|Qq z0{0OrXyz9#X5ln&?6Un4s@US`MQOwn-Y{%cN_ODPz)(E7 zNV;VbZ7n505?o2}zzIvkDQ-rPehL@@hbgh`ZuK!AjpLm!IpvkNzjg>4tN6$)Y#g1E ze)8+#JY4K-EG3ahNJxkza#tY0L7(`VBony;dC}nKSg?hK>5eTLod@G(PDhB=++F}3 z`*$-Ij1K*&C9>6A(TAySn8nD02uY~Q!YMtWHHBNIvkLRZ{}fl1YAQxfT_Tu}NYQ+! z3NdnUL?`PWTiUzSYp^unWTZ$VS^zttU%cwm_{?BsogY8VhYJsckXhanWMp3Hu%TtZ z(;(KKg6oKmbcD&xl`u5lSP(bmISOqu5_?4Jl&W$fcY5j)l~1{HVNId*k)#S~Ps3(-PT!_#QoP258^74wxdDE7s5249=byPI^~O zLGgrDE&X}ln4UOJ7U}!oZzUN z$j1QPO58IzR%(^n$uGBA8j1dar~FE*D;yYsv-g7!?G0MNW73<`X|{Mf`Glx$hq&Rl zd$MwMizzuF%`@P!OKrN3kc#Yqn_C!XQ&(7vx)-r@hnC$LWiH#)Jv|XQlRqgx1E18WJ3Ke4e$Y5C6Ccn<-I?bL%A3J#o2rnDK`MiP!BDEW>hf5u@BI0nU5 zHM9`bvwW1!uLya-x)ht!sXFv(RulX_#Ap(Y2PvL{I~wE>z$D+cjkl7w>l&oP+v&C_ z(k4=6cw{J?%I3@4Gaw#(nQooViR93Fdo;u_r`rsZQj}-vCM5&KlBXF?lzABzETG^p zOn8k1flMt6^YBUd{s?Vl@vmL>F;$+ha&1wN$|<)2uOd%{?i_Z?okvjKWq5KM{Z^EEtmBJ1)wV`(v0dAa*>B;9SB7wjT`dyJ zuJSOe99mg!fks$ZC(#667vc7AFvSq$a5 zBG=FD1%VS|wNsLN;bPaLv@*!gJ4!w=OQCdahx4lhy8a+W{k%Le>d~>qqSQ;hz|Lwl zC0=}*3GUCBX%bdq4?@&eKE4?x!*KMAM7U*%dW%A6u$N)myrUO5#+yzFX3uP#@#L6v z+XdF?@()Sh1-$Kdcbt?;6kps^4hSu!#n0(62OJ6(6M5hQmiXTnm)?2l=d!s>=Cp0E zON2Sk>w)b>!H;2TRhVHv?JP`6S&mIj;l9pje)=~s#0lrlTAua7e;;^+kAc&I1e1$4!0SP#Fgn~hd(gQ<+ldi ziR)=IyPmF+K$?ejG{|J4AD)hIl2R3?a>Pes?o=k2FWB6W(j{f{7N?X=#}Ro$K_cKe z^7h;IvIJ=O1Do5IC_{Nwy-G2M2p(-pn$t>oXn0L+dJ?bUj8?r<5(yvXu@efOjRTos zu+0iSIJs)xn$HC)4UAWLK1)7=E4P+XoRZO}DNM0co!35zm?YxzR!Kr?RN7mJ->Lc( zXYS>rIEpotWoHTiUjH_;sG!6NWd5Jxs&v!F9jTZm$&JZp+wq?LU#gv%iiOLP$}PGg zRV>5eC-h=XQe!EhBTZOCbsYjn#HmDcx2KSaJ@peOC6CRWEig)L6>$_x_lyntA(k$1 z+chun2bwSn?B!`21<6V7gA?uM5ao5I2mgX1HVfWJX2GD%bm`23SbHfsuCs9H>adQI zQPY!xresj>vLI)HQvKuIzCExiv~KvDXvzOV^4$27*%UU$PNRr`ny3r9|~{ zR_^^u2(N?v zxem!>qOWodyq#q5%WNJ@Cxeq4PPuI7Sr|8`O0_u!F)LiAjD8QsHsF%q&YC0Io^CMQ zLS3_P=Et+_eqCv03db62Cg(8p8vx7MXP}3Uns z9$(ch$|FT1Cn;ah%EkoTN;NpVRfQ;uBXsKm${J#j!CqdHxA6ZQx^U{UZ{bLfIb^?amht>U(faY6iJb2s1*?7%u+d`D`P5Zjl!yNx2A@J@q) zZGy2E>o0B4DtrZeiJGrP;~_VCzA><*)Ml6hQlRbO76s=q7o_okS#BOCIfcigttQ3C zn0Pd0Tr90uH{;gUoVk7v9Q@{@KiuIj z?q{XDiw-d=V~Y-c;0?zu_6M$2F|GZ-D}ITAfkg-Xf$Q+gfc&zHhTygM*WIN?c_Z@N z>MA!#m0QSrA{T#SpYJS9wI!+v>ncE>HFc(@?p!@Z-plD6rx>3YlKuWu=1 z;JV|R^r(08Z+qdLnUpu=b&U^5jhk`hQaT^FN&loi-sw#uBe1%!937e8{~&+1%Wie2 zn(#)vgT}w_nJm>R;~XI@RNE~zc2&k3@R3T_v3dLbUrFp&e%Xas6=Vz6L%vndcUR(f z>X(5J=x;Oy@G4^h1#~8JV68t=pznb&m?lQyFK?+JS%R){yPBZ5+f~aq=wB5__yhao zOS&Saf4f7zyy>!};ixEaKSr-zl21En?gMwqF9Wygt`xm?wi-xFpYYkv&6P1Pi8K9y zyLptmrs_?^LF;xu$Wsu#v}4)5ZfU-}{rtJrh@poDaWQz?4fucU z1eWNx0kUxP(CIvav%DDukz8k+ZR=0U*HUzqz^V}Efnmy$(PJy}qHAMdTfDahgH_>P z56Hyz&F37$T@9*MYV0i&8tm)=4eUnejU4v~IqcpPWd?*YFIKTenJ7ak+O`+`f#2fX z46jfJvg-W3F^>P&V5=r5#A8pOlv`Hib z-ap_DUae@QvIKYCfdTW;+(Aiopwhjr$;0Y;1{5}?GQIi(&*bJuRr4y9W-b|HHm{S| z5d=%QhqCISU)E~Z6M%1l-mdcpp3BXTi4}J5GJoKh%~gbgjL?FO5rJ6dgtZAF>8M|PWEc%2e-%3RZlxwEZdHD}w}fzi6V zC)2l^oi|FnUMSJ8?m)jJoz99P#y9W$fmg7Yk6h?YY3(?gG&J}tx#gOIOP+`N7-&y&4-M6Wy8obG3(1ML9pO*r&J_33 z6bs@DFn1cZv2a|pCwbXkUbP#p!JXofnQz-N-+^ek-4-ozW1&MsQ8AKWEuiC~w8Xa| zDl{T;`Xkf1y+xjLhfEO~Gi^YAiL`tc45*##eu0pG}Jcnj|mns!nWE0#lMBfYB=oWx`x7<0`lgloRD>^^cII+$VkeF@wX8l%rm zs9}2~*#`YSxa#9JwdUrkfGJawXJs+?f|+R}(x@q3DvGlS@!u+ql2=?ivhHl;R+&hX zwIXoE95{GYz-TsCU2`)|U=|(R8@@<^)%nk+OKW?C5An}`UUYCb9t5NO3+Za_LG5v` zRo)m>7Yx788y$b(dm%E%Cm|yOQs9RA2x!J2JqnQar3ERerIdK}aP0@?=06zgUea3O zz(Dqxofdl1Y$W4K`yQJr$qRk1c2ZI%w$O3llYgC`Cp_}#vip;U2AyGW&M|Xyj?FMX z2E+V~O`7CYE&T@#q@+gDx;7GH^lW)Uk1#K7!~amI{EwANHOO&KY$0(+p+z5tX{^BG<_qwcWJFY zHCV#va4<@v8*I_=mKrfEqDf4Z8%V&zo=D2}L(V2}mZs_UlVuNL^ob-`-hOt9$%Vq~ z#VKkN&CmBPo34QV0gL$q|LG6lz3p}^r+?lS=OSuDb)Sirx7PrN{?Z`fe=WPmH6yIm zpNE9`la$kltUM;muRxZoqf0kmdkI95UPbwmCT<1RUPlho%kXMC=GjMQL1W(N^u!<} zp@?&x#wFi?hgMT-ynAYY)uzGvle%njZennP@M9@LsyIH4CoXwf#m$tMuU>opP!aKW z-sDtkhQrKiMfM_AD5gegNUmMHi%Ds$=cFQRJf!Q?^W=TV?L9WcboP&$C7 zT;OhQ%5zdm?Jv(jqjCTSl6|&E zB#X73K)aPH$gg5$SSiWt*&+250r09e2FnB%CEb~tcg02`n`mvwX_rY(8p@)-xkpq( zYe{snpMQ6!%E^Np+=TNk`2B|&Jn7pzOt1WS$p8@<~m$Vgf#XtkC= z3VOGU(a)*`cu#+&?3Db0M}l3CT!~xq+p?tOEHcmRhhnS-N_^U;L~4CtQ6k=Q0&V7b zIr)WmC>NCScW75;E^^6{aQph6P>32!B8t6ss^D0tK#FLbZj@CNWP*8WxHgs?vFuJv z)567GGHIC{$;rL-mGUO9VK1Dcz%G%w=m+jVssEE9><%$7!JY7pLnX3vDnMQ9Pa8wqXN zy%a9G*#u(H&*b$`?++%MEZC{*rr7bgFsHm-KRt>IB131FMm^&l zIkNa)3_ARU%@`dF7iU`u(_UJo9y6IKe*aH7Y|8I{nC+4NhuO4XL;p5%TTrb1cx9_F zM5-;IbHqdIr5(&a7Veszmb$eBI#_N7_!#7AL(Ydo_w>dpP0AOQ!i}?Ajha^oNThF< zR}=3N%z3*!$3)@D#(8u9&)B>k5gvW;R`=4#axXt2j#wH5mo$`f}nBjBFDvI&%$dz`H%kc3%h zbQF(zjd_C}4x2ODe@){g;CYBYWa>Oc-k} zfk;bRDmh*zp7RIZ?6R9AeeIIdMPy}Bp0VND228Cdx_ z6aMAm99d`nz@M{{Rk?4Y>GATltPF#JE0keC0X9osjsTmt*(|?u&gNH+;Ygh0Ygikt zs@KLVWQUoVI+*=m4fem)78f1ZKTXpK;IklBiWm3cgCS*F8TZv7jUA1!NM^st=ya=9 zuMJX$2E?;2Df1p#tsE5>kxJR8nJF$EP-nwqab4D74P|OQfuPcP5x4LuP^sdja6RtP z16J$jFcBr^rZJOK4OwgokmLO}TlIn*(slwdRwDxo9t#!LNad{d3(J`boJFfN2Fn2J zqf~{Vz`QAx8R;2i)G8#Y3G!syqNXCf(Ln-@@IsxMB&DgL1z05Y)JY?6Km0bMZLt+! zz3gKUL4t_-(UvdE+eL6__ zHn;OQNLJ3#bOJe9pw-og@Kh{@G+0(+$|Tf2QiD)SXvk%2zDKs_f%1FpJh-?5mYahv z%HTYZZ>e`^IDzQ%Xmt`*<=p^st!e+^>lcc+?BM`EXFHrog&Q}WKwwHwULgV$pZ&+3 zCBsf`isk5DazXQ#CurKeVL@qk0*IGw3!a{MCv>LX37x68i>Y@4lTRLiWg*fm*QY$c z;PI0O>+zEH+}pxbqh^V@ff@!?ZtDGt4cph0iQW$-#$q9fFhUGNsAHw|Fe0d7|875g zZ`df4=pH`gK=62t-srBikY~+nh@QSUlb)VS^x&;_v=5yo&4XIm4nb0(5$QyeEE0t- zwRB3kH1^&8NW-G6>#VHjm^3yQwNMw&y`K)|=W^;?0dhso4%2QZBF!a`gmrEXFV0?4 zvGScuqwa`k)cM#>CJ|0)(b(mgbY@G0Y}8l+>E>B;?x&n?gTYO^=F?buohNC|QVOu> zWL8Z>U`(z>!z){@Mg?0tk4~o}NxIVREz-1}Ksy;ok){}4GD>k`eUEDfEX(-#OJ8Zo z;Lu6rqT!~#*#Qb=bLgaKGl4E{hYt3l)iFA~)${AD32_LfhtK5sD2aNBE~hl*lPvEW zb?nZnrKUPP+K@@+N6|muL(bO*o$`>ZN7E|7OUAnniL`UKpNWo3&6zJP^3;n69|v&} zdyg$E0zQ%Vk|Oij?&?hDd)=c7IT9%gr>Z#c5suV3XYz@n5!Dv>G2-aYyJB^V2~-q_ zv8RRV{^7hu{GhSmPfWp=Lmg$Vo$54sbMi5@t$2Wtpg7kW+TnD;wcK8szl2p}mszEI48MYti)S zRV3aG3>HO@oaUX4y}R`kB%&FIhD#R0;qgp&ugo&MeyDM|WpXN~Q^_GOa2!RwV2$K- zjM{XP))MFvw^>R>W(KlYFc-Mfi%3o#q{E&oB5{}W6zb2?*yd8L?2QRMR&_y-m8vDs zB;wJ`x0r^Ty2T81AsIqs(bGyz7}#^VyO2>R4YEiW{RVd)Rw1Z|(Nfq0NOYC0XY!FK z-f{w|sA7?3(^?kK=O{*07Hg9g|Kem}_ZPMaKQ)vnoA z!qi#owo0R!ljw5~d$yD5(fGRGZg+ng#W-c|x7EM<#H zb>aoTa4Rnb4%Jm}W5{GzW!lJC14QhgH(r{q(wS1uZSnsr@9JaYIIcU%Nam&p;L1n? zw?vFI~t}#MRD8dJxBE7w&Txj&exxDYX%3{;!x$7^Mt~-GzVy zg(aI@YYHV70V7w{9F8N()IK4mHc|Fiq~7Rg9pr8@*jOjG9|4RK-aL^4!;WkfNgZr- zTc2YnxHAo4=fx_WH8j?Nv8uc?Qwsn=gs$|T1Lyl7j-hynd z6eSD|VcaX*gVqm#P{2P+;iGC|5ukWZYB|+_Qxf2qQjQUYrJ% zDKjpjHiI-zc8<$A4g*O3FZwy5Kc#++`DZ>PMO5v1+LCHY79)3-GyFM2^efG2Wdh<6;BwWe z@D%RwZP!j49aHP(cbz8qIKrCn~Pd1KK$(#fXP3FlqrX2x- ze3&**mM5`4;WUz%nr(9wf7X&e98v^K59l1h`Xz7)td%774s2=>7_iaFQ@yFo%n6EO z@n^C*F7$E3mcZ(@jiODiVw>@rTkW$V>?_xG}*S#bew3wlq5wb zlxQ4Cy`?->;T0RHz&b-4PRL$wiSfstRg}2SK8TfulQ9n&OxYj*&Za04DR)g z>;rb`jx~#KkO1`vD1`<8Y$iDzuCYfxW3$eth_eK-@}Jp{V-t||ocMIF267-ZoDNq2 zMIe-J2U%ju5$J@wPD(yL4^um&ob%8axhXAo1e1D?2eT6T<$1iuB^16sv_1QgxN#*9++`rVM4Qy8$KH0F<3;`-2X5S2y_c2Xhf6ySpoM66Iw? z1BWJ4fa-D3R3oGhcgLGvWid|T`s2&F8?0VZq;}KwPocZ?(;4%6+OlryTKn|dujbnb z>I&NiBjIRTe;!@?5~x9wqp3|TqT$(8q(7C8M^pZcN7KNuC~^w5o<0m-P93ntRMUoY z&3SP3v?5@;%uD{KDMPupzl^N>(M%uq0*cGKF@?(;5Cu*l5xWnxpixaOl|<8wfGOOp zkU++Ilae#ZL}A(xLk8<5JXqU|>ArWS`@s!aI`MBqX<(={h%J7#>v!$)&bR8_wM(qN zRl@gXU!_rgOK}8e%i@OHaz5KVO83mklNGPTeTqA84;(tNFTXa=dzpA3of;Z0^^W8# zzQ4JG{Y@Mp)V|zp#}C>0c>{qHM?0(NboE~3{gNmA-(zEkZgAT(&({gfc~ZxOsM_(@ zzPxsug#?dD_vZ%pj==SkwW!i?I53mS{i$`P_=q9707!ClPD!SyYEnz8rD0%1cjS-+ zx47-A&xexM%x5j;RZND~F~V7P+i$HcZdi(WoCS|6w2~PBL1v6w=>+{WvT#;NNVB6M z-7I}bqldKEaqp*ydppFPHfU%e*V;nTHeue(%gcCsM{q_P=Bv>HXY@|m1YfZ5uaNM1 zJF=|Kc{LeLv>rUa5J6t^e}~0CCmJwu^kP2Wb9-)>E;Wpn;Kr2Sunez32F`#GL113E zvdn&|&5&XfqLEdT;p=kOakfs~-G{P$_O@V!Z!5%2!N`uXX{pDzs>875>B^l|jK`RDnDMt~`41%(u z3){dOrE8kxG=Dc+{H@Cu6RYsDq=lKw7rJ9)IkPY3@WNnZa`a z5;>D2xMRpC4E~;+n31P@hf5IzVZZYa3H6NUELK3@U~`x{ ze?3vnYsP|*vFDv>(VeQJQ6c7S2H;h=5Ad!ju!M1{JcPrs>DsuUtzSNMUi#Jy)($#LJqL=5CVhsux1r@CU> zj%_W_ChA_L88K>cZK9IQ3)wMTgiCZiogjU{ow@BR1aqE7OkD64rVl2R?!&2!;AE)^V~S*%bfKDP|j=?$@_t@#oJxDZ{5mL=eD&|zpGif*tM z$sREhEcL{VFY2T1vkSdo(rkr}!UhdVS2$>zpM$mKaOXJbrW@0*Vma$o=l|i=+XD)G zo#Us{e9__2^T>qT*evlU3hlOI13t}g4*=TJ!Ou0IciGC(R~j0^Gzs}d6`ak`KLBIU z)7Q_>!mA`rUfGlSGX}c0gfv8bONmdF41yk9X{M}dW!!7m;?C_MtT5opTwL0sf>otq zoUef-pM40r&`mBmX_;rtmU+fq@J;q$^2%haFO`ag+~8du>3N1(VkXuN_QEBn5Z435 z!B%EKPe*DUjmk;Gz^tx*C5{W-NS#(AVUVSikZ5gxExrU}e-hARc-_l4ys(u&mme8M zHW*I6LZk03;Z9=DJ3UN@PMr1Lqf1!9r6Z=fM_CCjttN9H&q!8L+@LD-oVhb~&(#2c znuIuyCCP}R#}Kz3?bC|3|5zI1t7wel9zhNKofhz03whvE9HpM1$6kDue>l2xtVsQp z^o_-6pkY;EhE&`bmE~*!H8wvcYR`l2#5u2{3=Q|^3mjA`%KMXMEBPbo_TWgGQbKR2 z4vw2-gxuDDR_%7u>xJH}Q+_W@4UX3dw~%~nY{lN4QG)B|(y%AcurJ5dqTBj9tF7-Z z?JY$%>V@dH+<22{JM^s*TF47Do&g_6=`&rS?dyA;U~_I?|K0}Cwq;2RGdItJ8^2Ev z`s9`R92WJEKJK<3k)Ppx`c4iQtKQm((eU2ww*G6dGk>BPs($|!P5U=#?ejnx8{)-& zX$Cds%dJMH>0W&IeZ4^u2KW>Jrb(XPEe}l0$b=&EaA6d;)2pffYv#!GnoL<%t0_x^ zden^NlR{2Z{*=_Ao(TXi1Ar4gEiL!0w%o)0`v8(kMJRU-;*i@&Wv|_UK9#UI!|@Wq zA)k2p9cAR9p$=BLX_{zf2H}MlhDF)l;PK@MHtxvpH%(K8mtynRkeVcCB}>(8=2`@< zDg8ic;G5C}H+xNxSj;R~6{2qYn*#hL0ROcx?sOa6Xte?R4m~3S1G!-yP!PeAWg~x4 zh+L~Bjf*knr-3>24E|7ANUGlbj3CNB(ZuPJoF$9{NX(JpJ0{$|!&GOg8*}2>=2!>G zZT+!=|2wrzzy~(HA>382eNi^_?8kjN)h8VZnAV^e!^v#msWkGp(a0xFlDctMTaCM6 zxKu7mX6~t+D%VjOfB~LBYn3$(kHC7(fH0&jPC=M zGj#+tHuj|LL7a?!5@b4A&D6r*O>Bq+xmQs}bG zG&4936PFK|^YkBsw^J4+&6XXY+V}_pV>s=;yHM#X^~NxEZK9IQ8U?73X~uLhvM^x- zxSxW#*#I@oo^5@-@ayK-HJ>Goi!ozlef@CnpuO1hGjMg%q@!7~l}^^o3yFHhvZRHX zJ$3*&I{@QDpm(sDnDxUn7}zlF^M>5D?3t-A8}-<%M+7@az1h|&>zNqQw@JV2`PZ=A zVwqA8y7dSR^uXv9hGUfJ`oyIfm>11<+l>m?tfB^JRYQaNfNf9{*PO_t{wF{>7eZ2_ zWLp8!W9)H7-&h~#%3YJ793w+kfD~D1X2f^%<}$wqbEhmynl0Pb^8)OBSZyl|(+%)3 zEw?mTQD*Kun9Ff$M<0{U(B1T=nfh-qcsfW>^Jw=wPA%BhR~SeTvt5?7F!M>qUJ?Va z|9v1Va_h8GXQ(Htd9|CFm$UBAAv35{j>!nPCP6vo@GLmwg*hb2K>LS46{#q#T#+bPx!yt0yzswe=Ry1Z#(}2?%SUJVxenrPjoP#wzy#_#+s6ShJ+qwLwhJV za9{#KH)sgb56G9Js(iSwVqC?GbMQlOy;UYb4YL_WvZ4>MbbSiSwUx*nfmL)CBh?DEn=PksmAQ;F4a5b1Yi^1vHdYYP5dqhi? zw&-H&zBE};W|L+wF=>j!M$1rC6S(Wa)3iZFvtzH3 zZ;wx3dnN8Y^FV9ll18QsMz;ht!ZOvc0!F*BJK~52lGNPRstQPKk!-Y;DjO}9hMjXp z#>CEmRh_21u2?Q@85zdSx8*`_w2|pdQJx{A~5Tv_%2zTqUy<_NEacHSr!3JExuN+YIMAhOKb# z+HGr5*!n9LD-zPv3llPq{6bLe0;(rX@imh6x-?H^=)j+S1tccG$1fvSzuYsBD;A@5 zdPVB580Q+TOYh-q*BsYK=@?#>nKIRBbjJrE!pkugX^GZYU9>wlII;)ykyn-|9=1Hq z2P_ATkOM|7c3kYh#0y@wgH=dnL^uzclQaB~$=N1q?=+lvcG~>Ln+Km)4A}2PGkO5) z^X3a3o70He>6v7jyKxUqUrb-)bd9(|j2xwB?xryf8QCDG3|X4F%PoXcBZfR|ywzN9 zys2A0zBvswbf=Kn%0s|&N;9M}w0(bXmY|5lAh|SIQO1*ee}9Ss6Gr?Istp5>_uF1n zvMLifP?S1-I!I5WVox`CJ#1U40yi_-+AMBZim{;SMv0d(D@>4Kn8tx71?(E3T?%5& z`^@gwC()r5935&{O}4*Gm(dU{2@Xx^2hzEan!bA4prhrslLvYVIXLcd;nvq16k(Am zd7#Xs>?o^K1Rp1S3YrTW{f#3VN~MSU3-{;t$DrS^6thBOXki4~R)`=Xg8L0iK18S( zWHdi^AKAc3Wcg8q>I-@7?uuq=X|kez9}#<)9}P)>bt^(~V z=e8cM{eI|9;Xvu}mX?ci2M)Py3of?I9hf+F_ilWhX`Q>+azg&hX0z1`W3<}pJmNZk zQoC7o%CN(u??KivMrJJd-ywe2@(!75-g#-xbv}D_ZC6ttcO(&nWrs9#mkvD*R*zu_ zM{?(NmnLa2$6wcTDC8cD7x8>F8SgGv4CN9lY|$ zy@g8cnm{YycoSarBM)aY33GYBQP~k}b`+U%dqBc< zz67cG&+(Q8B+)v0Ja*7+Te#>-*BKpy57)M65hjt3cH-x9D9VdLW;Vgc*`3Qjyl54$ z%B&vyGXAMPzO(xHp_bohtsZEt9=td=eyI8cYs|E$$%DD#NTCI4<2naPU*z@p#H{g} zK#(F&p@{to0?DgGhPEB7KE*i^`x_|$H`@lq_8kf?m4kO@L-m3GHc-y;(YKsOjK!cV z%j3&Ccj-ye8`t@Zt1r3EUs6lDZNJU9yUybTy6Zea4dS-_j(R#KPY+NtxNRR-El@o$ zHuf(qzj;IT@y_ZK%O83@2>ph>+~D4VpR!&(Sg$G@A3-J{d%(Kb)2{^yG5@;2f%v9; zoSPC&XSE)$>TGO!PFNOy^kl%IS1(8v~z8=a5-lxI=w6|9YoTgvveJSv|7+p%4_K zF}x6pAw5llq3b;3H_bfsB&`>b5^25o#?In z&g!>fHKQKIe+)&Do~A+3b-wI3&b(?yq(oXX-r8Ax%dea@<42(~(bF_C)kZJ7W^B#% z_Lq2b>wBRcZ*^9G6ssNeNd7DoNqU+FN!R&`-$3)K9gz}g?fCi5>d*bkSv%eim5H9F zk?B3K8!|I_FEr!loz=HvHKQKIUxlJbPt&02I)Cdo&b(?yq(oXX-q~4w$FH0<WGp}k9 zDUq)hZtI73;y=H7QVh3sVVGF*IE`Gjeeb1etivG>mr*@{QYRpYQ;={lKNJooJx&9r z>-?SHO7p2CadK%jaj>obaBXFy_S|0B%>fO623J1R@}X9D!N0e8q#1XvvTGj&4b*)33smOM4z^sO%1rZ|-YW8#>-;$ieUZW}Zrj!B z!{(>tZrkr78sa=cXKR3+46`F!W;UsH!zMs5W%EQv@&j%;+LhfR1N$^D%wl(d`4fp2;D=Oeroy5c#I%3TAr>GVI5qjr3m?MX(k&5Cl z0-{VamNKa@4!_qbHA^aGz48_7w4qotqFDF5JH-+y4E{saYX+K;2~jC}o>kB1TaUcp z+9}p1*E!BQ$I0(g*y6lWnYsGB{!c^*%bXvR6 ze8cT^+ZokuRc+F7?|auBSCKQj?h5Lr8pw)pe#Xy3Wb!MXlbfTI=oYDS~RHU3LRxs;7B<4Q#1hj*yMm$5^6EnL@?4trgxQFFM? zi>~uhojFW|`7znLX`mU0`URuh2OIT84Elu-&`)V|7p3T~V*)u-KL+_W&MY@8<#-%& zozwEGe&}(XGyfmQ4Y%#4h9kz!^&>_UghzW3NH(-FPHSH_%6)LPc4`#=%XD{VdV68S zMSovzR)0-MqfZ`t|m_^P4>0-^=7r##4}EN z&2sO5?Y%9z_8ui;Y$#=%@_yYY_rX=(<8`+8>&Fp zK@xsUG2-{TW`;(X%=yB?FN6a`k3TQ~%^0y7ToHQ&|4~r>nnuB1lpAlk%1oC$dN=NN zm09PT6!4@hNn|>{DFM%H!hk2}W`#Dw8(uK+?{O!Gia5Q2sL>oH>6nb;RIDTTFA?J? zH{PD2&;i7?;wgmGQxyS3GgD0lgM$zAot6|cp9rkO7rCK~EW(B6hj z8odRd*XVr*=(&X6IiJfiUCA>*$2wQPNYE{7#HLq#yydq{;7;64vC~1&5!k-(!S+4Z z`Mv~FZ%Y_R^=j}rLsh;!)h}vs{t4oI58}8BPG77&b+c&P? zaX(I^THjwO@4x|AJzF>Ikh@{{XY|c6R5Ixsr@f5WOB~{ literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.MyTestPlugin1/obj/Nop.Plugin.Misc.MyTestPlugin1.csproj.nuget.dgspec.json b/Nop.Plugin.Misc.MyTestPlugin1/obj/Nop.Plugin.Misc.MyTestPlugin1.csproj.nuget.dgspec.json new file mode 100644 index 0000000..0cb7012 --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/obj/Nop.Plugin.Misc.MyTestPlugin1.csproj.nuget.dgspec.json @@ -0,0 +1,617 @@ +{ + "format": 1, + "restore": { + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Plugins\\Nop.Plugin.Misc.MyTestPlugin1\\Nop.Plugin.Misc.MyTestPlugin1.csproj": {} + }, + "projects": { + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Core\\Nop.Core.csproj", + "projectName": "Nop.Core", + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Core\\Nop.Core.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[13.0.1, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs": { + "target": "Package", + "version": "[1.3.4, )" + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys": { + "target": "Package", + "version": "[1.2.4, )" + }, + "Azure.Identity": { + "target": "Package", + "version": "[1.13.0, )" + }, + "Humanizer": { + "target": "Package", + "version": "[2.14.1, )" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.Extensions.Caching.SqlServer": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.Extensions.Caching.StackExchangeRedis": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Nito.AsyncEx.Coordination": { + "target": "Package", + "version": "[5.1.2, )" + }, + "System.IO.FileSystem.AccessControl": { + "target": "Package", + "version": "[5.0.0, )" + }, + "System.Linq.Async": { + "target": "Package", + "version": "[6.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Data\\Nop.Data.csproj", + "projectName": "Nop.Data", + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Data\\Nop.Data.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Data\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Core\\Nop.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentMigrator": { + "target": "Package", + "version": "[5.2.0, )" + }, + "FluentMigrator.Runner": { + "target": "Package", + "version": "[5.1.0, )" + }, + "Microsoft.Data.SqlClient": { + "target": "Package", + "version": "[5.2.0, )" + }, + "MySqlConnector": { + "target": "Package", + "version": "[2.3.7, )" + }, + "Npgsql": { + "target": "Package", + "version": "[8.0.5, )" + }, + "System.Configuration.ConfigurationManager": { + "target": "Package", + "version": "[8.0.1, )" + }, + "System.Net.NameResolution": { + "target": "Package", + "version": "[4.3.0, )" + }, + "linq2db": { + "target": "Package", + "version": "[5.4.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Services\\Nop.Services.csproj", + "projectName": "Nop.Services", + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Services\\Nop.Services.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Data\\Nop.Data.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Azure.Storage.Blobs": { + "target": "Package", + "version": "[12.22.2, )" + }, + "ClosedXML": { + "target": "Package", + "version": "[0.104.1, )" + }, + "Google.Apis.Auth": { + "target": "Package", + "version": "[1.68.0, )" + }, + "HarfBuzzSharp.NativeAssets.Linux": { + "target": "Package", + "version": "[7.3.0.2, )" + }, + "MailKit": { + "target": "Package", + "version": "[4.8.0, )" + }, + "MaxMind.GeoIP2": { + "target": "Package", + "version": "[5.2.0, )" + }, + "Microsoft.Identity.Client": { + "target": "Package", + "version": "[4.66.1, )" + }, + "QuestPDF": { + "target": "Package", + "version": "[2024.10.1, )" + }, + "SkiaSharp": { + "target": "Package", + "version": "[2.88.8, )" + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies": { + "target": "Package", + "version": "[2.88.8, )" + }, + "Svg.Skia": { + "target": "Package", + "version": "[2.0.0.1, )" + }, + "System.Linq.Dynamic.Core": { + "target": "Package", + "version": "[1.4.6, )" + }, + "System.ServiceModel.Http": { + "target": "Package", + "version": "[8.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Plugins\\Nop.Plugin.Misc.MyTestPlugin1\\Nop.Plugin.Misc.MyTestPlugin1.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Plugins\\Nop.Plugin.Misc.MyTestPlugin1\\Nop.Plugin.Misc.MyTestPlugin1.csproj", + "projectName": "Nop.Plugin.Misc.MyTestPlugin1", + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Plugins\\Nop.Plugin.Misc.MyTestPlugin1\\Nop.Plugin.Misc.MyTestPlugin1.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Plugins\\Nop.Plugin.Misc.MyTestPlugin1\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web\\Nop.Web.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj", + "projectName": "Nop.Web.Framework", + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web.Framework\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Data\\Nop.Data.csproj" + }, + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Services\\Nop.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentValidation.AspNetCore": { + "target": "Package", + "version": "[11.3.0, )" + }, + "LigerShark.WebOptimizer.Core": { + "target": "Package", + "version": "[3.0.426, )" + }, + "WebMarkupMin.AspNetCore8": { + "target": "Package", + "version": "[2.17.0, )" + }, + "WebMarkupMin.NUglify": { + "target": "Package", + "version": "[2.17.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web\\Nop.Web.csproj", + "projectName": "Nop.Web", + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web\\Nop.Web.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Data\\Nop.Data.csproj" + }, + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Libraries\\Nop.Services\\Nop.Services.csproj" + }, + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/obj/Nop.Plugin.Misc.MyTestPlugin1.csproj.nuget.g.props b/Nop.Plugin.Misc.MyTestPlugin1/obj/Nop.Plugin.Misc.MyTestPlugin1.csproj.nuget.g.props new file mode 100644 index 0000000..654d59e --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/obj/Nop.Plugin.Misc.MyTestPlugin1.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Ádám\.nuget\packages\;C:\Program Files\DevExpress 24.1\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.10.1 + + + + + + + + C:\Users\Ádám\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 + + \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/obj/Nop.Plugin.Misc.MyTestPlugin1.csproj.nuget.g.targets b/Nop.Plugin.Misc.MyTestPlugin1/obj/Nop.Plugin.Misc.MyTestPlugin1.csproj.nuget.g.targets new file mode 100644 index 0000000..dfc75fc --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/obj/Nop.Plugin.Misc.MyTestPlugin1.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/obj/project.assets.json b/Nop.Plugin.Misc.MyTestPlugin1/obj/project.assets.json new file mode 100644 index 0000000..61a639f --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/obj/project.assets.json @@ -0,0 +1,10145 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "AdvancedStringBuilder/0.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "related": ".xml" + } + } + }, + "Autofac/8.1.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + } + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Autofac": "8.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "AutoMapper/13.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + } + }, + "Azure.Core/1.44.1": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "System.ClientModel": "1.1.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "6.0.0", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "6.0.10", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.3.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.38.0", + "Azure.Storage.Blobs": "12.16.0", + "Microsoft.AspNetCore.DataProtection": "3.1.32" + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "related": ".xml" + } + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.2.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.42.0", + "Azure.Security.KeyVault.Keys": "4.6.0", + "Microsoft.AspNetCore.DataProtection": "3.1.32" + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "related": ".xml" + } + } + }, + "Azure.Identity/1.13.0": { + "type": "package", + "dependencies": { + "Azure.Core": "1.44.1", + "Microsoft.Identity.Client": "4.65.0", + "Microsoft.Identity.Client.Extensions.Msal": "4.65.0", + "System.Memory": "4.5.5", + "System.Text.Json": "6.0.10", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + } + }, + "Azure.Security.KeyVault.Keys/4.6.0": { + "type": "package", + "dependencies": { + "Azure.Core": "1.37.0", + "System.Memory": "4.5.4", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "related": ".xml" + } + } + }, + "Azure.Storage.Blobs/12.22.2": { + "type": "package", + "dependencies": { + "Azure.Storage.Common": "12.21.1", + "System.Text.Json": "6.0.10" + }, + "compile": { + "lib/net6.0/Azure.Storage.Blobs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Storage.Blobs.dll": { + "related": ".xml" + } + } + }, + "Azure.Storage.Common/12.21.1": { + "type": "package", + "dependencies": { + "Azure.Core": "1.44.1", + "System.IO.Hashing": "6.0.0" + }, + "compile": { + "lib/net6.0/Azure.Storage.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Storage.Common.dll": { + "related": ".xml" + } + } + }, + "BouncyCastle.Cryptography/2.4.0": { + "type": "package", + "compile": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + } + }, + "ClosedXML/0.104.1": { + "type": "package", + "dependencies": { + "ClosedXML.Parser": "[1.2.0, 2.0.0)", + "DocumentFormat.OpenXml": "[3.0.1, 4.0.0)", + "ExcelNumberFormat": "1.1.0", + "RBush": "3.2.0", + "SixLabors.Fonts": "1.0.0", + "System.IO.Packaging": "8.0.0" + }, + "compile": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".pdb;.xml" + } + } + }, + "ClosedXML.Parser/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/ClosedXML.Parser.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.Parser.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml/3.0.1": { + "type": "package", + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.0.1" + }, + "compile": { + "lib/net8.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.0.1": { + "type": "package", + "dependencies": { + "System.IO.Packaging": "8.0.0" + }, + "compile": { + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + } + }, + "ExcelNumberFormat/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + } + }, + "ExCSS/4.2.3": { + "type": "package", + "compile": { + "lib/net7.0/ExCSS.dll": {} + }, + "runtime": { + "lib/net7.0/ExCSS.dll": {} + } + }, + "FirebirdSql.Data.FirebirdClient/10.0.0": { + "type": "package", + "compile": { + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll": {} + }, + "runtime": { + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll": {} + } + }, + "FluentMigrator/5.2.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.2.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Abstractions/5.2.0": { + "type": "package", + "dependencies": { + "System.ComponentModel.Annotations": "5.0.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll": { + "locale": "de-DE" + } + } + }, + "FluentMigrator.Extensions.MySql/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Oracle/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Postgres/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Snowflake/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.SqlServer/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Runner.Core": "5.1.0", + "FluentMigrator.Runner.Db2": "5.1.0", + "FluentMigrator.Runner.Firebird": "5.1.0", + "FluentMigrator.Runner.Hana": "5.1.0", + "FluentMigrator.Runner.MySql": "5.1.0", + "FluentMigrator.Runner.Oracle": "5.1.0", + "FluentMigrator.Runner.Postgres": "5.1.0", + "FluentMigrator.Runner.Redshift": "5.1.0", + "FluentMigrator.Runner.SQLite": "5.1.0", + "FluentMigrator.Runner.Snowflake": "5.1.0", + "FluentMigrator.Runner.SqlServer": "5.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Core/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Abstractions": "5.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Db2/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Firebird/5.1.0": { + "type": "package", + "dependencies": { + "FirebirdSql.Data.FirebirdClient": "10.0.0", + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Hana/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.MySql/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.MySql": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Oracle/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.Oracle": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Postgres/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.Postgres": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Redshift/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Snowflake/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Extensions.Snowflake": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.SQLite/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.SqlServer/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.SqlServer": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0", + "Microsoft.Data.SqlClient": "5.1.4" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentValidation/11.5.1": { + "type": "package", + "compile": { + "lib/net7.0/FluentValidation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/FluentValidation.dll": { + "related": ".xml" + } + } + }, + "FluentValidation.AspNetCore/11.3.0": { + "type": "package", + "dependencies": { + "FluentValidation": "11.5.1", + "FluentValidation.DependencyInjectionExtensions": "11.5.1" + }, + "compile": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.5.1": { + "type": "package", + "dependencies": { + "FluentValidation": "11.5.1", + "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + } + }, + "Google.Apis/1.68.0": { + "type": "package", + "dependencies": { + "Google.Apis.Core": "1.68.0" + }, + "compile": { + "lib/net6.0/Google.Apis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.dll": { + "related": ".pdb;.xml" + } + } + }, + "Google.Apis.Auth/1.68.0": { + "type": "package", + "dependencies": { + "Google.Apis": "1.68.0", + "Google.Apis.Core": "1.68.0", + "System.Management": "7.0.2" + }, + "compile": { + "lib/net6.0/Google.Apis.Auth.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.Auth.dll": { + "related": ".pdb;.xml" + } + } + }, + "Google.Apis.Core/1.68.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net6.0/Google.Apis.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp/7.3.0.2": { + "type": "package", + "dependencies": { + "HarfBuzzSharp.NativeAssets.Win32": "7.3.0.2", + "HarfBuzzSharp.NativeAssets.macOS": "7.3.0.2" + }, + "compile": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "7.3.0.2" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libHarfBuzzSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Humanizer/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core.af": "2.14.1", + "Humanizer.Core.ar": "2.14.1", + "Humanizer.Core.az": "2.14.1", + "Humanizer.Core.bg": "2.14.1", + "Humanizer.Core.bn-BD": "2.14.1", + "Humanizer.Core.cs": "2.14.1", + "Humanizer.Core.da": "2.14.1", + "Humanizer.Core.de": "2.14.1", + "Humanizer.Core.el": "2.14.1", + "Humanizer.Core.es": "2.14.1", + "Humanizer.Core.fa": "2.14.1", + "Humanizer.Core.fi-FI": "2.14.1", + "Humanizer.Core.fr": "2.14.1", + "Humanizer.Core.fr-BE": "2.14.1", + "Humanizer.Core.he": "2.14.1", + "Humanizer.Core.hr": "2.14.1", + "Humanizer.Core.hu": "2.14.1", + "Humanizer.Core.hy": "2.14.1", + "Humanizer.Core.id": "2.14.1", + "Humanizer.Core.is": "2.14.1", + "Humanizer.Core.it": "2.14.1", + "Humanizer.Core.ja": "2.14.1", + "Humanizer.Core.ko-KR": "2.14.1", + "Humanizer.Core.ku": "2.14.1", + "Humanizer.Core.lv": "2.14.1", + "Humanizer.Core.ms-MY": "2.14.1", + "Humanizer.Core.mt": "2.14.1", + "Humanizer.Core.nb": "2.14.1", + "Humanizer.Core.nb-NO": "2.14.1", + "Humanizer.Core.nl": "2.14.1", + "Humanizer.Core.pl": "2.14.1", + "Humanizer.Core.pt": "2.14.1", + "Humanizer.Core.ro": "2.14.1", + "Humanizer.Core.ru": "2.14.1", + "Humanizer.Core.sk": "2.14.1", + "Humanizer.Core.sl": "2.14.1", + "Humanizer.Core.sr": "2.14.1", + "Humanizer.Core.sr-Latn": "2.14.1", + "Humanizer.Core.sv": "2.14.1", + "Humanizer.Core.th-TH": "2.14.1", + "Humanizer.Core.tr": "2.14.1", + "Humanizer.Core.uk": "2.14.1", + "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", + "Humanizer.Core.uz-Latn-UZ": "2.14.1", + "Humanizer.Core.vi": "2.14.1", + "Humanizer.Core.zh-CN": "2.14.1", + "Humanizer.Core.zh-Hans": "2.14.1", + "Humanizer.Core.zh-Hant": "2.14.1" + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Humanizer.Core.af/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/af/Humanizer.resources.dll": { + "locale": "af" + } + } + }, + "Humanizer.Core.ar/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ar/Humanizer.resources.dll": { + "locale": "ar" + } + } + }, + "Humanizer.Core.az/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/az/Humanizer.resources.dll": { + "locale": "az" + } + } + }, + "Humanizer.Core.bg/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bg/Humanizer.resources.dll": { + "locale": "bg" + } + } + }, + "Humanizer.Core.bn-BD/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bn-BD/Humanizer.resources.dll": { + "locale": "bn-BD" + } + } + }, + "Humanizer.Core.cs/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/cs/Humanizer.resources.dll": { + "locale": "cs" + } + } + }, + "Humanizer.Core.da/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/da/Humanizer.resources.dll": { + "locale": "da" + } + } + }, + "Humanizer.Core.de/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/de/Humanizer.resources.dll": { + "locale": "de" + } + } + }, + "Humanizer.Core.el/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/el/Humanizer.resources.dll": { + "locale": "el" + } + } + }, + "Humanizer.Core.es/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/es/Humanizer.resources.dll": { + "locale": "es" + } + } + }, + "Humanizer.Core.fa/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fa/Humanizer.resources.dll": { + "locale": "fa" + } + } + }, + "Humanizer.Core.fi-FI/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fi-FI/Humanizer.resources.dll": { + "locale": "fi-FI" + } + } + }, + "Humanizer.Core.fr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr/Humanizer.resources.dll": { + "locale": "fr" + } + } + }, + "Humanizer.Core.fr-BE/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr-BE/Humanizer.resources.dll": { + "locale": "fr-BE" + } + } + }, + "Humanizer.Core.he/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/he/Humanizer.resources.dll": { + "locale": "he" + } + } + }, + "Humanizer.Core.hr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hr/Humanizer.resources.dll": { + "locale": "hr" + } + } + }, + "Humanizer.Core.hu/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hu/Humanizer.resources.dll": { + "locale": "hu" + } + } + }, + "Humanizer.Core.hy/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hy/Humanizer.resources.dll": { + "locale": "hy" + } + } + }, + "Humanizer.Core.id/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/id/Humanizer.resources.dll": { + "locale": "id" + } + } + }, + "Humanizer.Core.is/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/is/Humanizer.resources.dll": { + "locale": "is" + } + } + }, + "Humanizer.Core.it/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/it/Humanizer.resources.dll": { + "locale": "it" + } + } + }, + "Humanizer.Core.ja/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ja/Humanizer.resources.dll": { + "locale": "ja" + } + } + }, + "Humanizer.Core.ko-KR/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { + "locale": "ko-KR" + } + } + }, + "Humanizer.Core.ku/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ku/Humanizer.resources.dll": { + "locale": "ku" + } + } + }, + "Humanizer.Core.lv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/lv/Humanizer.resources.dll": { + "locale": "lv" + } + } + }, + "Humanizer.Core.ms-MY/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { + "locale": "ms-MY" + } + } + }, + "Humanizer.Core.mt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/mt/Humanizer.resources.dll": { + "locale": "mt" + } + } + }, + "Humanizer.Core.nb/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb/Humanizer.resources.dll": { + "locale": "nb" + } + } + }, + "Humanizer.Core.nb-NO/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb-NO/Humanizer.resources.dll": { + "locale": "nb-NO" + } + } + }, + "Humanizer.Core.nl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nl/Humanizer.resources.dll": { + "locale": "nl" + } + } + }, + "Humanizer.Core.pl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pl/Humanizer.resources.dll": { + "locale": "pl" + } + } + }, + "Humanizer.Core.pt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pt/Humanizer.resources.dll": { + "locale": "pt" + } + } + }, + "Humanizer.Core.ro/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ro/Humanizer.resources.dll": { + "locale": "ro" + } + } + }, + "Humanizer.Core.ru/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ru/Humanizer.resources.dll": { + "locale": "ru" + } + } + }, + "Humanizer.Core.sk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sk/Humanizer.resources.dll": { + "locale": "sk" + } + } + }, + "Humanizer.Core.sl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sl/Humanizer.resources.dll": { + "locale": "sl" + } + } + }, + "Humanizer.Core.sr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr/Humanizer.resources.dll": { + "locale": "sr" + } + } + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr-Latn/Humanizer.resources.dll": { + "locale": "sr-Latn" + } + } + }, + "Humanizer.Core.sv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sv/Humanizer.resources.dll": { + "locale": "sv" + } + } + }, + "Humanizer.Core.th-TH/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { + "locale": "th-TH" + } + } + }, + "Humanizer.Core.tr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/tr/Humanizer.resources.dll": { + "locale": "tr" + } + } + }, + "Humanizer.Core.uk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uk/Humanizer.resources.dll": { + "locale": "uk" + } + } + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { + "locale": "uz-Cyrl-UZ" + } + } + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { + "locale": "uz-Latn-UZ" + } + } + }, + "Humanizer.Core.vi/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/vi/Humanizer.resources.dll": { + "locale": "vi" + } + } + }, + "Humanizer.Core.zh-CN/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-CN/Humanizer.resources.dll": { + "locale": "zh-CN" + } + } + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hans/Humanizer.resources.dll": { + "locale": "zh-Hans" + } + } + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hant/Humanizer.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "LigerShark.WebOptimizer.Core/3.0.426": { + "type": "package", + "dependencies": { + "NUglify": "1.21.9" + }, + "compile": { + "lib/net8.0/WebOptimizer.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/WebOptimizer.Core.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "build/_._": {} + } + }, + "linq2db/5.4.1": { + "type": "package", + "compile": { + "lib/net6.0/linq2db.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/linq2db.dll": { + "related": ".xml" + } + } + }, + "MailKit/4.8.0": { + "type": "package", + "dependencies": { + "MimeKit": "4.8.0", + "System.Formats.Asn1": "8.0.1" + }, + "compile": { + "lib/net8.0/MailKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/MailKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + } + }, + "MaxMind.Db/4.1.0": { + "type": "package", + "compile": { + "lib/net8.0/MaxMind.Db.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MaxMind.Db.dll": { + "related": ".xml" + } + } + }, + "MaxMind.GeoIP2/5.2.0": { + "type": "package", + "dependencies": { + "MaxMind.Db": "4.1.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/MaxMind.GeoIP2.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MaxMind.GeoIP2.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.32": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.DataProtection/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "3.1.32", + "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.32", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.32", + "Microsoft.Extensions.Logging.Abstractions": "3.1.32", + "Microsoft.Extensions.Options": "3.1.32", + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Cryptography.Xml": "4.7.1" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.32": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.JsonPatch/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "8.0.10", + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.0", + "Microsoft.CodeAnalysis.Razor": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "6.0.0", + "Microsoft.CodeAnalysis.Razor": "6.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.0.0]" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Razor/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.0.0", + "Microsoft.CodeAnalysis.Common": "4.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/5.2.0": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.3", + "Microsoft.Data.SqlClient.SNI.runtime": "5.2.0", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Runtime.Caching": "8.0.0" + }, + "compile": { + "ref/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hant" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.SqlServer/8.0.10": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.2", + "Microsoft.Data.SqlClient": "4.0.5", + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "StackExchange.Redis": "2.7.27" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.32" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.32", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32", + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.32", + "Microsoft.Extensions.Logging.Abstractions": "3.1.32" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.ObjectPool/6.0.16": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Identity.Client/4.66.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.65.0": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.65.0", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.35.0", + "System.IdentityModel.Tokens.Jwt": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MimeKit/4.8.0": { + "type": "package", + "dependencies": { + "BouncyCastle.Cryptography": "2.4.0", + "System.Formats.Asn1": "8.0.1", + "System.Security.Cryptography.Pkcs": "8.0.0" + }, + "compile": { + "lib/net8.0/MimeKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/MimeKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + } + }, + "MySqlConnector/2.3.7": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.1" + }, + "compile": { + "lib/net8.0/MySqlConnector.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MySqlConnector.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + } + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "type": "package", + "dependencies": { + "Nito.AsyncEx.Tasks": "5.1.2", + "Nito.Collections.Deque": "1.1.1" + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "related": ".xml" + } + } + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "type": "package", + "dependencies": { + "Nito.Disposables": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "related": ".xml" + } + } + }, + "Nito.Collections.Deque/1.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "related": ".xml" + } + } + }, + "Nito.Disposables/2.2.1": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.7.1" + }, + "compile": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "related": ".xml" + } + } + }, + "Npgsql/8.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "NUglify/1.21.9": { + "type": "package", + "compile": { + "lib/net5.0/NUglify.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/NUglify.dll": { + "related": ".xml" + } + } + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "5.0.1" + }, + "compile": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + } + }, + "QuestPDF/2024.10.1": { + "type": "package", + "compile": { + "lib/net8.0/QuestPDF.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/QuestPDF.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/QuestPDF.targets": {} + }, + "runtimeTargets": { + "runtimes/linux-arm64/native/libQuestPdfSkia.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libQuestPdfSkia.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libQuestPdfSkia.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx-arm64/native/libQuestPdfSkia.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libQuestPdfSkia.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-x64/native/QuestPdfSkia.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/QuestPdfSkia.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "RBush/3.2.0": { + "type": "package", + "compile": { + "lib/net6.0/RBush.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/RBush.dll": { + "related": ".xml" + } + } + }, + "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/_._": {} + } + }, + "ShimSkiaSharp/2.0.0.1": { + "type": "package", + "compile": { + "lib/net8.0/ShimSkiaSharp.dll": {} + }, + "runtime": { + "lib/net8.0/ShimSkiaSharp.dll": {} + } + }, + "SixLabors.Fonts/1.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + } + }, + "SkiaSharp/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.8", + "SkiaSharp.NativeAssets.macOS": "2.88.8" + }, + "compile": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.HarfBuzz/2.88.8": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "7.3.0.2", + "SkiaSharp": "2.88.8" + }, + "compile": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.8" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "StackExchange.Redis/2.7.27": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Pipelines.Sockets.Unofficial": "2.2.8" + }, + "compile": { + "lib/net6.0/StackExchange.Redis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/StackExchange.Redis.dll": { + "related": ".xml" + } + } + }, + "Svg.Custom/2.0.0.1": { + "type": "package", + "dependencies": { + "ExCSS": "4.2.3" + }, + "compile": { + "lib/net8.0/Svg.Custom.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Custom.dll": {} + } + }, + "Svg.Model/2.0.0.1": { + "type": "package", + "dependencies": { + "ShimSkiaSharp": "2.0.0.1", + "Svg.Custom": "2.0.0.1" + }, + "compile": { + "lib/net8.0/Svg.Model.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Model.dll": {} + } + }, + "Svg.Skia/2.0.0.1": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.8", + "SkiaSharp.HarfBuzz": "2.88.8", + "Svg.Custom": "2.0.0.1", + "Svg.Model": "2.0.0.1" + }, + "compile": { + "lib/net8.0/Svg.Skia.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Skia.dll": {} + } + }, + "System.ClientModel/1.1.0": { + "type": "package", + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "6.0.9" + }, + "compile": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + } + }, + "System.CodeDom/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Collections/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.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/8.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "8.0.1", + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.EventLog/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/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.Formats.Asn1/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "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.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "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.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Hashing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Packaging/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.IO.Pipelines/5.0.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + } + }, + "System.Linq.Async/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Linq.Async.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Linq.Async.dll": { + "related": ".xml" + } + } + }, + "System.Linq.Dynamic.Core/1.4.6": { + "type": "package", + "compile": { + "lib/net8.0/System.Linq.Dynamic.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/System.Linq.Dynamic.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "System.Management/7.0.2": { + "type": "package", + "dependencies": { + "System.CodeDom": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/6.0.0": { + "type": "package", + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.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.Metadata/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "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.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Caching/8.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "8.0.0" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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/System.Runtime.Handles.dll": { + "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.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Security.Cryptography.Xml/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.1" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Http/8.0.0": { + "type": "package", + "dependencies": { + "System.ServiceModel.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/net8.0/cs/System.ServiceModel.Http.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/System.ServiceModel.Http.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/System.ServiceModel.Http.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/System.ServiceModel.Http.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/System.ServiceModel.Http.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/System.ServiceModel.Http.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/System.ServiceModel.Http.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/System.ServiceModel.Http.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/System.ServiceModel.Http.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/System.ServiceModel.Http.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/System.ServiceModel.Http.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/System.ServiceModel.Http.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/System.ServiceModel.Http.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.ServiceModel.Primitives/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ObjectPool": "6.0.16", + "System.Security.Cryptography.Xml": "6.0.1" + }, + "compile": { + "ref/net8.0/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/net8.0/System.ServiceModel.Primitives.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/net8.0/cs/System.ServiceModel.Primitives.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/System.ServiceModel.Primitives.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/System.ServiceModel.Primitives.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/System.ServiceModel.Primitives.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/System.ServiceModel.Primitives.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/System.ServiceModel.Primitives.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/System.ServiceModel.Primitives.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/System.ServiceModel.Primitives.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/System.ServiceModel.Primitives.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/System.ServiceModel.Primitives.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/System.ServiceModel.Primitives.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/System.ServiceModel.Primitives.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/System.ServiceModel.Primitives.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "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/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.10": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/System.Text.Json.targets": {} + } + }, + "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/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "WebMarkupMin.AspNet.Common/2.17.0": { + "type": "package", + "dependencies": { + "WebMarkupMin.Core": "2.17.0" + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll": { + "related": ".xml" + } + } + }, + "WebMarkupMin.AspNetCore8/2.17.0": { + "type": "package", + "dependencies": { + "WebMarkupMin.AspNet.Common": "2.17.0" + }, + "compile": { + "lib/net8.0/WebMarkupMin.AspNetCore8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/WebMarkupMin.AspNetCore8.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "WebMarkupMin.Core/2.17.0": { + "type": "package", + "dependencies": { + "AdvancedStringBuilder": "0.1.1" + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "related": ".xml" + } + } + }, + "WebMarkupMin.NUglify/2.17.0": { + "type": "package", + "dependencies": { + "NUglify": "1.21.9", + "WebMarkupMin.Core": "2.17.0" + }, + "compile": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "related": ".xml" + } + } + }, + "Nop.Core/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "AutoMapper": "13.0.1", + "Autofac.Extensions.DependencyInjection": "10.0.0", + "Azure.Extensions.AspNetCore.DataProtection.Blobs": "1.3.4", + "Azure.Extensions.AspNetCore.DataProtection.Keys": "1.2.4", + "Azure.Identity": "1.13.0", + "Humanizer": "2.14.1", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "8.0.10", + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "8.0.10", + "Microsoft.Extensions.Caching.SqlServer": "8.0.10", + "Microsoft.Extensions.Caching.StackExchangeRedis": "8.0.10", + "Nito.AsyncEx.Coordination": "5.1.2", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Linq.Async": "6.0.1" + }, + "compile": { + "bin/placeholder/Nop.Core.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Core.dll": {} + } + }, + "Nop.Data/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "FluentMigrator": "5.2.0", + "FluentMigrator.Runner": "5.1.0", + "Microsoft.Data.SqlClient": "5.2.0", + "MySqlConnector": "2.3.7", + "Nop.Core": "4.70.0", + "Npgsql": "8.0.5", + "System.Configuration.ConfigurationManager": "8.0.1", + "System.Net.NameResolution": "4.3.0", + "linq2db": "5.4.1" + }, + "compile": { + "bin/placeholder/Nop.Data.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Data.dll": {} + } + }, + "Nop.Services/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Azure.Storage.Blobs": "12.22.2", + "ClosedXML": "0.104.1", + "Google.Apis.Auth": "1.68.0", + "HarfBuzzSharp.NativeAssets.Linux": "7.3.0.2", + "MailKit": "4.8.0", + "MaxMind.GeoIP2": "5.2.0", + "Microsoft.Identity.Client": "4.66.1", + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "QuestPDF": "2024.10.1", + "SkiaSharp": "2.88.8", + "SkiaSharp.NativeAssets.Linux.NoDependencies": "2.88.8", + "Svg.Skia": "2.0.0.1", + "System.Linq.Dynamic.Core": "1.4.6", + "System.ServiceModel.Http": "8.0.0" + }, + "compile": { + "bin/placeholder/Nop.Services.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Services.dll": {} + } + }, + "Nop.Web/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "Nop.Services": "4.70.0", + "Nop.Web.Framework": "4.70.0" + }, + "compile": { + "bin/placeholder/Nop.Web.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Web.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Nop.Web.Framework/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "FluentValidation.AspNetCore": "11.3.0", + "LigerShark.WebOptimizer.Core": "3.0.426", + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "Nop.Services": "4.70.0", + "WebMarkupMin.AspNetCore8": "2.17.0", + "WebMarkupMin.NUglify": "2.17.0" + }, + "compile": { + "bin/placeholder/Nop.Web.Framework.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Web.Framework.dll": {} + } + } + } + }, + "libraries": { + "AdvancedStringBuilder/0.1.1": { + "sha512": "32IrlspOA59ewotQ4tlKP27QhKxMKGB7oncqlwVHn/hAz+j/r3HvLr6/W9ni9Mnyktlcg6kt7QZS8rEgur1+4Q==", + "type": "package", + "path": "advancedstringbuilder/0.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "advancedstringbuilder.0.1.1.nupkg.sha512", + "advancedstringbuilder.nuspec", + "icon.png", + "lib/net40-client/AdvancedStringBuilder.dll", + "lib/net40-client/AdvancedStringBuilder.xml", + "lib/net45/AdvancedStringBuilder.dll", + "lib/net45/AdvancedStringBuilder.xml", + "lib/netstandard1.0/AdvancedStringBuilder.dll", + "lib/netstandard1.0/AdvancedStringBuilder.xml", + "lib/netstandard2.0/AdvancedStringBuilder.dll", + "lib/netstandard2.0/AdvancedStringBuilder.xml", + "readme.txt" + ] + }, + "Autofac/8.1.0": { + "sha512": "O2QT+0DSTBR2Ojpacmcj3L0KrnnXTFrwLl/OW1lBUDiHhb89msHEHNhTA8AlK3jdFiAfMbAYyQaJVvRe6oSBcQ==", + "type": "package", + "path": "autofac/8.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.8.1.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net6.0/Autofac.dll", + "lib/net6.0/Autofac.xml", + "lib/net7.0/Autofac.dll", + "lib/net7.0/Autofac.xml", + "lib/net8.0/Autofac.dll", + "lib/net8.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "sha512": "ZjR/onUlP7BzQ7VBBigQepWLAyAzi3VRGX3pP6sBqkPRiT61fsTZqbTpRUKxo30TMgbs1o3y6bpLbETix4SJog==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net6.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net7.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net7.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net8.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "AutoMapper/13.0.1": { + "sha512": "/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "type": "package", + "path": "automapper/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.13.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/net6.0/AutoMapper.dll", + "lib/net6.0/AutoMapper.xml" + ] + }, + "Azure.Core/1.44.1": { + "sha512": "YyznXLQZCregzHvioip07/BkzjuWNXogJEVz9T5W6TwjNr17ax41YGzYMptlo2G10oLCuVPoyva62y0SIRDixg==", + "type": "package", + "path": "azure.core/1.44.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.core.1.44.1.nupkg.sha512", + "azure.core.nuspec", + "azureicon.png", + "lib/net461/Azure.Core.dll", + "lib/net461/Azure.Core.xml", + "lib/net472/Azure.Core.dll", + "lib/net472/Azure.Core.xml", + "lib/net6.0/Azure.Core.dll", + "lib/net6.0/Azure.Core.xml", + "lib/netstandard2.0/Azure.Core.dll", + "lib/netstandard2.0/Azure.Core.xml" + ] + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.3.4": { + "sha512": "zS+x0MpUMSbvZD598lwAoax+ohIeSAvGlXpT71iP7FFmMZ+Tjz/8hx+jZH/RbV2cJYTYbux8XFDll7LMPuz46g==", + "type": "package", + "path": "azure.extensions.aspnetcore.dataprotection.blobs/1.3.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.extensions.aspnetcore.dataprotection.blobs.1.3.4.nupkg.sha512", + "azure.extensions.aspnetcore.dataprotection.blobs.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.xml" + ] + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.2.4": { + "sha512": "sl0E1iOrVWxxWUTFzzo6hN2+ZjYK8B84t/NEbeVl8MY3xMO3lR8JBSeWGp3u5OL6Z8I2lTAescgOz/CkIni5Lg==", + "type": "package", + "path": "azure.extensions.aspnetcore.dataprotection.keys/1.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.extensions.aspnetcore.dataprotection.keys.1.2.4.nupkg.sha512", + "azure.extensions.aspnetcore.dataprotection.keys.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.xml" + ] + }, + "Azure.Identity/1.13.0": { + "sha512": "UMYCdapkVRojCtXqUmrWMAEV/i1N5haRcQ481oBmXn+kpq1zLJXiL6ESghbxbE0QV5zvewUJIy/IZcvijcpLfg==", + "type": "package", + "path": "azure.identity/1.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.identity.1.13.0.nupkg.sha512", + "azure.identity.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Identity.dll", + "lib/netstandard2.0/Azure.Identity.xml" + ] + }, + "Azure.Security.KeyVault.Keys/4.6.0": { + "sha512": "1KbCIkXmLaj+kDDNm1Va5rNlzgcJ/fVtnsoVmzZPKa38jz6DXhPyojdvGaOX8AdupGJceg0X1vrsGvZKN79Qzw==", + "type": "package", + "path": "azure.security.keyvault.keys/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.security.keyvault.keys.4.6.0.nupkg.sha512", + "azure.security.keyvault.keys.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll", + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.xml" + ] + }, + "Azure.Storage.Blobs/12.22.2": { + "sha512": "/BK63qx31dhXjnqOXB90DP8mJM+pHbti45+v/D3SiEgP2A+ekvJlGWGLVGQznriT5UAOerM+3vAAEJNKolVSIQ==", + "type": "package", + "path": "azure.storage.blobs/12.22.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.storage.blobs.12.22.2.nupkg.sha512", + "azure.storage.blobs.nuspec", + "azureicon.png", + "lib/net6.0/Azure.Storage.Blobs.dll", + "lib/net6.0/Azure.Storage.Blobs.xml", + "lib/netstandard2.0/Azure.Storage.Blobs.dll", + "lib/netstandard2.0/Azure.Storage.Blobs.xml", + "lib/netstandard2.1/Azure.Storage.Blobs.dll", + "lib/netstandard2.1/Azure.Storage.Blobs.xml" + ] + }, + "Azure.Storage.Common/12.21.1": { + "sha512": "NgDJw/upcro33AgGf91sPIG+BU2pFTgGDBzWEp8HctGwzmbjG80eYTl4CJMIwgxVOQWnEXnQZXLY7w3k+BQ9ig==", + "type": "package", + "path": "azure.storage.common/12.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.storage.common.12.21.1.nupkg.sha512", + "azure.storage.common.nuspec", + "azureicon.png", + "lib/net6.0/Azure.Storage.Common.dll", + "lib/net6.0/Azure.Storage.Common.xml", + "lib/netstandard2.0/Azure.Storage.Common.dll", + "lib/netstandard2.0/Azure.Storage.Common.xml" + ] + }, + "BouncyCastle.Cryptography/2.4.0": { + "sha512": "SwXsAV3sMvAU/Nn31pbjhWurYSjJ+/giI/0n6tCrYoupEK34iIHCuk3STAd9fx8yudM85KkLSVdn951vTng/vQ==", + "type": "package", + "path": "bouncycastle.cryptography/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "bouncycastle.cryptography.2.4.0.nupkg.sha512", + "bouncycastle.cryptography.nuspec", + "lib/net461/BouncyCastle.Cryptography.dll", + "lib/net461/BouncyCastle.Cryptography.xml", + "lib/net6.0/BouncyCastle.Cryptography.dll", + "lib/net6.0/BouncyCastle.Cryptography.xml", + "lib/netstandard2.0/BouncyCastle.Cryptography.dll", + "lib/netstandard2.0/BouncyCastle.Cryptography.xml", + "packageIcon.png" + ] + }, + "ClosedXML/0.104.1": { + "sha512": "RVm2fUNWJlBJlg07shrfeWzrHPG5ypI/vARqdUOUbUdaog8yBw8l4IbCHf2MXt0AXtzaZqGNqhFaCAHigCBdfw==", + "type": "package", + "path": "closedxml/0.104.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "closedxml.0.104.1.nupkg.sha512", + "closedxml.nuspec", + "lib/netstandard2.0/ClosedXML.dll", + "lib/netstandard2.0/ClosedXML.pdb", + "lib/netstandard2.0/ClosedXML.xml", + "lib/netstandard2.1/ClosedXML.dll", + "lib/netstandard2.1/ClosedXML.pdb", + "lib/netstandard2.1/ClosedXML.xml", + "nuget-logo.png" + ] + }, + "ClosedXML.Parser/1.2.0": { + "sha512": "w+/0tsxABS3lkSH8EUlA7IGme+mq5T/Puf3DbOiTckmSuUpAUO2LK29oXYByCcWkBv6wcRHxgWlQb1lxkwI0Tw==", + "type": "package", + "path": "closedxml.parser/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "closedxml.parser.1.2.0.nupkg.sha512", + "closedxml.parser.nuspec", + "lib/netstandard2.0/ClosedXML.Parser.dll", + "lib/netstandard2.0/ClosedXML.Parser.xml", + "lib/netstandard2.1/ClosedXML.Parser.dll", + "lib/netstandard2.1/ClosedXML.Parser.xml" + ] + }, + "DocumentFormat.OpenXml/3.0.1": { + "sha512": "DCK1cwFUJ1FGGyYyo++HWl9H1RkqMWIu+FGOLRy6E4L4y0/HIhlJ7N/n1HKboFfOwKn1cMBRxt1RCuDbIEy5YQ==", + "type": "package", + "path": "documentformat.openxml/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.3.0.1.nupkg.sha512", + "documentformat.openxml.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.dll", + "lib/net35/DocumentFormat.OpenXml.xml", + "lib/net40/DocumentFormat.OpenXml.dll", + "lib/net40/DocumentFormat.OpenXml.xml", + "lib/net46/DocumentFormat.OpenXml.dll", + "lib/net46/DocumentFormat.OpenXml.xml", + "lib/net8.0/DocumentFormat.OpenXml.dll", + "lib/net8.0/DocumentFormat.OpenXml.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.xml" + ] + }, + "DocumentFormat.OpenXml.Framework/3.0.1": { + "sha512": "ifyI7OW7sggz7LQMIAD2aUsY/zVUON9QaHrpZ4MK33iVMeHlTG4uhUE2aLWb31nry+LCs2ALDAwf8OfUJGjgBg==", + "type": "package", + "path": "documentformat.openxml.framework/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.framework.3.0.1.nupkg.sha512", + "documentformat.openxml.framework.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.Framework.dll", + "lib/net35/DocumentFormat.OpenXml.Framework.xml", + "lib/net40/DocumentFormat.OpenXml.Framework.dll", + "lib/net40/DocumentFormat.OpenXml.Framework.xml", + "lib/net46/DocumentFormat.OpenXml.Framework.dll", + "lib/net46/DocumentFormat.OpenXml.Framework.xml", + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net6.0/DocumentFormat.OpenXml.Framework.xml", + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net8.0/DocumentFormat.OpenXml.Framework.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml" + ] + }, + "ExcelNumberFormat/1.1.0": { + "sha512": "R3BVHPs9O+RkExbZYTGT0+9HLbi8ZrNij1Yziyw6znd3J7P3uoIR07uwTLGOogtz1p6+0sna66eBoXu7tBiVQA==", + "type": "package", + "path": "excelnumberformat/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excelnumberformat.1.1.0.nupkg.sha512", + "excelnumberformat.nuspec", + "icon.png", + "lib/net20/ExcelNumberFormat.dll", + "lib/net20/ExcelNumberFormat.xml", + "lib/netstandard1.0/ExcelNumberFormat.dll", + "lib/netstandard1.0/ExcelNumberFormat.xml", + "lib/netstandard2.0/ExcelNumberFormat.dll", + "lib/netstandard2.0/ExcelNumberFormat.xml" + ] + }, + "ExCSS/4.2.3": { + "sha512": "SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "type": "package", + "path": "excss/4.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excss.4.2.3.nupkg.sha512", + "excss.nuspec", + "lib/net48/ExCSS.dll", + "lib/net6.0/ExCSS.dll", + "lib/net7.0/ExCSS.dll", + "lib/netcoreapp3.1/ExCSS.dll", + "lib/netstandard2.0/ExCSS.dll", + "lib/netstandard2.1/ExCSS.dll", + "readme.md" + ] + }, + "FirebirdSql.Data.FirebirdClient/10.0.0": { + "sha512": "x+JkSd6TeL9zUXDbi5C0NPeZ1ejo5sw3G9nhoxvVGXhaU399agYgO5RXtYRmcS4GkeA57Q9sThe5pFL2knSdXQ==", + "type": "package", + "path": "firebirdsql.data.firebirdclient/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "firebird-logo.png", + "firebirdsql.data.firebirdclient.10.0.0.nupkg.sha512", + "firebirdsql.data.firebirdclient.nuspec", + "lib/net48/FirebirdSql.Data.FirebirdClient.dll", + "lib/net5.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/net6.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/netstandard2.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/netstandard2.1/FirebirdSql.Data.FirebirdClient.dll", + "license.txt" + ] + }, + "FluentMigrator/5.2.0": { + "sha512": "h3w95meLtHsdWQY1BVVh5eaGcI82zADR2T1WSCcc/NTc+P+rsGzmqG5RF9Gz+Fy1BNEQXL47Xppk/YorwJgEWg==", + "type": "package", + "path": "fluentmigrator/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.5.2.0.nupkg.sha512", + "fluentmigrator.nuspec", + "lib/net48/FluentMigrator.dll", + "lib/net48/FluentMigrator.pdb", + "lib/net48/FluentMigrator.xml", + "lib/netstandard2.0/FluentMigrator.dll", + "lib/netstandard2.0/FluentMigrator.pdb", + "lib/netstandard2.0/FluentMigrator.xml" + ] + }, + "FluentMigrator.Abstractions/5.2.0": { + "sha512": "MvzpENiB2o8QqIXYgKlbtrEPyaHc2m2ukRmaNWszL9ZJH3OBY/kYMotn/dxWC+zwlUo82ZPvoCJtoFi2nptz2w==", + "type": "package", + "path": "fluentmigrator.abstractions/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.abstractions.5.2.0.nupkg.sha512", + "fluentmigrator.abstractions.nuspec", + "lib/net48/FluentMigrator.Abstractions.dll", + "lib/net48/FluentMigrator.Abstractions.pdb", + "lib/net48/FluentMigrator.Abstractions.xml", + "lib/net48/de-DE/FluentMigrator.Abstractions.resources.dll", + "lib/netstandard2.0/FluentMigrator.Abstractions.dll", + "lib/netstandard2.0/FluentMigrator.Abstractions.pdb", + "lib/netstandard2.0/FluentMigrator.Abstractions.xml", + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll" + ] + }, + "FluentMigrator.Extensions.MySql/5.1.0": { + "sha512": "8dx8AS/XFs6HH7G3mw2FcDM43Y7+n96Z0OS9uQjmyum5Cv2Qp2dD2Gf747MCtbWbC/vdhJGomld+BnccBkNA3w==", + "type": "package", + "path": "fluentmigrator.extensions.mysql/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.mysql.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.mysql.nuspec", + "lib/net48/FluentMigrator.Extensions.MySql.dll", + "lib/net48/FluentMigrator.Extensions.MySql.pdb", + "lib/net48/FluentMigrator.Extensions.MySql.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.xml" + ] + }, + "FluentMigrator.Extensions.Oracle/5.1.0": { + "sha512": "Cpnav//COP8wl/NVa7EYyiQAsF0lAba3NYizAWXq+vIApxyu5L9Cp6GpyCTgIIOR4QLTx3FXV4cCg7/QKXkHHA==", + "type": "package", + "path": "fluentmigrator.extensions.oracle/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.oracle.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.oracle.nuspec", + "lib/net48/FluentMigrator.Extensions.Oracle.dll", + "lib/net48/FluentMigrator.Extensions.Oracle.pdb", + "lib/net48/FluentMigrator.Extensions.Oracle.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.xml" + ] + }, + "FluentMigrator.Extensions.Postgres/5.1.0": { + "sha512": "g3Se8v9zyjJUxFedx6mxCtCWrpr5IRD1BExyeIuvorJZZztE4emO/qXtpEB/m9YwdD8stJuPShbMWUa7bKm86Q==", + "type": "package", + "path": "fluentmigrator.extensions.postgres/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.postgres.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.postgres.nuspec", + "lib/net48/FluentMigrator.Extensions.Postgres.dll", + "lib/net48/FluentMigrator.Extensions.Postgres.pdb", + "lib/net48/FluentMigrator.Extensions.Postgres.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.xml" + ] + }, + "FluentMigrator.Extensions.Snowflake/5.1.0": { + "sha512": "3YnRq9q5AcShusF9OvbfMFu/Swyfn8V5YD/vkvAsNTcIIAWs4jXY0QhLR/lofIwvk56XqXE263x2OfzLZnf+gQ==", + "type": "package", + "path": "fluentmigrator.extensions.snowflake/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.snowflake.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.snowflake.nuspec", + "lib/net48/FluentMigrator.Extensions.Snowflake.dll", + "lib/net48/FluentMigrator.Extensions.Snowflake.pdb", + "lib/net48/FluentMigrator.Extensions.Snowflake.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.xml" + ] + }, + "FluentMigrator.Extensions.SqlServer/5.1.0": { + "sha512": "zdcQ1mYvyFY+gzfLScv5Y4j/qFXn4xLed71WqjiNWvN2/JkVh7Xa94K/b+PA6AYh8a7AIqdbnOKtzFr0Lh+95g==", + "type": "package", + "path": "fluentmigrator.extensions.sqlserver/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.sqlserver.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.sqlserver.nuspec", + "lib/net48/FluentMigrator.Extensions.SqlServer.dll", + "lib/net48/FluentMigrator.Extensions.SqlServer.pdb", + "lib/net48/FluentMigrator.Extensions.SqlServer.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.xml" + ] + }, + "FluentMigrator.Runner/5.1.0": { + "sha512": "jincYPtHyQjQ3XgQ7c8aPkKLX88HxueHdeSz++WDVo0LXnR4aFbvi/UXbtAsnwt+Jj06KFhF1DlYVOoT3yrhKQ==", + "type": "package", + "path": "fluentmigrator.runner/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.5.1.0.nupkg.sha512", + "fluentmigrator.runner.nuspec", + "lib/net48/FluentMigrator.Runner.dll", + "lib/net48/FluentMigrator.Runner.pdb", + "lib/net48/FluentMigrator.Runner.xml", + "lib/netstandard2.0/FluentMigrator.Runner.dll", + "lib/netstandard2.0/FluentMigrator.Runner.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.xml" + ] + }, + "FluentMigrator.Runner.Core/5.1.0": { + "sha512": "nP/3ezpP57wqt/1+NScrsSRiQj90xeaNjEyjFIekNtPzmGyM/z//AYk3MXtfM8so8b+JZNL5INQYgXaVGISD0Q==", + "type": "package", + "path": "fluentmigrator.runner.core/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.core.5.1.0.nupkg.sha512", + "fluentmigrator.runner.core.nuspec", + "lib/net48/FluentMigrator.Runner.Core.dll", + "lib/net48/FluentMigrator.Runner.Core.pdb", + "lib/net48/FluentMigrator.Runner.Core.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Core.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Core.xml" + ] + }, + "FluentMigrator.Runner.Db2/5.1.0": { + "sha512": "Z9CdgQnkyBgNyRpTA2le/VEQaa2ukFNqDYEqkRu2cOZk+XF3JsjkQMeeQB2Byy7yZhgK/SGrauLvebB5wF1wEw==", + "type": "package", + "path": "fluentmigrator.runner.db2/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.db2.5.1.0.nupkg.sha512", + "fluentmigrator.runner.db2.nuspec", + "lib/net48/FluentMigrator.Runner.Db2.dll", + "lib/net48/FluentMigrator.Runner.Db2.pdb", + "lib/net48/FluentMigrator.Runner.Db2.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.xml" + ] + }, + "FluentMigrator.Runner.Firebird/5.1.0": { + "sha512": "lNFo+LZQczW3vtuSjpOfRxUhoRrwBMg+PV+SOk12c1PnkfvDAtsX/HSn9yUI3xV+fN1x6krBIwIQ9o63HQZAfg==", + "type": "package", + "path": "fluentmigrator.runner.firebird/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.firebird.5.1.0.nupkg.sha512", + "fluentmigrator.runner.firebird.nuspec", + "lib/net48/FluentMigrator.Runner.Firebird.dll", + "lib/net48/FluentMigrator.Runner.Firebird.pdb", + "lib/net48/FluentMigrator.Runner.Firebird.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.xml" + ] + }, + "FluentMigrator.Runner.Hana/5.1.0": { + "sha512": "xCRna1elZYhOITRK4uNtPb3xut0GTtteCyTjQF7ZlHC4RFFpg1a2fAWFUF+TB9YVeFxf1QHKhbo8Kr5rGH6HqA==", + "type": "package", + "path": "fluentmigrator.runner.hana/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.hana.5.1.0.nupkg.sha512", + "fluentmigrator.runner.hana.nuspec", + "lib/net48/FluentMigrator.Runner.Hana.dll", + "lib/net48/FluentMigrator.Runner.Hana.pdb", + "lib/net48/FluentMigrator.Runner.Hana.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.xml" + ] + }, + "FluentMigrator.Runner.MySql/5.1.0": { + "sha512": "VywFX3gKQ7EcveKoLcxLwf8aQkWnJn6WQ2aJqe7Dw6gld8o0WBpevsBwQFO1doGqXzhFDlWHO2NwKoqvXQCG+Q==", + "type": "package", + "path": "fluentmigrator.runner.mysql/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.mysql.5.1.0.nupkg.sha512", + "fluentmigrator.runner.mysql.nuspec", + "lib/net48/FluentMigrator.Runner.MySql.dll", + "lib/net48/FluentMigrator.Runner.MySql.pdb", + "lib/net48/FluentMigrator.Runner.MySql.xml", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.xml" + ] + }, + "FluentMigrator.Runner.Oracle/5.1.0": { + "sha512": "qNmTirqFREMOm/HMkO68suXd3EIoadfQ69gvuJ5Hvy7LNQgMAW8FcrcGkNFn0t0JYAtGEbtH9t90/6dmBAwQIg==", + "type": "package", + "path": "fluentmigrator.runner.oracle/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.oracle.5.1.0.nupkg.sha512", + "fluentmigrator.runner.oracle.nuspec", + "lib/net48/FluentMigrator.Runner.Oracle.dll", + "lib/net48/FluentMigrator.Runner.Oracle.pdb", + "lib/net48/FluentMigrator.Runner.Oracle.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.xml" + ] + }, + "FluentMigrator.Runner.Postgres/5.1.0": { + "sha512": "Zr/cqR7b5PJqwO/JPtVz/zn2USO/jLz8b9JEFCjsYIb4AU8WIwNpLoRXsEcWSoHjlAc60LPcZM608tkgDGgA6A==", + "type": "package", + "path": "fluentmigrator.runner.postgres/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.postgres.5.1.0.nupkg.sha512", + "fluentmigrator.runner.postgres.nuspec", + "lib/net48/FluentMigrator.Runner.Postgres.dll", + "lib/net48/FluentMigrator.Runner.Postgres.pdb", + "lib/net48/FluentMigrator.Runner.Postgres.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.xml" + ] + }, + "FluentMigrator.Runner.Redshift/5.1.0": { + "sha512": "7GTF2EaaU8de9ViLobwxSKT+gY81h6b4zXIkMteALdqnAjkMNcynhEradH5OaDe9PorKWWh3/VBzCmO+N516xw==", + "type": "package", + "path": "fluentmigrator.runner.redshift/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.redshift.5.1.0.nupkg.sha512", + "fluentmigrator.runner.redshift.nuspec", + "lib/net48/FluentMigrator.Runner.Redshift.dll", + "lib/net48/FluentMigrator.Runner.Redshift.pdb", + "lib/net48/FluentMigrator.Runner.Redshift.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.xml" + ] + }, + "FluentMigrator.Runner.Snowflake/5.1.0": { + "sha512": "OmGfCxJPSrhJ6VcW6ypqc+NziwH1rygkNEJfW7Jl1DHfwrQtPgIgWw8qTA0abN+RkwtalXsfaEJ+4EuL0L+w6w==", + "type": "package", + "path": "fluentmigrator.runner.snowflake/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.snowflake.5.1.0.nupkg.sha512", + "fluentmigrator.runner.snowflake.nuspec", + "lib/net48/FluentMigrator.Runner.Snowflake.dll", + "lib/net48/FluentMigrator.Runner.Snowflake.pdb", + "lib/net48/FluentMigrator.Runner.Snowflake.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.xml" + ] + }, + "FluentMigrator.Runner.SQLite/5.1.0": { + "sha512": "5fADu6iWF9pnPKhI0S2VmdR8gaFFe4A+ZtAu57A9w8gcZCCPVzekye83+gm93XuAGxOQtT1RErVIy2T0aGcyYA==", + "type": "package", + "path": "fluentmigrator.runner.sqlite/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.sqlite.5.1.0.nupkg.sha512", + "fluentmigrator.runner.sqlite.nuspec", + "lib/net48/FluentMigrator.Runner.SQLite.dll", + "lib/net48/FluentMigrator.Runner.SQLite.pdb", + "lib/net48/FluentMigrator.Runner.SQLite.xml", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.xml" + ] + }, + "FluentMigrator.Runner.SqlServer/5.1.0": { + "sha512": "WiZjICPJRIjuOZG2c52JOspKG0iR9UrfotE/SQMNlGEoIxjp8XrksEw7LytWsXWCymDjZUedNnA7QTqZS4p/Iw==", + "type": "package", + "path": "fluentmigrator.runner.sqlserver/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.sqlserver.5.1.0.nupkg.sha512", + "fluentmigrator.runner.sqlserver.nuspec", + "lib/net48/FluentMigrator.Runner.SqlServer.dll", + "lib/net48/FluentMigrator.Runner.SqlServer.pdb", + "lib/net48/FluentMigrator.Runner.SqlServer.xml", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.xml" + ] + }, + "FluentValidation/11.5.1": { + "sha512": "0h1Q5lNOLLyYTWMJmyNoMqhY4CBRvvUWvJP1R4F2CnmmzuWwvB0A8aVmw5+lOuwYnwUwCRrdeMLbc81F38ahNQ==", + "type": "package", + "path": "fluentvalidation/11.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.11.5.1.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net5.0/FluentValidation.dll", + "lib/net5.0/FluentValidation.xml", + "lib/net6.0/FluentValidation.dll", + "lib/net6.0/FluentValidation.xml", + "lib/net7.0/FluentValidation.dll", + "lib/net7.0/FluentValidation.xml", + "lib/netstandard2.0/FluentValidation.dll", + "lib/netstandard2.0/FluentValidation.xml", + "lib/netstandard2.1/FluentValidation.dll", + "lib/netstandard2.1/FluentValidation.xml" + ] + }, + "FluentValidation.AspNetCore/11.3.0": { + "sha512": "jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==", + "type": "package", + "path": "fluentvalidation.aspnetcore/11.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512", + "fluentvalidation.aspnetcore.nuspec", + "lib/net5.0/FluentValidation.AspNetCore.dll", + "lib/net5.0/FluentValidation.AspNetCore.xml", + "lib/net6.0/FluentValidation.AspNetCore.dll", + "lib/net6.0/FluentValidation.AspNetCore.xml", + "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll", + "lib/netcoreapp3.1/FluentValidation.AspNetCore.xml" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.5.1": { + "sha512": "iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==", + "type": "package", + "path": "fluentvalidation.dependencyinjectionextensions/11.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512", + "fluentvalidation.dependencyinjectionextensions.nuspec", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml" + ] + }, + "Google.Apis/1.68.0": { + "sha512": "s2MymhdpH+ybZNBeZ2J5uFgFHApBp+QXf9FjZSdM1lk/vx5VqIknJwnaWiuAzXxPrLEkesX0Q+UsiWn39yZ9zw==", + "type": "package", + "path": "google.apis/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.1.68.0.nupkg.sha512", + "google.apis.nuspec", + "lib/net462/Google.Apis.dll", + "lib/net462/Google.Apis.pdb", + "lib/net462/Google.Apis.xml", + "lib/net6.0/Google.Apis.dll", + "lib/net6.0/Google.Apis.pdb", + "lib/net6.0/Google.Apis.xml", + "lib/netstandard2.0/Google.Apis.dll", + "lib/netstandard2.0/Google.Apis.pdb", + "lib/netstandard2.0/Google.Apis.xml" + ] + }, + "Google.Apis.Auth/1.68.0": { + "sha512": "hFx8Qz5bZ4w0hpnn4tSmZaaFpjAMsgVElZ+ZgVLUZ2r9i+AKcoVgwiNfv1pruNS5cCvpXqhKECbruBCfRezPHA==", + "type": "package", + "path": "google.apis.auth/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.auth.1.68.0.nupkg.sha512", + "google.apis.auth.nuspec", + "lib/net462/Google.Apis.Auth.dll", + "lib/net462/Google.Apis.Auth.pdb", + "lib/net462/Google.Apis.Auth.xml", + "lib/net6.0/Google.Apis.Auth.dll", + "lib/net6.0/Google.Apis.Auth.pdb", + "lib/net6.0/Google.Apis.Auth.xml", + "lib/netstandard2.0/Google.Apis.Auth.dll", + "lib/netstandard2.0/Google.Apis.Auth.pdb", + "lib/netstandard2.0/Google.Apis.Auth.xml" + ] + }, + "Google.Apis.Core/1.68.0": { + "sha512": "pAqwa6pfu53UXCR2b7A/PAPXeuVg6L1OFw38WckN27NU2+mf+KTjoEg2YGv/f0UyKxzz7DxF1urOTKg/6dTP9g==", + "type": "package", + "path": "google.apis.core/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.core.1.68.0.nupkg.sha512", + "google.apis.core.nuspec", + "lib/net462/Google.Apis.Core.dll", + "lib/net462/Google.Apis.Core.pdb", + "lib/net462/Google.Apis.Core.xml", + "lib/net6.0/Google.Apis.Core.dll", + "lib/net6.0/Google.Apis.Core.pdb", + "lib/net6.0/Google.Apis.Core.xml", + "lib/netstandard2.0/Google.Apis.Core.dll", + "lib/netstandard2.0/Google.Apis.Core.pdb", + "lib/netstandard2.0/Google.Apis.Core.xml" + ] + }, + "HarfBuzzSharp/7.3.0.2": { + "sha512": "0tCd6HyCmNsX/DniCp2b00fo0xPbdNwKOs9BxxyT8oOOuMlWjcSFwzONKyeckCKVBFEsbSmsAHPDTqxoSDwZMg==", + "type": "package", + "path": "harfbuzzsharp/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "harfbuzzsharp.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nuspec", + "lib/monoandroid1.0/HarfBuzzSharp.dll", + "lib/monoandroid1.0/HarfBuzzSharp.pdb", + "lib/monoandroid1.0/HarfBuzzSharp.xml", + "lib/net462/HarfBuzzSharp.dll", + "lib/net462/HarfBuzzSharp.pdb", + "lib/net462/HarfBuzzSharp.xml", + "lib/net6.0-android30.0/HarfBuzzSharp.dll", + "lib/net6.0-android30.0/HarfBuzzSharp.pdb", + "lib/net6.0-android30.0/HarfBuzzSharp.xml", + "lib/net6.0-ios13.6/HarfBuzzSharp.dll", + "lib/net6.0-ios13.6/HarfBuzzSharp.pdb", + "lib/net6.0-ios13.6/HarfBuzzSharp.xml", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.dll", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.pdb", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.xml", + "lib/net6.0-macos10.15/HarfBuzzSharp.dll", + "lib/net6.0-macos10.15/HarfBuzzSharp.pdb", + "lib/net6.0-macos10.15/HarfBuzzSharp.xml", + "lib/net6.0-tvos13.4/HarfBuzzSharp.dll", + "lib/net6.0-tvos13.4/HarfBuzzSharp.pdb", + "lib/net6.0-tvos13.4/HarfBuzzSharp.xml", + "lib/net6.0/HarfBuzzSharp.dll", + "lib/net6.0/HarfBuzzSharp.pdb", + "lib/net6.0/HarfBuzzSharp.xml", + "lib/netcoreapp3.1/HarfBuzzSharp.dll", + "lib/netcoreapp3.1/HarfBuzzSharp.pdb", + "lib/netcoreapp3.1/HarfBuzzSharp.xml", + "lib/netstandard1.3/HarfBuzzSharp.dll", + "lib/netstandard1.3/HarfBuzzSharp.pdb", + "lib/netstandard1.3/HarfBuzzSharp.xml", + "lib/netstandard2.0/HarfBuzzSharp.dll", + "lib/netstandard2.0/HarfBuzzSharp.pdb", + "lib/netstandard2.0/HarfBuzzSharp.xml", + "lib/netstandard2.1/HarfBuzzSharp.dll", + "lib/netstandard2.1/HarfBuzzSharp.pdb", + "lib/netstandard2.1/HarfBuzzSharp.xml", + "lib/tizen40/HarfBuzzSharp.dll", + "lib/tizen40/HarfBuzzSharp.pdb", + "lib/tizen40/HarfBuzzSharp.xml", + "lib/uap10.0.10240/HarfBuzzSharp.dll", + "lib/uap10.0.10240/HarfBuzzSharp.pdb", + "lib/uap10.0.10240/HarfBuzzSharp.xml", + "lib/uap10.0.16299/HarfBuzzSharp.dll", + "lib/uap10.0.16299/HarfBuzzSharp.pdb", + "lib/uap10.0.16299/HarfBuzzSharp.xml", + "lib/xamarinios1.0/HarfBuzzSharp.dll", + "lib/xamarinios1.0/HarfBuzzSharp.pdb", + "lib/xamarinios1.0/HarfBuzzSharp.xml", + "lib/xamarinmac2.0/HarfBuzzSharp.dll", + "lib/xamarinmac2.0/HarfBuzzSharp.pdb", + "lib/xamarinmac2.0/HarfBuzzSharp.xml", + "lib/xamarintvos1.0/HarfBuzzSharp.dll", + "lib/xamarintvos1.0/HarfBuzzSharp.pdb", + "lib/xamarintvos1.0/HarfBuzzSharp.xml", + "lib/xamarinwatchos1.0/HarfBuzzSharp.dll", + "lib/xamarinwatchos1.0/HarfBuzzSharp.pdb", + "lib/xamarinwatchos1.0/HarfBuzzSharp.xml" + ] + }, + "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": { + "sha512": "aKa5J1RqjXKAtdcZJp5wjC78klfBIzJHM6CneN76lFmQ9LLRJA9Oa0TkIDaV8lVLDKMAy5fCKHXFlXUK1YfL/g==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.linux/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.linux.nuspec", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libHarfBuzzSharp.so", + "runtimes/linux-arm64/native/libHarfBuzzSharp.so", + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so", + "runtimes/linux-x64/native/libHarfBuzzSharp.so" + ] + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": { + "sha512": "nycYH/WLJ6ogm+I+QSFCdPJsdxSb5GANWYbQyp1vsd/KjXN56RVUJWPhbgP2GKb/Y7mrsHM7EProqVXlO/EMsA==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.macos/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.macos.nuspec", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libHarfBuzzSharp.dylib" + ] + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": { + "sha512": "DpF9JBzwws2dupOLnjME65hxQWWbN/GD40AoTkwB4S05WANvxo3n81AnQJKxWDCnrWfWhLPB36OF27TvEqzb/A==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.win32/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.win32.nuspec", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libHarfBuzzSharp.dll", + "runtimes/win-x64/native/libHarfBuzzSharp.dll", + "runtimes/win-x86/native/libHarfBuzzSharp.dll" + ] + }, + "Humanizer/2.14.1": { + "sha512": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", + "type": "package", + "path": "humanizer/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.2.14.1.nupkg.sha512", + "humanizer.nuspec", + "logo.png" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "Humanizer.Core.af/2.14.1": { + "sha512": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", + "type": "package", + "path": "humanizer.core.af/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.af.2.14.1.nupkg.sha512", + "humanizer.core.af.nuspec", + "lib/net6.0/af/Humanizer.resources.dll", + "lib/netstandard1.0/af/Humanizer.resources.dll", + "lib/netstandard2.0/af/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ar/2.14.1": { + "sha512": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", + "type": "package", + "path": "humanizer.core.ar/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ar.2.14.1.nupkg.sha512", + "humanizer.core.ar.nuspec", + "lib/net6.0/ar/Humanizer.resources.dll", + "lib/netstandard1.0/ar/Humanizer.resources.dll", + "lib/netstandard2.0/ar/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.az/2.14.1": { + "sha512": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", + "type": "package", + "path": "humanizer.core.az/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.az.2.14.1.nupkg.sha512", + "humanizer.core.az.nuspec", + "lib/net6.0/az/Humanizer.resources.dll", + "lib/netstandard1.0/az/Humanizer.resources.dll", + "lib/netstandard2.0/az/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bg/2.14.1": { + "sha512": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", + "type": "package", + "path": "humanizer.core.bg/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bg.2.14.1.nupkg.sha512", + "humanizer.core.bg.nuspec", + "lib/net6.0/bg/Humanizer.resources.dll", + "lib/netstandard1.0/bg/Humanizer.resources.dll", + "lib/netstandard2.0/bg/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bn-BD/2.14.1": { + "sha512": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", + "type": "package", + "path": "humanizer.core.bn-bd/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "humanizer.core.bn-bd.nuspec", + "lib/net6.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard1.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard2.0/bn-BD/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.cs/2.14.1": { + "sha512": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", + "type": "package", + "path": "humanizer.core.cs/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.cs.2.14.1.nupkg.sha512", + "humanizer.core.cs.nuspec", + "lib/net6.0/cs/Humanizer.resources.dll", + "lib/netstandard1.0/cs/Humanizer.resources.dll", + "lib/netstandard2.0/cs/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.da/2.14.1": { + "sha512": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", + "type": "package", + "path": "humanizer.core.da/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.da.2.14.1.nupkg.sha512", + "humanizer.core.da.nuspec", + "lib/net6.0/da/Humanizer.resources.dll", + "lib/netstandard1.0/da/Humanizer.resources.dll", + "lib/netstandard2.0/da/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.de/2.14.1": { + "sha512": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", + "type": "package", + "path": "humanizer.core.de/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.de.2.14.1.nupkg.sha512", + "humanizer.core.de.nuspec", + "lib/net6.0/de/Humanizer.resources.dll", + "lib/netstandard1.0/de/Humanizer.resources.dll", + "lib/netstandard2.0/de/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.el/2.14.1": { + "sha512": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", + "type": "package", + "path": "humanizer.core.el/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.el.2.14.1.nupkg.sha512", + "humanizer.core.el.nuspec", + "lib/net6.0/el/Humanizer.resources.dll", + "lib/netstandard1.0/el/Humanizer.resources.dll", + "lib/netstandard2.0/el/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.es/2.14.1": { + "sha512": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", + "type": "package", + "path": "humanizer.core.es/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.es.2.14.1.nupkg.sha512", + "humanizer.core.es.nuspec", + "lib/net6.0/es/Humanizer.resources.dll", + "lib/netstandard1.0/es/Humanizer.resources.dll", + "lib/netstandard2.0/es/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fa/2.14.1": { + "sha512": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", + "type": "package", + "path": "humanizer.core.fa/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fa.2.14.1.nupkg.sha512", + "humanizer.core.fa.nuspec", + "lib/net6.0/fa/Humanizer.resources.dll", + "lib/netstandard1.0/fa/Humanizer.resources.dll", + "lib/netstandard2.0/fa/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fi-FI/2.14.1": { + "sha512": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", + "type": "package", + "path": "humanizer.core.fi-fi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "humanizer.core.fi-fi.nuspec", + "lib/net6.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard1.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard2.0/fi-FI/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr/2.14.1": { + "sha512": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", + "type": "package", + "path": "humanizer.core.fr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr.2.14.1.nupkg.sha512", + "humanizer.core.fr.nuspec", + "lib/net6.0/fr/Humanizer.resources.dll", + "lib/netstandard1.0/fr/Humanizer.resources.dll", + "lib/netstandard2.0/fr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr-BE/2.14.1": { + "sha512": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", + "type": "package", + "path": "humanizer.core.fr-be/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr-be.2.14.1.nupkg.sha512", + "humanizer.core.fr-be.nuspec", + "lib/net6.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard1.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard2.0/fr-BE/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.he/2.14.1": { + "sha512": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", + "type": "package", + "path": "humanizer.core.he/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.he.2.14.1.nupkg.sha512", + "humanizer.core.he.nuspec", + "lib/net6.0/he/Humanizer.resources.dll", + "lib/netstandard1.0/he/Humanizer.resources.dll", + "lib/netstandard2.0/he/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hr/2.14.1": { + "sha512": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", + "type": "package", + "path": "humanizer.core.hr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hr.2.14.1.nupkg.sha512", + "humanizer.core.hr.nuspec", + "lib/net6.0/hr/Humanizer.resources.dll", + "lib/netstandard1.0/hr/Humanizer.resources.dll", + "lib/netstandard2.0/hr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hu/2.14.1": { + "sha512": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", + "type": "package", + "path": "humanizer.core.hu/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hu.2.14.1.nupkg.sha512", + "humanizer.core.hu.nuspec", + "lib/net6.0/hu/Humanizer.resources.dll", + "lib/netstandard1.0/hu/Humanizer.resources.dll", + "lib/netstandard2.0/hu/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hy/2.14.1": { + "sha512": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", + "type": "package", + "path": "humanizer.core.hy/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hy.2.14.1.nupkg.sha512", + "humanizer.core.hy.nuspec", + "lib/net6.0/hy/Humanizer.resources.dll", + "lib/netstandard1.0/hy/Humanizer.resources.dll", + "lib/netstandard2.0/hy/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.id/2.14.1": { + "sha512": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", + "type": "package", + "path": "humanizer.core.id/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.id.2.14.1.nupkg.sha512", + "humanizer.core.id.nuspec", + "lib/net6.0/id/Humanizer.resources.dll", + "lib/netstandard1.0/id/Humanizer.resources.dll", + "lib/netstandard2.0/id/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.is/2.14.1": { + "sha512": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", + "type": "package", + "path": "humanizer.core.is/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.is.2.14.1.nupkg.sha512", + "humanizer.core.is.nuspec", + "lib/net6.0/is/Humanizer.resources.dll", + "lib/netstandard1.0/is/Humanizer.resources.dll", + "lib/netstandard2.0/is/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.it/2.14.1": { + "sha512": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", + "type": "package", + "path": "humanizer.core.it/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.it.2.14.1.nupkg.sha512", + "humanizer.core.it.nuspec", + "lib/net6.0/it/Humanizer.resources.dll", + "lib/netstandard1.0/it/Humanizer.resources.dll", + "lib/netstandard2.0/it/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ja/2.14.1": { + "sha512": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", + "type": "package", + "path": "humanizer.core.ja/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ja.2.14.1.nupkg.sha512", + "humanizer.core.ja.nuspec", + "lib/net6.0/ja/Humanizer.resources.dll", + "lib/netstandard1.0/ja/Humanizer.resources.dll", + "lib/netstandard2.0/ja/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ko-KR/2.14.1": { + "sha512": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", + "type": "package", + "path": "humanizer.core.ko-kr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "humanizer.core.ko-kr.nuspec", + "lib/netstandard1.0/ko-KR/Humanizer.resources.dll", + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ku/2.14.1": { + "sha512": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", + "type": "package", + "path": "humanizer.core.ku/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ku.2.14.1.nupkg.sha512", + "humanizer.core.ku.nuspec", + "lib/net6.0/ku/Humanizer.resources.dll", + "lib/netstandard1.0/ku/Humanizer.resources.dll", + "lib/netstandard2.0/ku/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.lv/2.14.1": { + "sha512": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", + "type": "package", + "path": "humanizer.core.lv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.lv.2.14.1.nupkg.sha512", + "humanizer.core.lv.nuspec", + "lib/net6.0/lv/Humanizer.resources.dll", + "lib/netstandard1.0/lv/Humanizer.resources.dll", + "lib/netstandard2.0/lv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ms-MY/2.14.1": { + "sha512": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", + "type": "package", + "path": "humanizer.core.ms-my/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ms-my.2.14.1.nupkg.sha512", + "humanizer.core.ms-my.nuspec", + "lib/netstandard1.0/ms-MY/Humanizer.resources.dll", + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.mt/2.14.1": { + "sha512": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", + "type": "package", + "path": "humanizer.core.mt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.mt.2.14.1.nupkg.sha512", + "humanizer.core.mt.nuspec", + "lib/netstandard1.0/mt/Humanizer.resources.dll", + "lib/netstandard2.0/mt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb/2.14.1": { + "sha512": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", + "type": "package", + "path": "humanizer.core.nb/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb.2.14.1.nupkg.sha512", + "humanizer.core.nb.nuspec", + "lib/net6.0/nb/Humanizer.resources.dll", + "lib/netstandard1.0/nb/Humanizer.resources.dll", + "lib/netstandard2.0/nb/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb-NO/2.14.1": { + "sha512": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", + "type": "package", + "path": "humanizer.core.nb-no/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb-no.2.14.1.nupkg.sha512", + "humanizer.core.nb-no.nuspec", + "lib/net6.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard1.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard2.0/nb-NO/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nl/2.14.1": { + "sha512": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", + "type": "package", + "path": "humanizer.core.nl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nl.2.14.1.nupkg.sha512", + "humanizer.core.nl.nuspec", + "lib/net6.0/nl/Humanizer.resources.dll", + "lib/netstandard1.0/nl/Humanizer.resources.dll", + "lib/netstandard2.0/nl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pl/2.14.1": { + "sha512": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", + "type": "package", + "path": "humanizer.core.pl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pl.2.14.1.nupkg.sha512", + "humanizer.core.pl.nuspec", + "lib/net6.0/pl/Humanizer.resources.dll", + "lib/netstandard1.0/pl/Humanizer.resources.dll", + "lib/netstandard2.0/pl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pt/2.14.1": { + "sha512": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", + "type": "package", + "path": "humanizer.core.pt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pt.2.14.1.nupkg.sha512", + "humanizer.core.pt.nuspec", + "lib/net6.0/pt/Humanizer.resources.dll", + "lib/netstandard1.0/pt/Humanizer.resources.dll", + "lib/netstandard2.0/pt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ro/2.14.1": { + "sha512": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", + "type": "package", + "path": "humanizer.core.ro/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ro.2.14.1.nupkg.sha512", + "humanizer.core.ro.nuspec", + "lib/net6.0/ro/Humanizer.resources.dll", + "lib/netstandard1.0/ro/Humanizer.resources.dll", + "lib/netstandard2.0/ro/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ru/2.14.1": { + "sha512": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", + "type": "package", + "path": "humanizer.core.ru/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ru.2.14.1.nupkg.sha512", + "humanizer.core.ru.nuspec", + "lib/net6.0/ru/Humanizer.resources.dll", + "lib/netstandard1.0/ru/Humanizer.resources.dll", + "lib/netstandard2.0/ru/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sk/2.14.1": { + "sha512": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", + "type": "package", + "path": "humanizer.core.sk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sk.2.14.1.nupkg.sha512", + "humanizer.core.sk.nuspec", + "lib/net6.0/sk/Humanizer.resources.dll", + "lib/netstandard1.0/sk/Humanizer.resources.dll", + "lib/netstandard2.0/sk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sl/2.14.1": { + "sha512": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", + "type": "package", + "path": "humanizer.core.sl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sl.2.14.1.nupkg.sha512", + "humanizer.core.sl.nuspec", + "lib/net6.0/sl/Humanizer.resources.dll", + "lib/netstandard1.0/sl/Humanizer.resources.dll", + "lib/netstandard2.0/sl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr/2.14.1": { + "sha512": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", + "type": "package", + "path": "humanizer.core.sr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr.2.14.1.nupkg.sha512", + "humanizer.core.sr.nuspec", + "lib/net6.0/sr/Humanizer.resources.dll", + "lib/netstandard1.0/sr/Humanizer.resources.dll", + "lib/netstandard2.0/sr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "sha512": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", + "type": "package", + "path": "humanizer.core.sr-latn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "humanizer.core.sr-latn.nuspec", + "lib/net6.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard1.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard2.0/sr-Latn/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sv/2.14.1": { + "sha512": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", + "type": "package", + "path": "humanizer.core.sv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sv.2.14.1.nupkg.sha512", + "humanizer.core.sv.nuspec", + "lib/net6.0/sv/Humanizer.resources.dll", + "lib/netstandard1.0/sv/Humanizer.resources.dll", + "lib/netstandard2.0/sv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.th-TH/2.14.1": { + "sha512": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", + "type": "package", + "path": "humanizer.core.th-th/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.th-th.2.14.1.nupkg.sha512", + "humanizer.core.th-th.nuspec", + "lib/netstandard1.0/th-TH/Humanizer.resources.dll", + "lib/netstandard2.0/th-TH/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.tr/2.14.1": { + "sha512": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", + "type": "package", + "path": "humanizer.core.tr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.tr.2.14.1.nupkg.sha512", + "humanizer.core.tr.nuspec", + "lib/net6.0/tr/Humanizer.resources.dll", + "lib/netstandard1.0/tr/Humanizer.resources.dll", + "lib/netstandard2.0/tr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uk/2.14.1": { + "sha512": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", + "type": "package", + "path": "humanizer.core.uk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uk.2.14.1.nupkg.sha512", + "humanizer.core.uk.nuspec", + "lib/net6.0/uk/Humanizer.resources.dll", + "lib/netstandard1.0/uk/Humanizer.resources.dll", + "lib/netstandard2.0/uk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "sha512": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", + "type": "package", + "path": "humanizer.core.uz-cyrl-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-cyrl-uz.nuspec", + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "sha512": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", + "type": "package", + "path": "humanizer.core.uz-latn-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-latn-uz.nuspec", + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Latn-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.vi/2.14.1": { + "sha512": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", + "type": "package", + "path": "humanizer.core.vi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.vi.2.14.1.nupkg.sha512", + "humanizer.core.vi.nuspec", + "lib/net6.0/vi/Humanizer.resources.dll", + "lib/netstandard1.0/vi/Humanizer.resources.dll", + "lib/netstandard2.0/vi/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-CN/2.14.1": { + "sha512": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", + "type": "package", + "path": "humanizer.core.zh-cn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "humanizer.core.zh-cn.nuspec", + "lib/net6.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard1.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard2.0/zh-CN/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "sha512": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", + "type": "package", + "path": "humanizer.core.zh-hans/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "humanizer.core.zh-hans.nuspec", + "lib/net6.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hans/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "sha512": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", + "type": "package", + "path": "humanizer.core.zh-hant/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "humanizer.core.zh-hant.nuspec", + "lib/net6.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hant/Humanizer.resources.dll", + "logo.png" + ] + }, + "LigerShark.WebOptimizer.Core/3.0.426": { + "sha512": "Mc4FFKL40n2f4ognnwDrvFxLt+2CdsovhCobaS8u2HXriS2OP8uMDwDIwmE2irlAW+HhR04a+wF1XImtFPxxRg==", + "type": "package", + "path": "ligershark.weboptimizer.core/3.0.426", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "build/LigerShark.WebOptimizer.Core.props", + "build/LigerShark.WebOptimizer.Core.targets", + "lib/net6.0/WebOptimizer.Core.dll", + "lib/net6.0/WebOptimizer.Core.xml", + "lib/net8.0/WebOptimizer.Core.dll", + "lib/net8.0/WebOptimizer.Core.xml", + "ligershark.weboptimizer.core.3.0.426.nupkg.sha512", + "ligershark.weboptimizer.core.nuspec", + "logo.png" + ] + }, + "linq2db/5.4.1": { + "sha512": "qyH32MbFK6T55KsEcQYTbPFfkOa1Mo65lY/Zo8SFVMy0pwkQBCTnA/RUxyG5+l3D/mgfPz85PH3upDrtklSMrw==", + "type": "package", + "path": "linq2db/5.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MIT-LICENSE.txt", + "README.md", + "images/icon.png", + "lib/net45/linq2db.dll", + "lib/net45/linq2db.xml", + "lib/net46/linq2db.dll", + "lib/net46/linq2db.xml", + "lib/net472/linq2db.dll", + "lib/net472/linq2db.xml", + "lib/net6.0/linq2db.dll", + "lib/net6.0/linq2db.xml", + "lib/netcoreapp3.1/linq2db.dll", + "lib/netcoreapp3.1/linq2db.xml", + "lib/netstandard2.0/linq2db.dll", + "lib/netstandard2.0/linq2db.xml", + "lib/netstandard2.1/linq2db.dll", + "lib/netstandard2.1/linq2db.xml", + "linq2db.5.4.1.nupkg.sha512", + "linq2db.nuspec" + ] + }, + "MailKit/4.8.0": { + "sha512": "zZ1UoM4FUnSFUJ9fTl5CEEaejR0DNP6+FDt1OfXnjg4igZntcir1tg/8Ufd6WY5vrpmvToAjluYqjVM24A+5lA==", + "type": "package", + "path": "mailkit/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/ExchangeOAuth2.md", + "docs/FAQ.md", + "docs/GMailOAuth2.md", + "docs/README.md", + "icons/mailkit-50.png", + "lib/net462/MailKit.dll", + "lib/net462/MailKit.dll.config", + "lib/net462/MailKit.pdb", + "lib/net462/MailKit.xml", + "lib/net47/MailKit.dll", + "lib/net47/MailKit.dll.config", + "lib/net47/MailKit.pdb", + "lib/net47/MailKit.xml", + "lib/net48/MailKit.dll", + "lib/net48/MailKit.dll.config", + "lib/net48/MailKit.pdb", + "lib/net48/MailKit.xml", + "lib/net6.0/MailKit.dll", + "lib/net6.0/MailKit.dll.config", + "lib/net6.0/MailKit.pdb", + "lib/net6.0/MailKit.xml", + "lib/net8.0/MailKit.dll", + "lib/net8.0/MailKit.dll.config", + "lib/net8.0/MailKit.pdb", + "lib/net8.0/MailKit.xml", + "lib/netstandard2.0/MailKit.dll", + "lib/netstandard2.0/MailKit.dll.config", + "lib/netstandard2.0/MailKit.pdb", + "lib/netstandard2.0/MailKit.xml", + "lib/netstandard2.1/MailKit.dll", + "lib/netstandard2.1/MailKit.dll.config", + "lib/netstandard2.1/MailKit.pdb", + "lib/netstandard2.1/MailKit.xml", + "mailkit.4.8.0.nupkg.sha512", + "mailkit.nuspec" + ] + }, + "MaxMind.Db/4.1.0": { + "sha512": "lEjCFX0TUQCRmFS8xrXIQSi+4omJ1Fwy0gAHlbnjg8cgSBa0cllP5zOEftQ23EP247EbnF7mNCQ3JsG/bMkHAA==", + "type": "package", + "path": "maxmind.db/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MaxMind-logo.png", + "README.md", + "lib/net6.0/MaxMind.Db.dll", + "lib/net6.0/MaxMind.Db.xml", + "lib/net7.0/MaxMind.Db.dll", + "lib/net7.0/MaxMind.Db.xml", + "lib/net8.0/MaxMind.Db.dll", + "lib/net8.0/MaxMind.Db.xml", + "lib/netstandard2.0/MaxMind.Db.dll", + "lib/netstandard2.0/MaxMind.Db.xml", + "lib/netstandard2.1/MaxMind.Db.dll", + "lib/netstandard2.1/MaxMind.Db.xml", + "maxmind.db.4.1.0.nupkg.sha512", + "maxmind.db.nuspec" + ] + }, + "MaxMind.GeoIP2/5.2.0": { + "sha512": "E8i6yQPlAznLTfS8w208uY3oqCg6i7sQ9cxKmlDdhFMXVLfm4sKphOTMsIWdAHJCV7RxW2a3DlqxAPkQrqmqlA==", + "type": "package", + "path": "maxmind.geoip2/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MaxMind-logo.png", + "README.md", + "lib/net6.0/MaxMind.GeoIP2.dll", + "lib/net6.0/MaxMind.GeoIP2.xml", + "lib/net7.0/MaxMind.GeoIP2.dll", + "lib/net7.0/MaxMind.GeoIP2.xml", + "lib/net8.0/MaxMind.GeoIP2.dll", + "lib/net8.0/MaxMind.GeoIP2.xml", + "lib/netstandard2.0/MaxMind.GeoIP2.dll", + "lib/netstandard2.0/MaxMind.GeoIP2.xml", + "lib/netstandard2.1/MaxMind.GeoIP2.dll", + "lib/netstandard2.1/MaxMind.GeoIP2.xml", + "maxmind.geoip2.5.2.0.nupkg.sha512", + "maxmind.geoip2.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.32": { + "sha512": "tULjwFie6fYm4o6WfD+aHTTrps2I22MQVZpmEWaJumFmzZWA1nHsKezuCBl/u/iKiXtN3npL6MoINaiLHURr/A==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection/3.1.32": { + "sha512": "D46awzK+Q0jP7Bq0cQlsxQrhg7MBhlxG2z+U+9EzcbjcjaDzQvaD5/cxD+qKdu9bHMcSFf9fMr5wizSBPPai1Q==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml", + "microsoft.aspnetcore.dataprotection.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.32": { + "sha512": "MPL4iVyiaRxnOUY5VATHjvhDWaAEFb77KFiUxVRklv3Z3v+STofUr1UG/aCt1O9cgN7FVTDaC5A7U+zsLub8Xg==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "microsoft.aspnetcore.dataprotection.abstractions.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.JsonPatch/8.0.10": { + "sha512": "pLEDpobrApzc+9IgnlwMfWHfVaOWdNlBFgfggxFgMw57sn/iTkPMwc8eaufcKcLyCCNZQ1r6GRLsIIzUMtH8eg==", + "type": "package", + "path": "microsoft.aspnetcore.jsonpatch/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net462/Microsoft.AspNetCore.JsonPatch.xml", + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", + "microsoft.aspnetcore.jsonpatch.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.jsonpatch.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.10": { + "sha512": "2DIFj+w15yFIQbh4AgQQC8m0UJfhiF20s3h/DlTyiPGgNfijZ9TxqauYqaj81hF5Pc9wUg9agvxlH+4eUFjoRg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml", + "microsoft.aspnetcore.mvc.newtonsoftjson.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": { + "sha512": "M0h+ChPgydX2xY17agiphnAVa/Qh05RAP8eeuqGGhQKT10claRBlLNO6d2/oSV8zy0RLHzwLnNZm5xuC/gckGA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", + "microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/8.0.10": { + "sha512": "FM83yTM+cyfHWMAyh86KXh7ZGrwOQLyGDG6LB3erO8kxwmdMN5zBkYxJmIfXhjRL07+q1mpO7gqUkBvyGy6NfQ==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "build/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Language/6.0.0": { + "sha512": "yCtBr1GSGzJrrp1NJUb4ltwFYMKHw/tJLnIDvg9g/FnkGIEzmE19tbCQqXARIJv5kdtBgsoVIdGLL+zmjxvM/A==", + "type": "package", + "path": "microsoft.aspnetcore.razor.language/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", + "microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512", + "microsoft.aspnetcore.razor.language.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.rtf", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "build/Microsoft.CodeAnalysis.Analyzers.targets", + "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_Default.editorconfig", + "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_Default.editorconfig", + "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_Default.editorconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "sha512": "d02ybMhUJl1r/dI6SkJPHrTiTzXBYCZeJdOLMckV+jyoMU/GGkjqFX/sRbv1K0QmlpwwKuLTiYVQvfYC+8ox2g==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.4.0.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "sha512": "2UVTGtyQGgTCazvnT6t82f+7AV2L+kqJdyb61rT9GQed4yK+tVh5IkaKcsm70VqyZQhBbDqsfZFNHnY65xhrRw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Razor/6.0.0": { + "sha512": "uqdzuQXxD7XrJCbIbbwpI/LOv0PBJ9VIR0gdvANTHOfK5pjTaCir+XcwvYvBZ5BIzd0KGzyiamzlEWw1cK1q0w==", + "type": "package", + "path": "microsoft.codeanalysis.razor/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", + "microsoft.codeanalysis.razor.6.0.0.nupkg.sha512", + "microsoft.codeanalysis.razor.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/5.2.0": { + "sha512": "3alfyqRN3ELRtdvU1dGtLBRNQqprr3TJ0WrUJfMISPwg1nPUN2P3Lelah68IKWuV27Ceb7ig95hWNHFTSXfxMg==", + "type": "package", + "path": "microsoft.data.sqlclient/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net462/Microsoft.Data.SqlClient.dll", + "lib/net462/Microsoft.Data.SqlClient.xml", + "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/Microsoft.Data.SqlClient.dll", + "lib/net6.0/Microsoft.Data.SqlClient.xml", + "lib/net6.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/Microsoft.Data.SqlClient.dll", + "lib/net8.0/Microsoft.Data.SqlClient.xml", + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "microsoft.data.sqlclient.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net462/Microsoft.Data.SqlClient.dll", + "ref/net462/Microsoft.Data.SqlClient.xml", + "ref/net6.0/Microsoft.Data.SqlClient.dll", + "ref/net6.0/Microsoft.Data.SqlClient.xml", + "ref/net8.0/Microsoft.Data.SqlClient.dll", + "ref/net8.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "sha512": "po1jhvFd+8pbfvJR/puh+fkHi0GRanAdvayh/0e47yaM6CXWZ6opUjCMFuYlAnD2LcbyvQE7fPJKvogmaUcN+w==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.SqlServer/8.0.10": { + "sha512": "Cz0qWHBA4UsM46BI/nehilD8dyglAYZ59gBkbgUzOnq9y4g52jb5R6wu7lKOyOi/pJx/VSt/Tt5LAbtxa27ZJw==", + "type": "package", + "path": "microsoft.extensions.caching.sqlserver/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/net462/Microsoft.Extensions.Caching.SqlServer.xml", + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.xml", + "microsoft.extensions.caching.sqlserver.8.0.10.nupkg.sha512", + "microsoft.extensions.caching.sqlserver.nuspec" + ] + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/8.0.10": { + "sha512": "60BGmEIij4UjMf6iG9hUQy6+aZC5X4UVNpJ0O/TU2Dt3z/XnNuC/vgjtpbfrhYdkeVegqFwGIHnWk/kEI4eddA==", + "type": "package", + "path": "microsoft.extensions.caching.stackexchangeredis/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net462/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "microsoft.extensions.caching.stackexchangeredis.8.0.10.nupkg.sha512", + "microsoft.extensions.caching.stackexchangeredis.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "sha512": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.32": { + "sha512": "sS+U28IfgZSQUS2b3MayPdYGBJlHOWwgnfAZ77bZLkgU0z+lJz7lgzrKQUm9SgKF+OAc5B9kWJV5PB6l7mWWZA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.3.1.32.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.32": { + "sha512": "00J6eE920t5vfPnEHBSGyj1Ya9lG6WYsMwqvLZ0nMPPTD2UxkaL+FNJM5DNSnMFJtV84KkUudPRngmNiCkqhuA==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.3.1.32.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/6.0.16": { + "sha512": "OVX5tlKg6LY+XKqlUn7i9KY+6Liut0iewWff2DNr7129i/NJ8rpUzbmxavPydZgcLREEWHklXZiPKCS895tNIQ==", + "type": "package", + "path": "microsoft.extensions.objectpool/6.0.16", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.ObjectPool.dll", + "lib/net461/Microsoft.Extensions.ObjectPool.xml", + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net6.0/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.6.0.16.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/8.0.2": { + "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "type": "package", + "path": "microsoft.extensions.options/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.2.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.66.1": { + "sha512": "mE+m3pZ7zSKocSubKXxwZcUrCzLflC86IdLxrVjS8tialy0b1L+aECBqRBC/ykcPlB4y7skg49TaTiA+O2UfDw==", + "type": "package", + "path": "microsoft.identity.client/4.66.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.Identity.Client.dll", + "lib/net462/Microsoft.Identity.Client.xml", + "lib/net472/Microsoft.Identity.Client.dll", + "lib/net472/Microsoft.Identity.Client.xml", + "lib/net6.0-android31.0/Microsoft.Identity.Client.dll", + "lib/net6.0-android31.0/Microsoft.Identity.Client.xml", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml", + "lib/net6.0/Microsoft.Identity.Client.dll", + "lib/net6.0/Microsoft.Identity.Client.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.66.1.nupkg.sha512", + "microsoft.identity.client.nuspec" + ] + }, + "Microsoft.Identity.Client.Extensions.Msal/4.65.0": { + "sha512": "JIOBFMAyVSqGWP4dNoST+A9BRJMGC8m73BNbR1oKA8nUjGyR8Fd4eOOME/VDrd26I5JWU4RtmWqpt20lpp2r5w==", + "type": "package", + "path": "microsoft.identity.client.extensions.msal/4.65.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "microsoft.identity.client.extensions.msal.4.65.0.nupkg.sha512", + "microsoft.identity.client.extensions.msal.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", + "type": "package", + "path": "microsoft.netcore.platforms/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.SqlServer.Server/1.0.0": { + "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "type": "package", + "path": "microsoft.sqlserver.server/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.SqlServer.Server.dll", + "lib/net46/Microsoft.SqlServer.Server.pdb", + "lib/net46/Microsoft.SqlServer.Server.xml", + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", + "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", + "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", + "microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "microsoft.sqlserver.server.nuspec" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MimeKit/4.8.0": { + "sha512": "U24wp4LKED+sBRzyrWICE+3bSwptsTrPOcCIXbW5zfeThCNzQx5NCo8Wus+Rmi+EUkQrCwlI/3sVfejeq9tuxQ==", + "type": "package", + "path": "mimekit/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/FAQ.md", + "docs/README.md", + "icons/mimekit-50.png", + "lib/net462/MimeKit.dll", + "lib/net462/MimeKit.dll.config", + "lib/net462/MimeKit.pdb", + "lib/net462/MimeKit.xml", + "lib/net47/MimeKit.dll", + "lib/net47/MimeKit.dll.config", + "lib/net47/MimeKit.pdb", + "lib/net47/MimeKit.xml", + "lib/net48/MimeKit.dll", + "lib/net48/MimeKit.dll.config", + "lib/net48/MimeKit.pdb", + "lib/net48/MimeKit.xml", + "lib/net6.0/MimeKit.dll", + "lib/net6.0/MimeKit.dll.config", + "lib/net6.0/MimeKit.pdb", + "lib/net6.0/MimeKit.xml", + "lib/net8.0/MimeKit.dll", + "lib/net8.0/MimeKit.dll.config", + "lib/net8.0/MimeKit.pdb", + "lib/net8.0/MimeKit.xml", + "lib/netstandard2.0/MimeKit.dll", + "lib/netstandard2.0/MimeKit.dll.config", + "lib/netstandard2.0/MimeKit.pdb", + "lib/netstandard2.0/MimeKit.xml", + "lib/netstandard2.1/MimeKit.dll", + "lib/netstandard2.1/MimeKit.dll.config", + "lib/netstandard2.1/MimeKit.pdb", + "lib/netstandard2.1/MimeKit.xml", + "mimekit.4.8.0.nupkg.sha512", + "mimekit.nuspec" + ] + }, + "MySqlConnector/2.3.7": { + "sha512": "YiVOxvJ+vAYW8NT9gHv8RxKCDFCSXAObF3z0Ou/8WRv8Lsn2QsxaPW5xEwPE+xCcAq6BGkrI8GTOC09Xg09blQ==", + "type": "package", + "path": "mysqlconnector/2.3.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/MySqlConnector.dll", + "lib/net462/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net48/MySqlConnector.dll", + "lib/net48/MySqlConnector.xml", + "lib/net6.0/MySqlConnector.dll", + "lib/net6.0/MySqlConnector.xml", + "lib/net7.0/MySqlConnector.dll", + "lib/net7.0/MySqlConnector.xml", + "lib/net8.0/MySqlConnector.dll", + "lib/net8.0/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.2.3.7.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Newtonsoft.Json.Bson/1.0.2": { + "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.pdb", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", + "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", + "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.2.nupkg.sha512", + "newtonsoft.json.bson.nuspec" + ] + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "sha512": "QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==", + "type": "package", + "path": "nito.asyncex.coordination/5.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.AsyncEx.Coordination.dll", + "lib/net461/Nito.AsyncEx.Coordination.xml", + "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll", + "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml", + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll", + "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml", + "nito.asyncex.coordination.5.1.2.nupkg.sha512", + "nito.asyncex.coordination.nuspec" + ] + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "sha512": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==", + "type": "package", + "path": "nito.asyncex.tasks/5.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.AsyncEx.Tasks.dll", + "lib/net461/Nito.AsyncEx.Tasks.xml", + "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll", + "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml", + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll", + "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml", + "nito.asyncex.tasks.5.1.2.nupkg.sha512", + "nito.asyncex.tasks.nuspec" + ] + }, + "Nito.Collections.Deque/1.1.1": { + "sha512": "CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==", + "type": "package", + "path": "nito.collections.deque/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.Collections.Deque.dll", + "lib/net461/Nito.Collections.Deque.xml", + "lib/netstandard1.0/Nito.Collections.Deque.dll", + "lib/netstandard1.0/Nito.Collections.Deque.xml", + "lib/netstandard2.0/Nito.Collections.Deque.dll", + "lib/netstandard2.0/Nito.Collections.Deque.xml", + "nito.collections.deque.1.1.1.nupkg.sha512", + "nito.collections.deque.nuspec" + ] + }, + "Nito.Disposables/2.2.1": { + "sha512": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==", + "type": "package", + "path": "nito.disposables/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.Disposables.dll", + "lib/net461/Nito.Disposables.xml", + "lib/netstandard1.0/Nito.Disposables.dll", + "lib/netstandard1.0/Nito.Disposables.xml", + "lib/netstandard2.0/Nito.Disposables.dll", + "lib/netstandard2.0/Nito.Disposables.xml", + "lib/netstandard2.1/Nito.Disposables.dll", + "lib/netstandard2.1/Nito.Disposables.xml", + "nito.disposables.2.2.1.nupkg.sha512", + "nito.disposables.nuspec" + ] + }, + "Npgsql/8.0.5": { + "sha512": "zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==", + "type": "package", + "path": "npgsql/8.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net7.0/Npgsql.dll", + "lib/net7.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.8.0.5.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "NUglify/1.21.9": { + "sha512": "ULyI/scrIRAo2In6cnaCc/QkWUt+wB6pBVt5lrVddOKyamsCAm1XgArkk4px9tVn6SipjhbTt4M38QPlpoET+g==", + "type": "package", + "path": "nuglify/1.21.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/NUglify.dll", + "lib/net35/NUglify.xml", + "lib/net40/NUglify.dll", + "lib/net40/NUglify.xml", + "lib/net5.0/NUglify.dll", + "lib/net5.0/NUglify.xml", + "lib/netstandard1.3/NUglify.dll", + "lib/netstandard1.3/NUglify.xml", + "lib/netstandard2.0/NUglify.dll", + "lib/netstandard2.0/NUglify.xml", + "nuglify.1.21.9.nupkg.sha512", + "nuglify.nuspec", + "nuglify.png" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", + "type": "package", + "path": "pipelines.sockets.unofficial/2.2.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Pipelines.Sockets.Unofficial.dll", + "lib/net461/Pipelines.Sockets.Unofficial.xml", + "lib/net472/Pipelines.Sockets.Unofficial.dll", + "lib/net472/Pipelines.Sockets.Unofficial.xml", + "lib/net5.0/Pipelines.Sockets.Unofficial.dll", + "lib/net5.0/Pipelines.Sockets.Unofficial.xml", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", + "pipelines.sockets.unofficial.2.2.8.nupkg.sha512", + "pipelines.sockets.unofficial.nuspec" + ] + }, + "QuestPDF/2024.10.1": { + "sha512": "pjPmQ/K5yI9EDuLceHa+HTPYMLAN0Lgpfmhsf4SxNhkU/nJ3Qc9k2d9wSg+1DNrub6hh2uJZx5xOk2jN6CNlew==", + "type": "package", + "path": "questpdf/2024.10.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Contributors.md", + "Description.md", + "Documentation.xml", + "ExternalDependencyLicenses/emsdk.txt", + "ExternalDependencyLicenses/expat.txt", + "ExternalDependencyLicenses/harfbuzz.txt", + "ExternalDependencyLicenses/icu.txt", + "ExternalDependencyLicenses/libjpeg-turbo.txt", + "ExternalDependencyLicenses/libpng.txt", + "ExternalDependencyLicenses/libwebp.txt", + "ExternalDependencyLicenses/ninja-build.txt", + "ExternalDependencyLicenses/readme.txt", + "ExternalDependencyLicenses/skia.txt", + "ExternalDependencyLicenses/wuffs.txt", + "ExternalDependencyLicenses/zlib.txt", + "LatoFont/Lato-Black.ttf", + "LatoFont/Lato-BlackItalic.ttf", + "LatoFont/Lato-Bold.ttf", + "LatoFont/Lato-BoldItalic.ttf", + "LatoFont/Lato-ExtraBold.ttf", + "LatoFont/Lato-ExtraBoldItalic.ttf", + "LatoFont/Lato-ExtraLight.ttf", + "LatoFont/Lato-ExtraLightItalic.ttf", + "LatoFont/Lato-Italic.ttf", + "LatoFont/Lato-Light.ttf", + "LatoFont/Lato-LightItalic.ttf", + "LatoFont/Lato-Medium.ttf", + "LatoFont/Lato-MediumItalic.ttf", + "LatoFont/Lato-Regular.ttf", + "LatoFont/Lato-SemiBold.ttf", + "LatoFont/Lato-SemiBoldItalic.ttf", + "LatoFont/Lato-Thin.ttf", + "LatoFont/Lato-ThinItalic.ttf", + "LatoFont/OFL.txt", + "Logo.png", + "PackageLicense.md", + "PackageReadme.md", + "ReleaseNotes.txt", + "build/QuestPDF.targets", + "build/net4/QuestPDF.targets", + "buildTransitive/QuestPDF.targets", + "buildTransitive/net4/QuestPDF.targets", + "lib/net6.0/QuestPDF.dll", + "lib/net6.0/QuestPDF.xml", + "lib/net8.0/QuestPDF.dll", + "lib/net8.0/QuestPDF.xml", + "lib/netstandard2.0/QuestPDF.dll", + "lib/netstandard2.0/QuestPDF.xml", + "questpdf.2024.10.1.nupkg.sha512", + "questpdf.nuspec", + "runtimes/linux-arm64/native/libQuestPdfSkia.so", + "runtimes/linux-musl-x64/native/libQuestPdfSkia.so", + "runtimes/linux-x64/native/libQuestPdfSkia.so", + "runtimes/osx-arm64/native/libQuestPdfSkia.dylib", + "runtimes/osx-x64/native/libQuestPdfSkia.dylib", + "runtimes/win-x64/native/QuestPdfSkia.dll", + "runtimes/win-x86/native/QuestPdfSkia.dll" + ] + }, + "RBush/3.2.0": { + "sha512": "ijGh9N0zZ7JfXk3oQkWCwK8SwSSByexbyh/MjbCjNxOft9eG5ZqKC1vdgiYq78h4IZRFmN4s3JZ/b10Jipud5w==", + "type": "package", + "path": "rbush/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/RBush.dll", + "lib/net6.0/RBush.xml", + "lib/netcoreapp3.1/RBush.dll", + "lib/netcoreapp3.1/RBush.xml", + "lib/netstandard1.2/RBush.dll", + "lib/netstandard1.2/RBush.xml", + "rbush.3.2.0.nupkg.sha512", + "rbush.nuspec", + "readme.md" + ] + }, + "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" + ] + }, + "ShimSkiaSharp/2.0.0.1": { + "sha512": "UcUtnhIlriwCmgThNdCjNqfjX1JCMxrx3xzYrcXovMVoxMWi8ulQAwa21vz2NiyaXkHfu4fYcNH2aeLVYxHq9Q==", + "type": "package", + "path": "shimskiasharp/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/ShimSkiaSharp.dll", + "lib/net6.0/ShimSkiaSharp.dll", + "lib/net8.0/ShimSkiaSharp.dll", + "lib/netstandard2.0/ShimSkiaSharp.dll", + "shimskiasharp.2.0.0.1.nupkg.sha512", + "shimskiasharp.nuspec" + ] + }, + "SixLabors.Fonts/1.0.0": { + "sha512": "LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==", + "type": "package", + "path": "sixlabors.fonts/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/SixLabors.Fonts.dll", + "lib/netcoreapp3.1/SixLabors.Fonts.xml", + "lib/netstandard2.0/SixLabors.Fonts.dll", + "lib/netstandard2.0/SixLabors.Fonts.xml", + "lib/netstandard2.1/SixLabors.Fonts.dll", + "lib/netstandard2.1/SixLabors.Fonts.xml", + "sixlabors.fonts.1.0.0.nupkg.sha512", + "sixlabors.fonts.128.png", + "sixlabors.fonts.nuspec" + ] + }, + "SkiaSharp/2.88.8": { + "sha512": "bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==", + "type": "package", + "path": "skiasharp/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll", + "lib/monoandroid1.0/SkiaSharp.dll", + "lib/monoandroid1.0/SkiaSharp.pdb", + "lib/monoandroid1.0/SkiaSharp.xml", + "lib/net462/SkiaSharp.dll", + "lib/net462/SkiaSharp.pdb", + "lib/net462/SkiaSharp.xml", + "lib/net6.0-android30.0/SkiaSharp.dll", + "lib/net6.0-android30.0/SkiaSharp.pdb", + "lib/net6.0-android30.0/SkiaSharp.xml", + "lib/net6.0-ios13.6/SkiaSharp.dll", + "lib/net6.0-ios13.6/SkiaSharp.pdb", + "lib/net6.0-ios13.6/SkiaSharp.xml", + "lib/net6.0-maccatalyst13.5/SkiaSharp.dll", + "lib/net6.0-maccatalyst13.5/SkiaSharp.pdb", + "lib/net6.0-maccatalyst13.5/SkiaSharp.xml", + "lib/net6.0-macos10.15/SkiaSharp.dll", + "lib/net6.0-macos10.15/SkiaSharp.pdb", + "lib/net6.0-macos10.15/SkiaSharp.xml", + "lib/net6.0-tizen7.0/SkiaSharp.dll", + "lib/net6.0-tizen7.0/SkiaSharp.pdb", + "lib/net6.0-tizen7.0/SkiaSharp.xml", + "lib/net6.0-tvos13.4/SkiaSharp.dll", + "lib/net6.0-tvos13.4/SkiaSharp.pdb", + "lib/net6.0-tvos13.4/SkiaSharp.xml", + "lib/net6.0/SkiaSharp.dll", + "lib/net6.0/SkiaSharp.pdb", + "lib/net6.0/SkiaSharp.xml", + "lib/netcoreapp3.1/SkiaSharp.dll", + "lib/netcoreapp3.1/SkiaSharp.pdb", + "lib/netcoreapp3.1/SkiaSharp.xml", + "lib/netstandard1.3/SkiaSharp.dll", + "lib/netstandard1.3/SkiaSharp.pdb", + "lib/netstandard1.3/SkiaSharp.xml", + "lib/netstandard2.0/SkiaSharp.dll", + "lib/netstandard2.0/SkiaSharp.pdb", + "lib/netstandard2.0/SkiaSharp.xml", + "lib/netstandard2.1/SkiaSharp.dll", + "lib/netstandard2.1/SkiaSharp.pdb", + "lib/netstandard2.1/SkiaSharp.xml", + "lib/tizen40/SkiaSharp.dll", + "lib/tizen40/SkiaSharp.pdb", + "lib/tizen40/SkiaSharp.xml", + "lib/uap10.0.10240/SkiaSharp.dll", + "lib/uap10.0.10240/SkiaSharp.pdb", + "lib/uap10.0.10240/SkiaSharp.xml", + "lib/uap10.0.16299/SkiaSharp.dll", + "lib/uap10.0.16299/SkiaSharp.pdb", + "lib/uap10.0.16299/SkiaSharp.xml", + "lib/xamarinios1.0/SkiaSharp.dll", + "lib/xamarinios1.0/SkiaSharp.pdb", + "lib/xamarinios1.0/SkiaSharp.xml", + "lib/xamarinmac2.0/SkiaSharp.dll", + "lib/xamarinmac2.0/SkiaSharp.pdb", + "lib/xamarinmac2.0/SkiaSharp.xml", + "lib/xamarintvos1.0/SkiaSharp.dll", + "lib/xamarintvos1.0/SkiaSharp.pdb", + "lib/xamarintvos1.0/SkiaSharp.xml", + "lib/xamarinwatchos1.0/SkiaSharp.dll", + "lib/xamarinwatchos1.0/SkiaSharp.pdb", + "lib/xamarinwatchos1.0/SkiaSharp.xml", + "skiasharp.2.88.8.nupkg.sha512", + "skiasharp.nuspec" + ] + }, + "SkiaSharp.HarfBuzz/2.88.8": { + "sha512": "ajSyJ2D17R0kZ4FwKwFrJTsYs3D3Y9iRBLhNecROR7dOxC6VTFaMPXJuwQB8KYpAqgmb2JAJFEgZ3i8MaaIw1g==", + "type": "package", + "path": "skiasharp.harfbuzz/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net462/SkiaSharp.HarfBuzz.dll", + "lib/net462/SkiaSharp.HarfBuzz.pdb", + "lib/net462/SkiaSharp.HarfBuzz.xml", + "lib/net6.0/SkiaSharp.HarfBuzz.dll", + "lib/net6.0/SkiaSharp.HarfBuzz.pdb", + "lib/net6.0/SkiaSharp.HarfBuzz.xml", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.dll", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.pdb", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.xml", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.dll", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.xml", + "skiasharp.harfbuzz.2.88.8.nupkg.sha512", + "skiasharp.harfbuzz.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.8": { + "sha512": "/DoKtdyvRgCC5GR/SH+ps3ZiOjmf0BYpAyrhWQELFOO1hdcqddrDVJjDNCOJ41vV+NlS5b3kcDoZZ7jLhFjyXg==", + "type": "package", + "path": "skiasharp.nativeassets.linux.nodependencies/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Linux.NoDependencies.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Linux.NoDependencies.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libSkiaSharp.so", + "runtimes/linux-arm64/native/libSkiaSharp.so", + "runtimes/linux-musl-x64/native/libSkiaSharp.so", + "runtimes/linux-x64/native/libSkiaSharp.so", + "skiasharp.nativeassets.linux.nodependencies.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.linux.nodependencies.nuspec" + ] + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "sha512": "6Kn5TSkKlfyS6azWHF3Jk2sW5C4jCE5uSshM/5AbfFrR+5n6qM5XEnz9h4VaVl7LTxBvHvMkuPb/3bpbq0vxTw==", + "type": "package", + "path": "skiasharp.nativeassets.macos/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libSkiaSharp.dylib", + "skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.macos.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "sha512": "O9QXoWEXA+6cweR4h3BOnwMz+pO9vL9mXdjLrpDd0w1QzCgWmLQBxa1VgySDITiH7nQndrDG1h6937zm9pLj1Q==", + "type": "package", + "path": "skiasharp.nativeassets.win32/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libSkiaSharp.dll", + "runtimes/win-x64/native/libSkiaSharp.dll", + "runtimes/win-x86/native/libSkiaSharp.dll", + "skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.win32.nuspec" + ] + }, + "StackExchange.Redis/2.7.27": { + "sha512": "Uqc2OQHglqj9/FfGQ6RkKFkZfHySfZlfmbCl+hc+u2I/IqunfelQ7QJi7ZhvAJxUtu80pildVX6NPLdDaUffOw==", + "type": "package", + "path": "stackexchange.redis/2.7.27", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/StackExchange.Redis.dll", + "lib/net461/StackExchange.Redis.xml", + "lib/net472/StackExchange.Redis.dll", + "lib/net472/StackExchange.Redis.xml", + "lib/net6.0/StackExchange.Redis.dll", + "lib/net6.0/StackExchange.Redis.xml", + "lib/netcoreapp3.1/StackExchange.Redis.dll", + "lib/netcoreapp3.1/StackExchange.Redis.xml", + "lib/netstandard2.0/StackExchange.Redis.dll", + "lib/netstandard2.0/StackExchange.Redis.xml", + "stackexchange.redis.2.7.27.nupkg.sha512", + "stackexchange.redis.nuspec" + ] + }, + "Svg.Custom/2.0.0.1": { + "sha512": "RDQkecvotRs6Cadg0d8IxoXMSkYzVhrYkBWOlS0cW/Krm7Fzr+/LbXdUuXYRnKDoRoSRzzP9GAKmv5Z9oZTM1w==", + "type": "package", + "path": "svg.custom/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Svg.Custom.dll", + "lib/net8.0/Svg.Custom.dll", + "lib/netstandard2.0/Svg.Custom.dll", + "svg.custom.2.0.0.1.nupkg.sha512", + "svg.custom.nuspec" + ] + }, + "Svg.Model/2.0.0.1": { + "sha512": "lHAW6yYC62oKAXmTol2f0Ke6je5VkGTilSvnk4ynZ8577o7/eCnvZyPJcoFPryOX+s+6aAUA1rbbcK1JfsQzEA==", + "type": "package", + "path": "svg.model/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Model.dll", + "lib/net6.0/Svg.Model.dll", + "lib/net8.0/Svg.Model.dll", + "lib/netstandard2.0/Svg.Model.dll", + "svg.model.2.0.0.1.nupkg.sha512", + "svg.model.nuspec" + ] + }, + "Svg.Skia/2.0.0.1": { + "sha512": "yn1+xr8sXV88qdAQbv+O+9Sf8Ymp0SFxDNGvyNWEr8OdyEtBndnzPPW5uHLIxzmsH4JFHaTOpL+wDF8Vj05iFQ==", + "type": "package", + "path": "svg.skia/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Skia.dll", + "lib/net6.0/Svg.Skia.dll", + "lib/net8.0/Svg.Skia.dll", + "lib/netstandard2.0/Svg.Skia.dll", + "svg.skia.2.0.0.1.nupkg.sha512", + "svg.skia.nuspec" + ] + }, + "System.ClientModel/1.1.0": { + "sha512": "UocOlCkxLZrG2CKMAAImPcldJTxeesHnHGHwhJ0pNlZEvEXcWKuQvVOER2/NiOkJGRJk978SNdw3j6/7O9H1lg==", + "type": "package", + "path": "system.clientmodel/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net6.0/System.ClientModel.dll", + "lib/net6.0/System.ClientModel.xml", + "lib/netstandard2.0/System.ClientModel.dll", + "lib/netstandard2.0/System.ClientModel.xml", + "system.clientmodel.1.1.0.nupkg.sha512", + "system.clientmodel.nuspec" + ] + }, + "System.CodeDom/7.0.0": { + "sha512": "GLltyqEsE5/3IE+zYRP5sNa1l44qKl9v+bfdMcwg+M9qnQf47wK3H0SUR/T+3N4JEQXF3vV4CSuuo0rsg+nq2A==", + "type": "package", + "path": "system.codedom/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.CodeDom.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "lib/net462/System.CodeDom.dll", + "lib/net462/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/net7.0/System.CodeDom.dll", + "lib/net7.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.7.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/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.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/8.0.1": { + "sha512": "gPYFPDyohW2gXNhdQRSjtmeS6FymL2crg4Sral1wtvEJ7DUqFCDWDVbbLobASbzxfic8U1hQEdC7hmg9LHncMw==", + "type": "package", + "path": "system.configuration.configurationmanager/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/net7.0/System.Configuration.ConfigurationManager.dll", + "lib/net7.0/System.Configuration.ConfigurationManager.xml", + "lib/net8.0/System.Configuration.ConfigurationManager.dll", + "lib/net8.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.8.0.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "sha512": "vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/8.0.1": { + "sha512": "n1ZP7NM2Gkn/MgD8+eOT5MulMj6wfeQMNS2Pizvq5GHCZfjlFMXV2irQlQmJhwA2VABC57M0auudO89Iu2uRLg==", + "type": "package", + "path": "system.diagnostics.eventlog/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/net7.0/System.Diagnostics.EventLog.dll", + "lib/net7.0/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.8.0.1.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.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.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Formats.Asn1/8.0.1": { + "sha512": "XqKba7Mm/koKSjKMfW82olQdmfbI5yqeoLV/tidRp7fbh5rmHAQ5raDI/7SU0swTzv+jgqtUGkzmFxuUg0it1A==", + "type": "package", + "path": "system.formats.asn1/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Formats.Asn1.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "lib/net462/System.Formats.Asn1.dll", + "lib/net462/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/net7.0/System.Formats.Asn1.dll", + "lib/net7.0/System.Formats.Asn1.xml", + "lib/net8.0/System.Formats.Asn1.dll", + "lib/net8.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.8.0.1.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "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.IdentityModel.Tokens.Jwt/6.35.0": { + "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.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.IO.FileSystem.AccessControl/5.0.0": { + "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Hashing/6.0.0": { + "sha512": "Rfm2jYCaUeGysFEZjDe7j1R4x6Z6BzumS/vUT5a1AA/AWJuGX71PoGB0RmpyX3VmrGqVnAwtfMn39OHR8Y/5+g==", + "type": "package", + "path": "system.io.hashing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Hashing.dll", + "lib/net461/System.IO.Hashing.xml", + "lib/net6.0/System.IO.Hashing.dll", + "lib/net6.0/System.IO.Hashing.xml", + "lib/netstandard2.0/System.IO.Hashing.dll", + "lib/netstandard2.0/System.IO.Hashing.xml", + "system.io.hashing.6.0.0.nupkg.sha512", + "system.io.hashing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Packaging/8.0.0": { + "sha512": "8g1V4YRpdGAxFcK8v9OjuMdIOJSpF30Zb1JGicwVZhly3I994WFyBdV6mQEo8d3T+URQe55/M0U0eIH0Hts1bg==", + "type": "package", + "path": "system.io.packaging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Packaging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Packaging.targets", + "lib/net462/System.IO.Packaging.dll", + "lib/net462/System.IO.Packaging.xml", + "lib/net6.0/System.IO.Packaging.dll", + "lib/net6.0/System.IO.Packaging.xml", + "lib/net7.0/System.IO.Packaging.dll", + "lib/net7.0/System.IO.Packaging.xml", + "lib/net8.0/System.IO.Packaging.dll", + "lib/net8.0/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.8.0.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/5.0.1": { + "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==", + "type": "package", + "path": "system.io.pipelines/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/netcoreapp3.0/System.IO.Pipelines.dll", + "lib/netcoreapp3.0/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netcoreapp2.0/System.IO.Pipelines.dll", + "ref/netcoreapp2.0/System.IO.Pipelines.xml", + "system.io.pipelines.5.0.1.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Async/6.0.1": { + "sha512": "0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==", + "type": "package", + "path": "system.linq.async/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Logo.png", + "lib/net48/System.Linq.Async.dll", + "lib/net48/System.Linq.Async.xml", + "lib/net6.0/System.Linq.Async.dll", + "lib/net6.0/System.Linq.Async.xml", + "lib/netstandard2.0/System.Linq.Async.dll", + "lib/netstandard2.0/System.Linq.Async.xml", + "lib/netstandard2.1/System.Linq.Async.dll", + "lib/netstandard2.1/System.Linq.Async.xml", + "ref/net48/System.Linq.Async.dll", + "ref/net48/System.Linq.Async.xml", + "ref/net6.0/System.Linq.Async.dll", + "ref/net6.0/System.Linq.Async.xml", + "ref/netstandard2.0/System.Linq.Async.dll", + "ref/netstandard2.0/System.Linq.Async.xml", + "ref/netstandard2.1/System.Linq.Async.dll", + "ref/netstandard2.1/System.Linq.Async.xml", + "system.linq.async.6.0.1.nupkg.sha512", + "system.linq.async.nuspec" + ] + }, + "System.Linq.Dynamic.Core/1.4.6": { + "sha512": "GZJ996kvIKH0nnKysDWy+le7k0Hoq1iSY7S5sNq6AF1bXPQGidaXjiOJNX4VCUuVWpbe28Ygb6mDSwgY+UhHLA==", + "type": "package", + "path": "system.linq.dynamic.core/1.4.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PackageReadme.md", + "lib/net35/System.Linq.Dynamic.Core.dll", + "lib/net35/System.Linq.Dynamic.Core.pdb", + "lib/net35/System.Linq.Dynamic.Core.xml", + "lib/net40/System.Linq.Dynamic.Core.dll", + "lib/net40/System.Linq.Dynamic.Core.pdb", + "lib/net40/System.Linq.Dynamic.Core.xml", + "lib/net45/System.Linq.Dynamic.Core.dll", + "lib/net45/System.Linq.Dynamic.Core.pdb", + "lib/net45/System.Linq.Dynamic.Core.xml", + "lib/net452/System.Linq.Dynamic.Core.dll", + "lib/net452/System.Linq.Dynamic.Core.pdb", + "lib/net452/System.Linq.Dynamic.Core.xml", + "lib/net46/System.Linq.Dynamic.Core.dll", + "lib/net46/System.Linq.Dynamic.Core.pdb", + "lib/net46/System.Linq.Dynamic.Core.xml", + "lib/net5.0/System.Linq.Dynamic.Core.dll", + "lib/net5.0/System.Linq.Dynamic.Core.pdb", + "lib/net5.0/System.Linq.Dynamic.Core.xml", + "lib/net6.0/System.Linq.Dynamic.Core.dll", + "lib/net6.0/System.Linq.Dynamic.Core.pdb", + "lib/net6.0/System.Linq.Dynamic.Core.xml", + "lib/net7.0/System.Linq.Dynamic.Core.dll", + "lib/net7.0/System.Linq.Dynamic.Core.pdb", + "lib/net7.0/System.Linq.Dynamic.Core.xml", + "lib/net8.0/System.Linq.Dynamic.Core.dll", + "lib/net8.0/System.Linq.Dynamic.Core.pdb", + "lib/net8.0/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.xml", + "lib/netstandard1.3/System.Linq.Dynamic.Core.dll", + "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb", + "lib/netstandard1.3/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.0/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.0/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.1/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.1/System.Linq.Dynamic.Core.xml", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml", + "logo.png", + "system.linq.dynamic.core.1.4.6.nupkg.sha512", + "system.linq.dynamic.core.nuspec" + ] + }, + "System.Management/7.0.2": { + "sha512": "/qEUN91mP/MUQmJnM5y5BdT7ZoPuVrtxnFlbJ8a3kBJGhe2wCzBfnPFtK2wTtEEcf3DMGR9J00GZZfg6HRI6yA==", + "type": "package", + "path": "system.management/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "lib/net462/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/net7.0/System.Management.dll", + "lib/net7.0/System.Management.xml", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/net7.0/System.Management.dll", + "runtimes/win/lib/net7.0/System.Management.xml", + "system.management.7.0.2.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory.Data/6.0.0": { + "sha512": "ntFHArH3I4Lpjf5m4DCXQHJuGwWPNVJPaAvM95Jy/u+2Yzt2ryiyIN04LAogkjP9DeRcEOiviAjQotfmPq/FrQ==", + "type": "package", + "path": "system.memory.data/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Memory.Data.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Memory.Data.dll", + "lib/net461/System.Memory.Data.xml", + "lib/net6.0/System.Memory.Data.dll", + "lib/net6.0/System.Memory.Data.xml", + "lib/netstandard2.0/System.Memory.Data.dll", + "lib/netstandard2.0/System.Memory.Data.xml", + "system.memory.data.6.0.0.nupkg.sha512", + "system.memory.data.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Net.NameResolution/4.3.0": { + "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "type": "package", + "path": "system.net.nameresolution/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.3.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.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.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.Metadata/5.0.0": { + "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "type": "package", + "path": "system.reflection.metadata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Reflection.Metadata.dll", + "lib/net461/System.Reflection.Metadata.xml", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.5.0.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "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.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/8.0.0": { + "sha512": "4TmlmvGp4kzZomm7J2HJn6IIx0UUrQyhBDyb5O1XiunZlQImXW+B8b7W/sTPcXhSf9rp5NR5aDtQllwbB5elOQ==", + "type": "package", + "path": "system.runtime.caching/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/net7.0/System.Runtime.Caching.dll", + "lib/net7.0/System.Runtime.Caching.xml", + "lib/net8.0/System.Runtime.Caching.dll", + "lib/net8.0/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net7.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net7.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net8.0/System.Runtime.Caching.xml", + "system.runtime.caching.8.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.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.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "sha512": "ULmp3xoOwNYjOYp4JZ2NK/6NdTgiN1GQXzVVN1njQ7LOZ0d0B9vyMnhyqbIi9Qw4JXj1JgCsitkTShboHRx7Eg==", + "type": "package", + "path": "system.security.cryptography.pkcs/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "lib/net462/System.Security.Cryptography.Pkcs.dll", + "lib/net462/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.8.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "type": "package", + "path": "system.security.cryptography.protecteddata/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Xml/6.0.1": { + "sha512": "5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==", + "type": "package", + "path": "system.security.cryptography.xml/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/net6.0/System.Security.Cryptography.Xml.dll", + "lib/net6.0/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.6.0.1.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Http/8.0.0": { + "sha512": "Qwkoe0F+2e/2LiNwiIgfBTJTw11flv208UwS38ru+GR7nZk2VdGvAE8tqGB0RQIGra73Rux9jKNgfy1XtfXdLg==", + "type": "package", + "path": "system.servicemodel.http/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.ServiceModel.Http.dll", + "lib/net8.0/System.ServiceModel.Http.pdb", + "lib/net8.0/cs/System.ServiceModel.Http.resources.dll", + "lib/net8.0/de/System.ServiceModel.Http.resources.dll", + "lib/net8.0/es/System.ServiceModel.Http.resources.dll", + "lib/net8.0/fr/System.ServiceModel.Http.resources.dll", + "lib/net8.0/it/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ja/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ko/System.ServiceModel.Http.resources.dll", + "lib/net8.0/pl/System.ServiceModel.Http.resources.dll", + "lib/net8.0/pt-BR/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ru/System.ServiceModel.Http.resources.dll", + "lib/net8.0/tr/System.ServiceModel.Http.resources.dll", + "lib/net8.0/zh-Hans/System.ServiceModel.Http.resources.dll", + "lib/net8.0/zh-Hant/System.ServiceModel.Http.resources.dll", + "system.servicemodel.http.8.0.0.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.Primitives/8.0.0": { + "sha512": "hVzK77Bl00H+1V7ho7h03tKlgxAIKssV3eUnRdH+gTCZCK4Ywnv2CR35AV9ly/tRpvsGwNL1d/jkAwB1MWw3Fw==", + "type": "package", + "path": "system.servicemodel.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.ServiceModel.Primitives.dll", + "lib/net8.0/System.ServiceModel.Primitives.pdb", + "lib/net8.0/cs/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/de/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/es/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/fr/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/it/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ja/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ko/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/pl/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/pt-BR/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ru/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/tr/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/zh-Hans/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/zh-Hant/System.ServiceModel.Primitives.resources.dll", + "ref/net8.0/System.ServiceModel.Primitives.dll", + "system.servicemodel.primitives.8.0.0.nupkg.sha512", + "system.servicemodel.primitives.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/4.5.1": { + "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "type": "package", + "path": "system.text.encoding.codepages/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "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/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.5.1.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.10": { + "sha512": "NSB0kDipxn2ychp88NXWfFRFlmi1bst/xynOutbnpEfRCT9JZkZ7KOmF/I/hNKo2dILiMGnqblm+j1sggdLB9g==", + "type": "package", + "path": "system.text.json/6.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.10.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.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" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "WebMarkupMin.AspNet.Common/2.17.0": { + "sha512": "HNMEVKwHnA9eGb7iAsihm9oKK5xTfuWb2bq6J7Gx6CTZSYi9HnYbo+ejzzmlTATRPiD9UqpYqwbecr0i09aJFg==", + "type": "package", + "path": "webmarkupmin.aspnet.common/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net40/WebMarkupMin.AspNet.Common.dll", + "lib/net40/WebMarkupMin.AspNet.Common.xml", + "lib/net45/WebMarkupMin.AspNet.Common.dll", + "lib/net45/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard1.3/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard1.3/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard2.0/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard2.0/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.xml", + "readme.txt", + "webmarkupmin.aspnet.common.2.17.0.nupkg.sha512", + "webmarkupmin.aspnet.common.nuspec" + ] + }, + "WebMarkupMin.AspNetCore8/2.17.0": { + "sha512": "516pUZ5oXqK3FxV5bvX/L/Vor+iyZP7aP4Si6hs5nSIoXtXgz81X+4UTopxx/Wh8+jlYzWXsLC0pVxsKVPqHvw==", + "type": "package", + "path": "webmarkupmin.aspnetcore8/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net8.0/WebMarkupMin.AspNetCore8.dll", + "lib/net8.0/WebMarkupMin.AspNetCore8.xml", + "readme.txt", + "webmarkupmin.aspnetcore8.2.17.0.nupkg.sha512", + "webmarkupmin.aspnetcore8.nuspec" + ] + }, + "WebMarkupMin.Core/2.17.0": { + "sha512": "TKCwf7usSSqKkXzc+rfc11K1GGA5KUnj241ImDRRPvpfgekUsg9FbqZuhqbOCjkEw4WDEKWN6EODPBBtP5g5hA==", + "type": "package", + "path": "webmarkupmin.core/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net40-client/WebMarkupMin.Core.dll", + "lib/net40-client/WebMarkupMin.Core.xml", + "lib/net45/WebMarkupMin.Core.dll", + "lib/net45/WebMarkupMin.Core.xml", + "lib/netstandard1.3/WebMarkupMin.Core.dll", + "lib/netstandard1.3/WebMarkupMin.Core.xml", + "lib/netstandard2.0/WebMarkupMin.Core.dll", + "lib/netstandard2.0/WebMarkupMin.Core.xml", + "lib/netstandard2.1/WebMarkupMin.Core.dll", + "lib/netstandard2.1/WebMarkupMin.Core.xml", + "readme.txt", + "webmarkupmin.core.2.17.0.nupkg.sha512", + "webmarkupmin.core.nuspec" + ] + }, + "WebMarkupMin.NUglify/2.17.0": { + "sha512": "ZS/qge/fL98fsul12z9Q4C24Rbpu9Epw+QQpPoF6ksifWt/3TH2CQWSUV4iDeorQsSlVRUbKfpVor7R2uQK/cA==", + "type": "package", + "path": "webmarkupmin.nuglify/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net40-client/WebMarkupMin.NUglify.dll", + "lib/net40-client/WebMarkupMin.NUglify.xml", + "lib/net45/WebMarkupMin.NUglify.dll", + "lib/net45/WebMarkupMin.NUglify.xml", + "lib/netstandard1.3/WebMarkupMin.NUglify.dll", + "lib/netstandard1.3/WebMarkupMin.NUglify.xml", + "lib/netstandard2.0/WebMarkupMin.NUglify.dll", + "lib/netstandard2.0/WebMarkupMin.NUglify.xml", + "nuglify-license.txt", + "readme.txt", + "webmarkupmin.nuglify.2.17.0.nupkg.sha512", + "webmarkupmin.nuglify.nuspec" + ] + }, + "Nop.Core/4.70.0": { + "type": "project", + "path": "../../Libraries/Nop.Core/Nop.Core.csproj", + "msbuildProject": "../../Libraries/Nop.Core/Nop.Core.csproj" + }, + "Nop.Data/4.70.0": { + "type": "project", + "path": "../../Libraries/Nop.Data/Nop.Data.csproj", + "msbuildProject": "../../Libraries/Nop.Data/Nop.Data.csproj" + }, + "Nop.Services/4.70.0": { + "type": "project", + "path": "../../Libraries/Nop.Services/Nop.Services.csproj", + "msbuildProject": "../../Libraries/Nop.Services/Nop.Services.csproj" + }, + "Nop.Web/4.70.0": { + "type": "project", + "path": "../../Presentation/Nop.Web/Nop.Web.csproj", + "msbuildProject": "../../Presentation/Nop.Web/Nop.Web.csproj" + }, + "Nop.Web.Framework/4.70.0": { + "type": "project", + "path": "../../Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj", + "msbuildProject": "../../Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Nop.Web >= 4.70.0" + ] + }, + "packageFolders": { + "C:\\Users\\Ádám\\.nuget\\packages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Plugins\\Nop.Plugin.Misc.MyTestPlugin1\\Nop.Plugin.Misc.MyTestPlugin1.csproj", + "projectName": "Nop.Plugin.Misc.MyTestPlugin1", + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Plugins\\Nop.Plugin.Misc.MyTestPlugin1\\Nop.Plugin.Misc.MyTestPlugin1.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Plugins\\Nop.Plugin.Misc.MyTestPlugin1\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Presentation\\Nop.Web\\Nop.Web.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/obj/project.nuget.cache b/Nop.Plugin.Misc.MyTestPlugin1/obj/project.nuget.cache new file mode 100644 index 0000000..ec78538 --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/obj/project.nuget.cache @@ -0,0 +1,234 @@ +{ + "version": 2, + "dgSpecHash": "sxeRWjTwVGA=", + "success": true, + "projectFilePath": "D:\\Munka\\MANGOWEB\\LoveBits\\NopSRC\\Plugins\\Nop.Plugin.Misc.MyTestPlugin1\\Nop.Plugin.Misc.MyTestPlugin1.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Ádám\\.nuget\\packages\\advancedstringbuilder\\0.1.1\\advancedstringbuilder.0.1.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\autofac\\8.1.0\\autofac.8.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\autofac.extensions.dependencyinjection\\10.0.0\\autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\automapper\\13.0.1\\automapper.13.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.core\\1.44.1\\azure.core.1.44.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.extensions.aspnetcore.dataprotection.blobs\\1.3.4\\azure.extensions.aspnetcore.dataprotection.blobs.1.3.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.extensions.aspnetcore.dataprotection.keys\\1.2.4\\azure.extensions.aspnetcore.dataprotection.keys.1.2.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.identity\\1.13.0\\azure.identity.1.13.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.security.keyvault.keys\\4.6.0\\azure.security.keyvault.keys.4.6.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.storage.blobs\\12.22.2\\azure.storage.blobs.12.22.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.storage.common\\12.21.1\\azure.storage.common.12.21.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\bouncycastle.cryptography\\2.4.0\\bouncycastle.cryptography.2.4.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\closedxml\\0.104.1\\closedxml.0.104.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\closedxml.parser\\1.2.0\\closedxml.parser.1.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\documentformat.openxml\\3.0.1\\documentformat.openxml.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\documentformat.openxml.framework\\3.0.1\\documentformat.openxml.framework.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\excelnumberformat\\1.1.0\\excelnumberformat.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\excss\\4.2.3\\excss.4.2.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\firebirdsql.data.firebirdclient\\10.0.0\\firebirdsql.data.firebirdclient.10.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator\\5.2.0\\fluentmigrator.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.abstractions\\5.2.0\\fluentmigrator.abstractions.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.mysql\\5.1.0\\fluentmigrator.extensions.mysql.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.oracle\\5.1.0\\fluentmigrator.extensions.oracle.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.postgres\\5.1.0\\fluentmigrator.extensions.postgres.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.snowflake\\5.1.0\\fluentmigrator.extensions.snowflake.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.sqlserver\\5.1.0\\fluentmigrator.extensions.sqlserver.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner\\5.1.0\\fluentmigrator.runner.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.core\\5.1.0\\fluentmigrator.runner.core.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.db2\\5.1.0\\fluentmigrator.runner.db2.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.firebird\\5.1.0\\fluentmigrator.runner.firebird.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.hana\\5.1.0\\fluentmigrator.runner.hana.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.mysql\\5.1.0\\fluentmigrator.runner.mysql.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.oracle\\5.1.0\\fluentmigrator.runner.oracle.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.postgres\\5.1.0\\fluentmigrator.runner.postgres.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.redshift\\5.1.0\\fluentmigrator.runner.redshift.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.snowflake\\5.1.0\\fluentmigrator.runner.snowflake.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.sqlite\\5.1.0\\fluentmigrator.runner.sqlite.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.sqlserver\\5.1.0\\fluentmigrator.runner.sqlserver.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation\\11.5.1\\fluentvalidation.11.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation.aspnetcore\\11.3.0\\fluentvalidation.aspnetcore.11.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\11.5.1\\fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis\\1.68.0\\google.apis.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis.auth\\1.68.0\\google.apis.auth.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis.core\\1.68.0\\google.apis.core.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp\\7.3.0.2\\harfbuzzsharp.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.linux\\7.3.0.2\\harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.macos\\7.3.0.2\\harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.win32\\7.3.0.2\\harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer\\2.14.1\\humanizer.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.af\\2.14.1\\humanizer.core.af.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ar\\2.14.1\\humanizer.core.ar.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.az\\2.14.1\\humanizer.core.az.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.bg\\2.14.1\\humanizer.core.bg.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.bn-bd\\2.14.1\\humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.cs\\2.14.1\\humanizer.core.cs.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.da\\2.14.1\\humanizer.core.da.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.de\\2.14.1\\humanizer.core.de.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.el\\2.14.1\\humanizer.core.el.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.es\\2.14.1\\humanizer.core.es.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fa\\2.14.1\\humanizer.core.fa.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fi-fi\\2.14.1\\humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fr\\2.14.1\\humanizer.core.fr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fr-be\\2.14.1\\humanizer.core.fr-be.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.he\\2.14.1\\humanizer.core.he.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hr\\2.14.1\\humanizer.core.hr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hu\\2.14.1\\humanizer.core.hu.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hy\\2.14.1\\humanizer.core.hy.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.id\\2.14.1\\humanizer.core.id.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.is\\2.14.1\\humanizer.core.is.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.it\\2.14.1\\humanizer.core.it.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ja\\2.14.1\\humanizer.core.ja.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ko-kr\\2.14.1\\humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ku\\2.14.1\\humanizer.core.ku.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.lv\\2.14.1\\humanizer.core.lv.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ms-my\\2.14.1\\humanizer.core.ms-my.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.mt\\2.14.1\\humanizer.core.mt.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nb\\2.14.1\\humanizer.core.nb.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nb-no\\2.14.1\\humanizer.core.nb-no.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nl\\2.14.1\\humanizer.core.nl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.pl\\2.14.1\\humanizer.core.pl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.pt\\2.14.1\\humanizer.core.pt.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ro\\2.14.1\\humanizer.core.ro.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ru\\2.14.1\\humanizer.core.ru.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sk\\2.14.1\\humanizer.core.sk.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sl\\2.14.1\\humanizer.core.sl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sr\\2.14.1\\humanizer.core.sr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sr-latn\\2.14.1\\humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sv\\2.14.1\\humanizer.core.sv.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.th-th\\2.14.1\\humanizer.core.th-th.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.tr\\2.14.1\\humanizer.core.tr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uk\\2.14.1\\humanizer.core.uk.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uz-cyrl-uz\\2.14.1\\humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uz-latn-uz\\2.14.1\\humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.vi\\2.14.1\\humanizer.core.vi.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-cn\\2.14.1\\humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-hans\\2.14.1\\humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-hant\\2.14.1\\humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\ligershark.weboptimizer.core\\3.0.426\\ligershark.weboptimizer.core.3.0.426.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\linq2db\\5.4.1\\linq2db.5.4.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mailkit\\4.8.0\\mailkit.4.8.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\maxmind.db\\4.1.0\\maxmind.db.4.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\maxmind.geoip2\\5.2.0\\maxmind.geoip2.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\3.1.32\\microsoft.aspnetcore.cryptography.internal.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.dataprotection\\3.1.32\\microsoft.aspnetcore.dataprotection.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.dataprotection.abstractions\\3.1.32\\microsoft.aspnetcore.dataprotection.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\8.0.10\\microsoft.aspnetcore.jsonpatch.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\8.0.10\\microsoft.aspnetcore.mvc.newtonsoftjson.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.extensions\\6.0.0\\microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.runtimecompilation\\8.0.10\\microsoft.aspnetcore.mvc.razor.runtimecompilation.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\6.0.0\\microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.0\\microsoft.codeanalysis.common.4.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.0\\microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.razor\\6.0.0\\microsoft.codeanalysis.razor.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.0\\microsoft.data.sqlclient.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.2.0\\microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.sqlserver\\8.0.10\\microsoft.extensions.caching.sqlserver.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.stackexchangeredis\\8.0.10\\microsoft.extensions.caching.stackexchangeredis.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.32\\microsoft.extensions.fileproviders.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.32\\microsoft.extensions.hosting.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.objectpool\\6.0.16\\microsoft.extensions.objectpool.6.0.16.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identity.client\\4.66.1\\microsoft.identity.client.4.66.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.65.0\\microsoft.identity.client.extensions.msal.4.65.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mimekit\\4.8.0\\mimekit.4.8.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mysqlconnector\\2.3.7\\mysqlconnector.2.3.7.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.asyncex.coordination\\5.1.2\\nito.asyncex.coordination.5.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.asyncex.tasks\\5.1.2\\nito.asyncex.tasks.5.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.collections.deque\\1.1.1\\nito.collections.deque.1.1.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.disposables\\2.2.1\\nito.disposables.2.2.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\npgsql\\8.0.5\\npgsql.8.0.5.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nuglify\\1.21.9\\nuglify.1.21.9.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\pipelines.sockets.unofficial\\2.2.8\\pipelines.sockets.unofficial.2.2.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\questpdf\\2024.10.1\\questpdf.2024.10.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\rbush\\3.2.0\\rbush.3.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\shimskiasharp\\2.0.0.1\\shimskiasharp.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\sixlabors.fonts\\1.0.0\\sixlabors.fonts.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp\\2.88.8\\skiasharp.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.harfbuzz\\2.88.8\\skiasharp.harfbuzz.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.linux.nodependencies\\2.88.8\\skiasharp.nativeassets.linux.nodependencies.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.8\\skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.8\\skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\stackexchange.redis\\2.7.27\\stackexchange.redis.2.7.27.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.custom\\2.0.0.1\\svg.custom.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.model\\2.0.0.1\\svg.model.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.skia\\2.0.0.1\\svg.skia.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.clientmodel\\1.1.0\\system.clientmodel.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.codedom\\7.0.0\\system.codedom.7.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.1\\system.configuration.configurationmanager.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.1\\system.diagnostics.eventlog.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.formats.asn1\\8.0.1\\system.formats.asn1.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.filesystem.accesscontrol\\5.0.0\\system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.hashing\\6.0.0\\system.io.hashing.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.packaging\\8.0.0\\system.io.packaging.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.pipelines\\5.0.1\\system.io.pipelines.5.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.async\\6.0.1\\system.linq.async.6.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.dynamic.core\\1.4.6\\system.linq.dynamic.core.1.4.6.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.management\\7.0.2\\system.management.7.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.memory.data\\6.0.0\\system.memory.data.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.caching\\8.0.0\\system.runtime.caching.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.pkcs\\8.0.0\\system.security.cryptography.pkcs.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.xml\\6.0.1\\system.security.cryptography.xml.6.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.servicemodel.http\\8.0.0\\system.servicemodel.http.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.servicemodel.primitives\\8.0.0\\system.servicemodel.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.json\\6.0.10\\system.text.json.6.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.aspnet.common\\2.17.0\\webmarkupmin.aspnet.common.2.17.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.aspnetcore8\\2.17.0\\webmarkupmin.aspnetcore8.2.17.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.core\\2.17.0\\webmarkupmin.core.2.17.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.nuglify\\2.17.0\\webmarkupmin.nuglify.2.17.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.MyTestPlugin1/plugin.json b/Nop.Plugin.Misc.MyTestPlugin1/plugin.json new file mode 100644 index 0000000..1ac2372 --- /dev/null +++ b/Nop.Plugin.Misc.MyTestPlugin1/plugin.json @@ -0,0 +1,13 @@ +{ + "Group": "", + "FriendlyName": "", + "SystemName": "", + "Version": "1.00", + "SupportedVersions": [ + "4.70" + ], + "Author": "Author Name", + "DisplayOrder": 1, + "FileName": "Nop.Plugin.Misc.MyTestPlugin1.dll", + "Description": "" +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/Areas/Admin/Views/_ViewImports.cshtml b/Nop.Plugin.Misc.SignalRApi/Areas/Admin/Views/_ViewImports.cshtml new file mode 100644 index 0000000..270744e --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Areas/Admin/Views/_ViewImports.cshtml @@ -0,0 +1,10 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework + +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Nop.Web.Framework.UI +@using Nop.Web.Framework.Extensions +@using System.Text.Encodings.Web +@using Nop.Services.Events +@using Nop.Web.Framework.Events \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/Components/CustomViewComponent.cs b/Nop.Plugin.Misc.SignalRApi/Components/CustomViewComponent.cs new file mode 100644 index 0000000..4f9778b --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Components/CustomViewComponent.cs @@ -0,0 +1,19 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Web.Framework.Components; + +namespace Nop.Plugin.Misc.SignalRApi.Components +{ + [ViewComponent(Name = "Custom")] + public class CustomViewComponent : NopViewComponent + { + public CustomViewComponent() + { + + } + + public IViewComponentResult Invoke(int productId) + { + throw new NotImplementedException(); + } + } +} diff --git a/Nop.Plugin.Misc.SignalRApi/Controllers/SignalRApiAdminController.cs b/Nop.Plugin.Misc.SignalRApi/Controllers/SignalRApiAdminController.cs new file mode 100644 index 0000000..6676286 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Controllers/SignalRApiAdminController.cs @@ -0,0 +1,38 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Web.Framework.Controllers; +using Nop.Web.Framework.Mvc.Filters; +using Nop.Web.Framework; +using Nop.Plugin.Misc.SignalRApi.Services; +using Nop.Plugin.Misc.SignalRApi.Models; + +[AutoValidateAntiforgeryToken] +[AuthorizeAdmin] +[Area(AreaNames.ADMIN)] +public class SignalRApiAdminController : BasePluginController +{ + private readonly SignalRservice _signalRservice; + + public SignalRApiAdminController(SignalRservice signalRservice) + { + _signalRservice = signalRservice; + } + + public async Task Configure(bool showtour = false) + { + return View("~/Plugins/Misc.SignalRApi/Views/Configure.cshtml", new ConfigurationModel()); + } + + [HttpPost] + public async Task TestHubConnection(string message) + { + try + { + await _signalRservice.TestHub(); + return Json(new { success = true, message = $"Hub successfully called - {message}" }); + } + catch (Exception ex) + { + return Json(new { success = false, message = $"Error: {ex.Message}" }); + } + } +} diff --git a/Nop.Plugin.Misc.SignalRApi/Controllers/SignalRApiController.cs b/Nop.Plugin.Misc.SignalRApi/Controllers/SignalRApiController.cs new file mode 100644 index 0000000..96a0eae --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Controllers/SignalRApiController.cs @@ -0,0 +1,28 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.SignalR; +using Nop.Plugin.Misc.SignalRApi.Hubs; + +namespace Nop.Plugin.Misc.SignalRApi.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class ProductOfferController : ControllerBase + { + private IHubContext mainHub; + public ProductOfferController(IHubContext _mainHub) + { + mainHub = _mainHub; + } + [HttpPost] + [Route("productoffers")] + public string Get() + { + List offers = new List(); + offers.Add("20% Off on IPhone 12"); + offers.Add("15% Off on HP Pavillion"); + offers.Add("25% Off on Samsung Smart TV"); + mainHub.Clients.All.SendOffersToUser(offers); + return "Offers sent successfully to all users!"; + } + } +} diff --git a/Nop.Plugin.Misc.SignalRApi/Domains/CustomTable1.cs b/Nop.Plugin.Misc.SignalRApi/Domains/CustomTable1.cs new file mode 100644 index 0000000..df11b66 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Domains/CustomTable1.cs @@ -0,0 +1,9 @@ +using Nop.Core; + +namespace Nop.Plugin.Misc.SignalRApi.Domains +{ + public partial class CustomTable1 : BaseEntity + { + + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/Hubs/IMainHubClient.cs b/Nop.Plugin.Misc.SignalRApi/Hubs/IMainHubClient.cs new file mode 100644 index 0000000..adaaf1d --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Hubs/IMainHubClient.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Nop.Plugin.Misc.SignalRApi.Hubs +{ + public interface IMainHubClient + { + Task SendOffersToUser(List message); + Task ReceiveMessageFromClient(string message); + } +} diff --git a/Nop.Plugin.Misc.SignalRApi/Hubs/MainHub.cs b/Nop.Plugin.Misc.SignalRApi/Hubs/MainHub.cs new file mode 100644 index 0000000..a596e29 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Hubs/MainHub.cs @@ -0,0 +1,94 @@ +using DocumentFormat.OpenXml.EMMA; +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.SignalR; +using Nop.Core.Domain.Customers; +using Nop.Plugin.Misc.SignalRApi.Services; +using Nop.Services.Customers; +using Nop.Services.Localization; +using Nop.Web.Models.Customer; + +namespace Nop.Plugin.Misc.SignalRApi.Hubs +{ + + public class MainHub : Hub + { + + private readonly SignalRservice _signalRservice; + private readonly CustomerService _customerService; + private readonly CustomerRegistrationService _customerRegistrationService; + private readonly LocalizationService _localizationService; + + public MainHub(SignalRservice signalRservice, CustomerRegistrationService customerRegistrationService, CustomerService customerService, LocalizationService localizationService) + { + _signalRservice = signalRservice; + _customerRegistrationService = customerRegistrationService; + _customerService = customerService; + _localizationService = localizationService; + } + + // Existing method to send offers to clients + public async Task SendOffersToUser(List message) + { + await Clients.All.SendOffersToUser(message); + } + + // New method to handle incoming messages from clients + public async Task ReceiveMessageFromClient(string message) + { + // Broadcast the message received from the client to all clients + Console.Write($"Received message: {message}"); + await Clients.All.SendOffersToUser(new List { message }); + //await _signalRservice.TestHub(); + } + + public async Task ValidateUser(LoginModel loginModel) + { + string result = ""; + Console.Write($"Received login request"); + var returnUrl = "/signalrtest"; + if (loginModel!=null) + { + var customerEmail = loginModel.Email; + + var loginResult = await _customerRegistrationService.ValidateCustomerAsync(customerEmail, loginModel.Password); + switch (loginResult) + { + case CustomerLoginResults.Successful: + { + var customer = await _customerService.GetCustomerByEmailAsync(customerEmail); + + //var valami = await _customerRegistrationService.SignInCustomerAsync(customer, returnUrl, loginModel.RememberMe); + + result = customer.FirstName; + + break; + } + + case CustomerLoginResults.CustomerNotExist: + result = await _localizationService.GetResourceAsync("Account.Login.WrongCredentials.CustomerNotExist"); + break; + case CustomerLoginResults.Deleted: + result = await _localizationService.GetResourceAsync("Account.Login.WrongCredentials.Deleted"); + break; + case CustomerLoginResults.NotActive: + result = await _localizationService.GetResourceAsync("Account.Login.WrongCredentials.NotActive"); + break; + case CustomerLoginResults.NotRegistered: + result = await _localizationService.GetResourceAsync("Account.Login.WrongCredentials.NotRegistered"); + break; + case CustomerLoginResults.LockedOut: + result = await _localizationService.GetResourceAsync("Account.Login.WrongCredentials.LockedOut"); + break; + case CustomerLoginResults.WrongPassword: + default: + result = await _localizationService.GetResourceAsync("Account.Login.WrongCredentials"); + break; + } + } + await Clients.Caller.SendOffersToUser(new List { result }); + } + + } + +} diff --git a/Nop.Plugin.Misc.SignalRApi/Infrastructure/PluginNopStartup.cs b/Nop.Plugin.Misc.SignalRApi/Infrastructure/PluginNopStartup.cs new file mode 100644 index 0000000..7bd7266 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Infrastructure/PluginNopStartup.cs @@ -0,0 +1,58 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Mvc.Razor; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Nop.Core.Infrastructure; +using Nop.Plugin.Misc.SignalRApi.Hubs; +using Nop.Plugin.Misc.SignalRApi.Services; +using Nop.Services.Customers; +using Nop.Services.Localization; + +namespace Nop.Plugin.Misc.SignalRApi.Infrastructure +{ + public class PluginNopStartup : INopStartup + { + ///

+ /// Add and configure any of the middleware + /// + /// Collection of service descriptors + /// Configuration of the application + public void ConfigureServices(IServiceCollection services, IConfiguration configuration) + { + services.Configure(options => + { + options.ViewLocationExpanders.Add(new ViewLocationExpander()); + }); + + //register services and interfaces + //services.AddScoped(); + services.AddSignalR(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + + } + + /// + /// Configure the using of added middleware + /// + /// Builder for configuring an application's request pipeline + public void Configure(IApplicationBuilder application) + { + application.UseEndpoints(endpoints => + { + endpoints.MapHub("/mainHub"); + }); + application.UseCors(options => { + options.AllowAnyMethod().AllowAnyHeader().AllowCredentials().SetIsOriginAllowed((hosts) => true); + }); + + } + + /// + /// Gets order of this startup configuration implementation + /// + public int Order => 3000; + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/Infrastructure/RouteProvider.cs b/Nop.Plugin.Misc.SignalRApi/Infrastructure/RouteProvider.cs new file mode 100644 index 0000000..c1ec284 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Infrastructure/RouteProvider.cs @@ -0,0 +1,35 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Routing; +using Nop.Web.Framework; +using Nop.Web.Framework.Mvc.Routing; + +namespace Nop.Plugin.Misc.SignalRApi.Infrastructure +{ + /// + /// Represents plugin route provider + /// + public class RouteProvider : IRouteProvider + { + /// + /// Register routes + /// + /// Route builder + public void RegisterRoutes(IEndpointRouteBuilder endpointRouteBuilder) + { + endpointRouteBuilder.MapControllerRoute(name: "Plugin.Misc.SignalRapi.Configure", + pattern: "Admin/SignalRApi/Configure", + defaults: new { controller = "SignalRApiAdmin", action = "Configure", area = AreaNames.ADMIN }); + endpointRouteBuilder.MapControllerRoute(name: "Plugin.Misc.SignalRapi.TestHubConnection", + pattern: "Admin/SignalRApi/TestHubConnection", + defaults: new { controller = "SignalRApiAdmin", action = "TestHubConnection", area = AreaNames.ADMIN }); + endpointRouteBuilder.MapControllerRoute(name: "Plugin.Misc.SignalRapi.Hub", + pattern: "SignalRApi/hub", + defaults: new { controller = "SignalRHub", action = "Main" }); + } + + /// + /// Gets a priority of route provider + /// + public int Priority => 0; + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/Infrastructure/ViewLocationExpander.cs b/Nop.Plugin.Misc.SignalRApi/Infrastructure/ViewLocationExpander.cs new file mode 100644 index 0000000..1fda693 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Infrastructure/ViewLocationExpander.cs @@ -0,0 +1,39 @@ +using Microsoft.AspNetCore.Mvc.Razor; + +namespace Nop.Plugin.Misc.SignalRApi.Infrastructure +{ + public class ViewLocationExpander : IViewLocationExpander + { + /// + /// Invoked by a to determine the values that would be consumed by this instance + /// of . The calculated values are used to determine if the view location + /// has changed since the last time it was located. + /// + /// The for the current view location + /// expansion operation. + public void PopulateValues(ViewLocationExpanderContext context) + { + } + + /// + /// Invoked by a to determine potential locations for a view. + /// + /// The for the current view location + /// expansion operation. + /// The sequence of view locations to expand. + /// A list of expanded view locations. + public IEnumerable ExpandViewLocations(ViewLocationExpanderContext context, IEnumerable viewLocations) + { + if (context.AreaName == "Admin") + { + viewLocations = new[] { $"/Plugins/Nop.Plugin.Misc.SignalRApi/Areas/Admin/Views/{context.ControllerName}/{context.ViewName}.cshtml" }.Concat(viewLocations); + } + else + { + viewLocations = new[] { $"/Plugins/Nop.Plugin.Misc.SignalRApi/Views/{context.ControllerName}/{context.ViewName}.cshtml" }.Concat(viewLocations); + } + + return viewLocations; + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/Mapping/Builders/PluginBuilder.cs b/Nop.Plugin.Misc.SignalRApi/Mapping/Builders/PluginBuilder.cs new file mode 100644 index 0000000..f0680a1 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Mapping/Builders/PluginBuilder.cs @@ -0,0 +1,21 @@ +using FluentMigrator.Builders.Create.Table; +using Nop.Data.Mapping.Builders; +using Nop.Plugin.Misc.SignalRApi.Domains; + +namespace Nop.Plugin.Misc.SignalRApi.Mapping.Builders +{ + public class PluginBuilder : NopEntityBuilder + { + #region Methods + + /// + /// Apply entity configuration + /// + /// Create table expression builder + public override void MapEntity(CreateTableExpressionBuilder table) + { + } + + #endregion + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/Mapping/NameCompatibility.cs b/Nop.Plugin.Misc.SignalRApi/Mapping/NameCompatibility.cs new file mode 100644 index 0000000..87fba3c --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Mapping/NameCompatibility.cs @@ -0,0 +1,17 @@ +using Nop.Data.Mapping; + +namespace Nop.Plugin.Misc.SignalRApi.Mapping +{ + public partial class NameCompatibility : INameCompatibility + { + /// + /// Gets table name for mapping with the type + /// + public Dictionary TableNames => new(); + + /// + /// Gets column name for mapping with the entity's property and type + /// + public Dictionary<(Type, string), string> ColumnName => new(); + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/Migrations/SchemaMigration.cs b/Nop.Plugin.Misc.SignalRApi/Migrations/SchemaMigration.cs new file mode 100644 index 0000000..4a9380c --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Migrations/SchemaMigration.cs @@ -0,0 +1,19 @@ +using FluentMigrator; +using Nop.Data.Extensions; +using Nop.Data.Migrations; +using Nop.Plugin.Misc.SignalRApi.Domains; + +namespace Nop.Plugin.Misc.SignalRApi.Migrations +{ + [NopMigration("2024-10-31 21:27:08", "Nop.Plugin.Misc.SignalRApi schema", MigrationProcessType.Installation)] + public class SchemaMigration : AutoReversingMigration + { + /// + /// Collect the UP migration expressions + /// + public override void Up() + { + Create.TableFor(); + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/MiscSignalRApiPlugin.cs b/Nop.Plugin.Misc.SignalRApi/MiscSignalRApiPlugin.cs new file mode 100644 index 0000000..0ca75ef --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/MiscSignalRApiPlugin.cs @@ -0,0 +1,104 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.Infrastructure; +using Microsoft.AspNetCore.Mvc.Routing; +using Microsoft.AspNetCore.Routing; +using Nop.Core.Domain.Media; +using Nop.Services.Common; +using Nop.Services.Configuration; +using Nop.Services.Localization; +using Nop.Services.Plugins; +using Nop.Services.ScheduleTasks; +using Nop.Services.Security; +using Nop.Web.Framework; +using Nop.Web.Framework.Menu; + +namespace Nop.Plugin.Misc.SignalRApi +{ + /// + /// Rename this file and change to the correct type + /// + public class MiscSignalRApiPlugin : BasePlugin, IAdminMenuPlugin, IMiscPlugin + { + protected readonly IActionContextAccessor _actionContextAccessor; + protected readonly IPermissionService _permissionService; + protected readonly ILocalizationService _localizationService; + protected readonly IUrlHelperFactory _urlHelperFactory; + + public MiscSignalRApiPlugin(IActionContextAccessor actionContextAccessor, + ILocalizationService localizationService, + IPermissionService permissionService, + IUrlHelperFactory urlHelperFactory) + { + _actionContextAccessor = actionContextAccessor; + _localizationService = localizationService; + _permissionService = permissionService; + _urlHelperFactory = urlHelperFactory; + } + + public override async Task InstallAsync() + { + //await _settingService.SaveSettingAsync(new PayPalStandardPaymentSettings + //{ + // UseSandbox = true + //}); + + //await _localizationService.AddOrUpdateLocaleResourceAsync(new Dictionary + //{ + // //add custom translation + //}); + await base.InstallAsync(); + } + + public override async Task UninstallAsync() + { + await base.UninstallAsync(); + } + + public async Task ManageSiteMapAsync(SiteMapNode rootNode) + { + if (!await _permissionService.AuthorizeAsync(StandardPermissionProvider.ManagePlugins)) + return; + + var configurationItem = rootNode.ChildNodes.FirstOrDefault(node => node.SystemName.Equals("Configuration")); + if (configurationItem is null) + return; + + var shippingItem = configurationItem.ChildNodes.FirstOrDefault(node => node.SystemName.Equals("Shipping")); + var widgetsItem = configurationItem.ChildNodes.FirstOrDefault(node => node.SystemName.Equals("Widgets")); + if (shippingItem is null && widgetsItem is null) + return; + + var index = shippingItem is not null ? configurationItem.ChildNodes.IndexOf(shippingItem) : -1; + if (index < 0) + index = widgetsItem is not null ? configurationItem.ChildNodes.IndexOf(widgetsItem) : -1; + if (index < 0) + return; + + configurationItem.ChildNodes.Insert(index + 1, new SiteMapNode + { + Visible = true, + SystemName = "API plugins", + Title = await _localizationService.GetResourceAsync("Plugins.Misc.SignalRApi.Menu.Api"), + IconClass = "far fa-dot-circle", + ChildNodes = new List + { + new() + { + Visible = true, + SystemName = PluginDescriptor.SystemName, + Title = PluginDescriptor.FriendlyName, + ControllerName = "SignalRApi", + ActionName = "Configure", + IconClass = "far fa-circle", + RouteValues = new RouteValueDictionary { { "area", AreaNames.ADMIN } } + } + } + }); + } + + public override string GetConfigurationPageUrl() + { + return _urlHelperFactory.GetUrlHelper(_actionContextAccessor.ActionContext).RouteUrl("Plugin.Misc.SignalRApi.Configure"); + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/Models/ConfigurationModel.cs b/Nop.Plugin.Misc.SignalRApi/Models/ConfigurationModel.cs new file mode 100644 index 0000000..278a2f5 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Models/ConfigurationModel.cs @@ -0,0 +1,27 @@ +using System.ComponentModel.DataAnnotations; +using Nop.Web.Framework.Models; +using Nop.Web.Framework.Mvc; +using Nop.Web.Framework.Mvc.ModelBinding; + +namespace Nop.Plugin.Misc.SignalRApi.Models; + +/// +/// Represents a configuration model +/// +public record ConfigurationModel : BaseNopModel +{ + #region Ctor + + public ConfigurationModel() + { + Test = ""; + } + + #endregion + + #region Properties + + public string Test { get; set; } + + #endregion +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/Nop.Plugin.Misc.SignalRApi.csproj b/Nop.Plugin.Misc.SignalRApi/Nop.Plugin.Misc.SignalRApi.csproj new file mode 100644 index 0000000..0781dfd --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Nop.Plugin.Misc.SignalRApi.csproj @@ -0,0 +1,72 @@ + + + + net8.0 + ..\..\..\..\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi + $(OutputPath) + + false + enable + + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + Always + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Nop.Plugin.Misc.SignalRApi/Services/SignalRService.cs b/Nop.Plugin.Misc.SignalRApi/Services/SignalRService.cs new file mode 100644 index 0000000..3b62db9 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Services/SignalRService.cs @@ -0,0 +1,26 @@ +using Microsoft.AspNetCore.SignalR; +using Nop.Plugin.Misc.SignalRApi.Hubs; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Nop.Plugin.Misc.SignalRApi.Services +{ + public class SignalRservice + { + private readonly IHubContext _hubContext; + + public SignalRservice(IHubContext hubContext) + { + _hubContext = hubContext; + } + + public async Task TestHub() + { + // Check if you can access hub context + await _hubContext.Clients.All.SendAsync("TestMessage", "Hello from server"); + } + } +} diff --git a/Nop.Plugin.Misc.SignalRApi/Views/Configure.cshtml b/Nop.Plugin.Misc.SignalRApi/Views/Configure.cshtml new file mode 100644 index 0000000..a2a2e7c --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Views/Configure.cshtml @@ -0,0 +1,110 @@ +@model ConfigurationModel + +@{ + Layout = "_ConfigurePlugin"; + NopHtml.SetActiveMenuItemSystemName("API plugins"); +} + +
+
+
+ +
+ TITLE comes here +
+ +
+
+
+
+ +
+
+
+
@Model.Test
+
+
+ + + +
+
+ +
+
+ +
+
+ +
+
+ + +
+
+
+
+
+
+
+
+
+ + + + diff --git a/Nop.Plugin.Misc.SignalRApi/Views/_ViewImports.cshtml b/Nop.Plugin.Misc.SignalRApi/Views/_ViewImports.cshtml new file mode 100644 index 0000000..5ab6b6c --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/Views/_ViewImports.cshtml @@ -0,0 +1,27 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework + +@inject INopHtmlHelper NopHtml + +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Microsoft.AspNetCore.Mvc +@using System.Text.Encodings.Web +@using Nop.Core +@using Nop.Core.Infrastructure +@using Nop.Core.Domain.Catalog +@using Nop.Web.Areas.Admin.Models.Catalog +@using Nop.Web.Extensions +@using Nop.Web.Framework +@using Nop.Web.Framework.Extensions +@using Nop.Web.Framework.Infrastructure +@using Nop.Web.Framework.Models +@using Nop.Web.Framework.Models.DataTables +@using Nop.Web.Framework.Security.Captcha +@using Nop.Web.Framework.Security.Honeypot +@using Nop.Web.Framework.Themes +@using Nop.Web.Framework.UI +@using Nop.Plugin.Misc.SignalRApi +@using Nop.Plugin.Misc.SignalRApi.Models +@using Nop.Plugin.Misc.SignalRApi.Services +@using Nop.Plugin.Misc.SignalRApi.Hubs \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/logo.jpg b/Nop.Plugin.Misc.SignalRApi/logo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cae3ce3f17ad9ee8604dab7af6726378985e81ae GIT binary patch literal 3118 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 +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plug.69C19CFB.Up2Date b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plug.69C19CFB.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfo.cs b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfo.cs new file mode 100644 index 0000000..a9c8f05 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Nop.Plugin.Misc.SignalRApi")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Nop.Plugin.Misc.SignalRApi")] +[assembly: System.Reflection.AssemblyTitleAttribute("Nop.Plugin.Misc.SignalRApi")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfoInputs.cache b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f8f711a --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +026479745d5c9bd84249d084e1e2e65424d4f228211d0fbc2a5e0ae6f7a8714b diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.GeneratedMSBuildEditorConfig.editorconfig b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a7c3001 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.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 = Nop.Plugin.Misc.SignalRApi +build_property.ProjectDir = D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.GlobalUsings.g.cs b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.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/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.assets.cache b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..46235d2c9890aa93f8d990cbb906b2225ab02e1d GIT binary patch literal 136407 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 bz{!DnrYVa1(FdNh@18{un8c3EZo~fvlsdkN literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.AssemblyReference.cache b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..21a20f8a757231f39a6d949400cd65e98d676a87 GIT binary patch literal 69480 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.BuildWithSkipAnalyzers b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.CoreCompileInputs.cache b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..59f430e --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +65b2fe020fc3751d0c6e62f8a21ad741d9d38e80a46d77aab6bdf868e57bf357 diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.FileListAbsolute.txt b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..fe674e9 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.csproj.FileListAbsolute.txt @@ -0,0 +1,1346 @@ +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\Nop.Web.deps.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\Nop.Web.runtimeconfig.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\Nop.Web.runtimeconfig.dev.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\Nop.Web.staticwebassets.runtime.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\Nop.Web.exe +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\logo.jpg +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\plugin.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\Areas\Admin\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-Black.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-BlackItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-Bold.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-BoldItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-ExtraBold.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-ExtraBoldItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-ExtraLight.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-ExtraLightItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-Italic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-Light.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-LightItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-Medium.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-MediumItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-Regular.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-SemiBold.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-SemiBoldItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-Thin.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\Lato-ThinItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\LatoFont\OFL.txt +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\Views\Configure.cshtml +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\Nop.Plugin.Misc.SignalRApi.deps.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\Nop.Plugin.Misc.SignalRApi.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\Nop.Plugin.Misc.SignalRApi.pdb +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Authorization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Endpoints.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Cors.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Hosting.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Results.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.HttpLogging.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Identity.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Localization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Metadata.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.OutputCaching.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.RateLimiting.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Razor.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.RequestDecompression.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Routing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.Session.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.CSharp.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Caching.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Caching.Memory.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Binder.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.CommandLine.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.DependencyInjection.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Features.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Composite.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Physical.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.FileSystemGlobbing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Hosting.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Http.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Identity.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Localization.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Localization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Logging.Console.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Logging.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.ObjectPool.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Options.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Extensions.WebEncoders.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.JSInterop.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Net.Http.Headers.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.VisualBasic.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.VisualBasic.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Win32.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\Microsoft.Win32.Registry.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\mscorlib.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\netstandard.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.AppContext.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Buffers.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Collections.Concurrent.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Collections.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Collections.Immutable.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Collections.NonGeneric.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Collections.Specialized.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.ComponentModel.Annotations.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.ComponentModel.DataAnnotations.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.ComponentModel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.ComponentModel.EventBasedAsync.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.ComponentModel.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.ComponentModel.TypeConverter.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Configuration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Console.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Data.Common.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Data.DataSetExtensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Data.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Diagnostics.Contracts.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Diagnostics.Debug.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Diagnostics.DiagnosticSource.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Diagnostics.FileVersionInfo.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Diagnostics.Process.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Diagnostics.StackTrace.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Diagnostics.Tools.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Diagnostics.TraceSource.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Diagnostics.Tracing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Drawing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Drawing.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Dynamic.Runtime.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Formats.Tar.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Globalization.Calendars.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Globalization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Globalization.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.Compression.Brotli.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.Compression.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.Compression.FileSystem.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.Compression.ZipFile.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.FileSystem.AccessControl.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.FileSystem.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.FileSystem.DriveInfo.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.FileSystem.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.FileSystem.Watcher.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.IsolatedStorage.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.MemoryMappedFiles.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.Pipelines.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.Pipes.AccessControl.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.Pipes.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.IO.UnmanagedMemoryStream.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Linq.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Linq.Expressions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Linq.Parallel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Linq.Queryable.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Memory.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.Http.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.Http.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.HttpListener.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.Mail.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.NameResolution.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.NetworkInformation.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.Ping.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.Quic.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.Requests.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.Security.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.ServicePoint.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.Sockets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.WebClient.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.WebHeaderCollection.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.WebProxy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.WebSockets.Client.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Net.WebSockets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Numerics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Numerics.Vectors.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.ObjectModel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Reflection.DispatchProxy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Reflection.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Reflection.Emit.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Reflection.Emit.ILGeneration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Reflection.Emit.Lightweight.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Reflection.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Reflection.Metadata.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Reflection.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Reflection.TypeExtensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Resources.Reader.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Resources.ResourceManager.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Resources.Writer.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.Handles.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.InteropServices.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.InteropServices.JavaScript.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.Intrinsics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.Loader.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.Numerics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.Serialization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.Serialization.Formatters.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.Serialization.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.Serialization.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Runtime.Serialization.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.AccessControl.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.Claims.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.Cryptography.Algorithms.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.Cryptography.Cng.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.Cryptography.Csp.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.Cryptography.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.Cryptography.Encoding.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.Cryptography.OpenSsl.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.Cryptography.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.Cryptography.X509Certificates.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.Cryptography.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.Principal.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.Principal.Windows.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Security.SecureString.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.ServiceModel.Web.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.ServiceProcess.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Text.Encoding.CodePages.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Text.Encoding.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Text.Encoding.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Text.Encodings.Web.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Text.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Text.RegularExpressions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Threading.Channels.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Threading.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Threading.Overlapped.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Threading.RateLimiting.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Threading.Tasks.Dataflow.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Threading.Tasks.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Threading.Tasks.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Threading.Tasks.Parallel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Threading.Thread.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Threading.ThreadPool.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Threading.Timer.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Transactions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Transactions.Local.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.ValueTuple.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Web.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Web.HttpUtility.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Windows.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Xml.Linq.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Xml.ReaderWriter.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Xml.Serialization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Xml.XDocument.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Xml.XmlDocument.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Xml.XmlSerializer.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Xml.XPath.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\System.Xml.XPath.XDocument.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.SignalRApi\refs\WindowsBase.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.csproj.AssemblyReference.cache +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.GeneratedMSBuildEditorConfig.editorconfig +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.AssemblyInfoInputs.cache +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.AssemblyInfo.cs +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.csproj.CoreCompileInputs.cache +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plug.69C19CFB.Up2Date +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\refint\Nop.Plugin.Misc.SignalRApi.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.pdb +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\ref\Nop.Plugin.Misc.SignalRApi.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\logo.jpg +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\plugin.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Areas\Admin\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Black.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-BlackItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Bold.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-BoldItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ExtraBold.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ExtraBoldItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ExtraLight.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ExtraLightItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Italic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Light.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-LightItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Medium.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-MediumItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Regular.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-SemiBold.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-SemiBoldItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Thin.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ThinItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\OFL.txt +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.deps.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.runtimeconfig.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.runtimeconfig.dev.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.staticwebassets.runtime.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.exe +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Views\Configure.cshtml +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Plugin.Misc.SignalRApi.deps.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Plugin.Misc.SignalRApi.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Plugin.Misc.SignalRApi.pdb +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authorization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Endpoints.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Cors.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Hosting.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Results.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.HttpLogging.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Identity.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Localization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Metadata.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.OutputCaching.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.RateLimiting.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Razor.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.RequestDecompression.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Routing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Session.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.CSharp.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Caching.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Caching.Memory.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Binder.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.CommandLine.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.DependencyInjection.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Features.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Composite.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Physical.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileSystemGlobbing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Hosting.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Http.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Identity.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Localization.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Localization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.Console.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.ObjectPool.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Options.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.WebEncoders.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.JSInterop.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Net.Http.Headers.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.VisualBasic.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.VisualBasic.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Win32.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Win32.Registry.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\mscorlib.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\netstandard.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.AppContext.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Buffers.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.Concurrent.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.Immutable.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.NonGeneric.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.Specialized.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.Annotations.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.DataAnnotations.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.EventBasedAsync.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.TypeConverter.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Configuration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Console.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Data.Common.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Data.DataSetExtensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Data.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Contracts.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Debug.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.DiagnosticSource.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.FileVersionInfo.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Process.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.StackTrace.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Tools.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.TraceSource.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Tracing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Drawing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Drawing.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Dynamic.Runtime.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Formats.Tar.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Globalization.Calendars.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Globalization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Globalization.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Compression.Brotli.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Compression.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Compression.FileSystem.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Compression.ZipFile.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.AccessControl.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.DriveInfo.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.Watcher.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.IsolatedStorage.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.MemoryMappedFiles.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Pipelines.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Pipes.AccessControl.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Pipes.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.UnmanagedMemoryStream.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Linq.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Linq.Expressions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Linq.Parallel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Linq.Queryable.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Memory.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Http.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Http.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.HttpListener.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Mail.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.NameResolution.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.NetworkInformation.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Ping.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Quic.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Requests.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Security.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.ServicePoint.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Sockets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebClient.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebHeaderCollection.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebProxy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebSockets.Client.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebSockets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Numerics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Numerics.Vectors.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ObjectModel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.DispatchProxy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Emit.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Emit.ILGeneration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Emit.Lightweight.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Metadata.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.TypeExtensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Resources.Reader.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Resources.ResourceManager.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Resources.Writer.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Handles.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.InteropServices.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.InteropServices.JavaScript.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Intrinsics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Loader.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Numerics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.Formatters.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.AccessControl.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Claims.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Algorithms.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Cng.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Csp.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Encoding.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.OpenSsl.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.X509Certificates.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Principal.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Principal.Windows.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.SecureString.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ServiceModel.Web.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ServiceProcess.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Encoding.CodePages.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Encoding.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Encoding.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Encodings.Web.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.RegularExpressions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Channels.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Overlapped.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.RateLimiting.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Tasks.Dataflow.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Tasks.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Tasks.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Tasks.Parallel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Thread.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.ThreadPool.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Timer.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Transactions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Transactions.Local.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ValueTuple.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Web.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Web.HttpUtility.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Windows.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.Linq.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.ReaderWriter.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.Serialization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XDocument.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XmlDocument.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XmlSerializer.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XPath.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XPath.XDocument.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\WindowsBase.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.deps.json +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.runtimeconfig.json +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.runtimeconfig.dev.json +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.staticwebassets.runtime.json +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.exe +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\logo.jpg +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\plugin.json +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Views\_ViewImports.cshtml +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Areas\Admin\Views\_ViewImports.cshtml +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Black.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-BlackItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Bold.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-BoldItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ExtraBold.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ExtraBoldItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ExtraLight.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ExtraLightItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Italic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Light.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-LightItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Medium.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-MediumItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Regular.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-SemiBold.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-SemiBoldItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Thin.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ThinItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\OFL.txt +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Views\Configure.cshtml +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Plugin.Misc.SignalRApi.deps.json +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Plugin.Misc.SignalRApi.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Plugin.Misc.SignalRApi.pdb +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Antiforgery.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authorization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authorization.Policy.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Authorization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Endpoints.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Forms.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Server.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Web.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.CookiePolicy.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Cors.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.DataProtection.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Diagnostics.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.HostFiltering.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Hosting.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Html.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Connections.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Features.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Results.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.HttpLogging.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.HttpOverrides.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.HttpsPolicy.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Identity.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Localization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Localization.Routing.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Metadata.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Cors.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Localization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Razor.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.OutputCaching.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.RateLimiting.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Razor.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Razor.Runtime.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.RequestDecompression.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.ResponseCaching.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.ResponseCompression.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Rewrite.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Routing.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.HttpSys.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.IIS.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Session.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.Common.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.StaticFiles.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.WebSockets.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.WebUtilities.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.CSharp.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Caching.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Caching.Memory.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Binder.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.CommandLine.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Ini.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Json.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Xml.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.DependencyInjection.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Features.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Composite.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Embedded.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Physical.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileSystemGlobbing.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Hosting.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Hosting.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Http.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Identity.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Identity.Stores.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Localization.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Localization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.Configuration.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.Console.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.Debug.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.EventLog.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.EventSource.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.TraceSource.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.ObjectPool.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Options.DataAnnotations.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Options.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.WebEncoders.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.JSInterop.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Net.Http.Headers.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.VisualBasic.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.VisualBasic.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Win32.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Win32.Registry.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\mscorlib.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\netstandard.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.AppContext.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Buffers.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.Concurrent.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.Immutable.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.NonGeneric.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.Specialized.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.Annotations.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.DataAnnotations.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.EventBasedAsync.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.TypeConverter.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Configuration.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Console.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Data.Common.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Data.DataSetExtensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Data.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Contracts.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Debug.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.DiagnosticSource.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.FileVersionInfo.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Process.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.StackTrace.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.TextWriterTraceListener.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Tools.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.TraceSource.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Tracing.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Drawing.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Drawing.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Dynamic.Runtime.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Formats.Tar.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Globalization.Calendars.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Globalization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Globalization.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Compression.Brotli.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Compression.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Compression.FileSystem.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Compression.ZipFile.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.AccessControl.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.DriveInfo.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.Watcher.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.IsolatedStorage.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.MemoryMappedFiles.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Pipelines.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Pipes.AccessControl.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Pipes.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.UnmanagedMemoryStream.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Linq.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Linq.Expressions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Linq.Parallel.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Linq.Queryable.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Memory.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Http.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Http.Json.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.HttpListener.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Mail.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.NameResolution.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.NetworkInformation.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Ping.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Quic.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Requests.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Security.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.ServicePoint.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Sockets.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebClient.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebHeaderCollection.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebProxy.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebSockets.Client.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebSockets.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Numerics.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Numerics.Vectors.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ObjectModel.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.DispatchProxy.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Emit.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Emit.ILGeneration.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Emit.Lightweight.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Metadata.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.TypeExtensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Resources.Reader.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Resources.ResourceManager.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Resources.Writer.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.CompilerServices.Unsafe.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.CompilerServices.VisualC.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Handles.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.InteropServices.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.InteropServices.JavaScript.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.InteropServices.RuntimeInformation.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Intrinsics.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Loader.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Numerics.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.Formatters.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.Json.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.Xml.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.AccessControl.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Claims.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Algorithms.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Cng.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Csp.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Encoding.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.OpenSsl.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.X509Certificates.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Xml.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Principal.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Principal.Windows.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.SecureString.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ServiceModel.Web.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ServiceProcess.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Encoding.CodePages.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Encoding.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Encoding.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Encodings.Web.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Json.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.RegularExpressions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Channels.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Overlapped.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.RateLimiting.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Tasks.Dataflow.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Tasks.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Tasks.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Tasks.Parallel.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Thread.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.ThreadPool.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Timer.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Transactions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Transactions.Local.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ValueTuple.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Web.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Web.HttpUtility.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Windows.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.Linq.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.ReaderWriter.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.Serialization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XDocument.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XmlDocument.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XmlSerializer.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XPath.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XPath.XDocument.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\WindowsBase.dll +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.csproj.AssemblyReference.cache +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.GeneratedMSBuildEditorConfig.editorconfig +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.AssemblyInfoInputs.cache +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.AssemblyInfo.cs +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.csproj.CoreCompileInputs.cache +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plug.69C19CFB.Up2Date +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.dll +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\refint\Nop.Plugin.Misc.SignalRApi.dll +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.pdb +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\ref\Nop.Plugin.Misc.SignalRApi.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.deps.json +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.runtimeconfig.json +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.runtimeconfig.dev.json +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.staticwebassets.runtime.json +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Web.exe +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\logo.jpg +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\plugin.json +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Views\_ViewImports.cshtml +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Areas\Admin\Views\_ViewImports.cshtml +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Black.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-BlackItalic.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Bold.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-BoldItalic.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ExtraBold.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ExtraBoldItalic.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ExtraLight.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ExtraLightItalic.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Italic.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Light.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-LightItalic.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Medium.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-MediumItalic.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Regular.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-SemiBold.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-SemiBoldItalic.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-Thin.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\Lato-ThinItalic.ttf +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\LatoFont\OFL.txt +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Views\Configure.cshtml +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Plugin.Misc.SignalRApi.deps.json +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Plugin.Misc.SignalRApi.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\Nop.Plugin.Misc.SignalRApi.pdb +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authorization.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Endpoints.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Server.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Components.Web.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Cors.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.DataProtection.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Hosting.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Features.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Http.Results.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.HttpLogging.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Identity.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Localization.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Metadata.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.OutputCaching.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.RateLimiting.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Razor.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.RequestDecompression.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Rewrite.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Routing.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.Session.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.WebSockets.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.CSharp.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Caching.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Caching.Memory.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Binder.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.CommandLine.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Json.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.DependencyInjection.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Features.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Composite.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileProviders.Physical.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.FileSystemGlobbing.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Hosting.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Hosting.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Http.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Identity.Core.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Identity.Stores.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Localization.Abstractions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Localization.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.Console.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.Debug.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.ObjectPool.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Options.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.Primitives.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Extensions.WebEncoders.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.JSInterop.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Net.Http.Headers.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.VisualBasic.Core.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.VisualBasic.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Win32.Primitives.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\Microsoft.Win32.Registry.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\mscorlib.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\netstandard.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.AppContext.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Buffers.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.Concurrent.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.Immutable.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.NonGeneric.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Collections.Specialized.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.Annotations.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.DataAnnotations.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.EventBasedAsync.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.Primitives.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ComponentModel.TypeConverter.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Configuration.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Console.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Core.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Data.Common.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Data.DataSetExtensions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Data.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Contracts.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Debug.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.DiagnosticSource.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.FileVersionInfo.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Process.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.StackTrace.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Tools.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.TraceSource.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Diagnostics.Tracing.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Drawing.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Drawing.Primitives.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Dynamic.Runtime.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Formats.Tar.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Globalization.Calendars.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Globalization.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Globalization.Extensions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Compression.Brotli.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Compression.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Compression.FileSystem.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Compression.ZipFile.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.AccessControl.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.DriveInfo.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.Primitives.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.FileSystem.Watcher.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.IsolatedStorage.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.MemoryMappedFiles.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Pipelines.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Pipes.AccessControl.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.Pipes.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.IO.UnmanagedMemoryStream.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Linq.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Linq.Expressions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Linq.Parallel.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Linq.Queryable.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Memory.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Http.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Http.Json.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.HttpListener.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Mail.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.NameResolution.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.NetworkInformation.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Ping.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Primitives.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Quic.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Requests.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Security.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.ServicePoint.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.Sockets.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebClient.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebHeaderCollection.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebProxy.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebSockets.Client.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Net.WebSockets.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Numerics.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Numerics.Vectors.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ObjectModel.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.DispatchProxy.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Emit.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Emit.ILGeneration.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Emit.Lightweight.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Extensions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Metadata.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.Primitives.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Reflection.TypeExtensions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Resources.Reader.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Resources.ResourceManager.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Resources.Writer.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.CompilerServices.VisualC.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Extensions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Handles.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.InteropServices.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.InteropServices.JavaScript.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Intrinsics.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Loader.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Numerics.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.Formatters.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.Json.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.Primitives.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Runtime.Serialization.Xml.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.AccessControl.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Claims.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Algorithms.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Cng.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Csp.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Encoding.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.OpenSsl.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Primitives.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.X509Certificates.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Cryptography.Xml.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Principal.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.Principal.Windows.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Security.SecureString.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ServiceModel.Web.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ServiceProcess.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Encoding.CodePages.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Encoding.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Encoding.Extensions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Encodings.Web.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.Json.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Text.RegularExpressions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Channels.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Overlapped.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.RateLimiting.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Tasks.Dataflow.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Tasks.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Tasks.Extensions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Tasks.Parallel.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Thread.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.ThreadPool.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Threading.Timer.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Transactions.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Transactions.Local.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.ValueTuple.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Web.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Web.HttpUtility.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Windows.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.Linq.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.ReaderWriter.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.Serialization.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XDocument.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XmlDocument.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XmlSerializer.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XPath.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\System.Xml.XPath.XDocument.dll +D:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.SignalRApi\refs\WindowsBase.dll +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.csproj.AssemblyReference.cache +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.GeneratedMSBuildEditorConfig.editorconfig +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.AssemblyInfoInputs.cache +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.AssemblyInfo.cs +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.csproj.CoreCompileInputs.cache +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plug.69C19CFB.Up2Date +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.dll +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\refint\Nop.Plugin.Misc.SignalRApi.dll +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\Nop.Plugin.Misc.SignalRApi.pdb +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.SignalRApi\obj\Debug\net8.0\ref\Nop.Plugin.Misc.SignalRApi.dll diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.dll b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/Nop.Plugin.Misc.SignalRApi.dll new file mode 100644 index 0000000000000000000000000000000000000000..9a32f83faca5fa8d132a75daf2d2a1f6cd4c097f GIT binary patch literal 30208 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/ref/Nop.Plugin.Misc.SignalRApi.dll b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/ref/Nop.Plugin.Misc.SignalRApi.dll new file mode 100644 index 0000000000000000000000000000000000000000..a914f1924328de31fd13405207227fbb00854104 GIT binary patch literal 13824 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 G!2bX~J#fqb literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/refint/Nop.Plugin.Misc.SignalRApi.dll b/Nop.Plugin.Misc.SignalRApi/obj/Debug/net8.0/refint/Nop.Plugin.Misc.SignalRApi.dll new file mode 100644 index 0000000000000000000000000000000000000000..a914f1924328de31fd13405207227fbb00854104 GIT binary patch literal 13824 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 G!2bX~J#fqb literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Nop.Plugin.Misc.SignalRApi.csproj.nuget.dgspec.json b/Nop.Plugin.Misc.SignalRApi/obj/Nop.Plugin.Misc.SignalRApi.csproj.nuget.dgspec.json new file mode 100644 index 0000000..0605944 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/obj/Nop.Plugin.Misc.SignalRApi.csproj.nuget.dgspec.json @@ -0,0 +1,617 @@ +{ + "format": 1, + "restore": { + "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.SignalRApi\\Nop.Plugin.Misc.SignalRApi.csproj": {} + }, + "projects": { + "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.SignalRApi\\Nop.Plugin.Misc.SignalRApi.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.SignalRApi\\Nop.Plugin.Misc.SignalRApi.csproj", + "projectName": "Nop.Plugin.Misc.SignalRApi", + "projectPath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.SignalRApi\\Nop.Plugin.Misc.SignalRApi.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.SignalRApi\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj", + "projectName": "Nop.Core", + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[13.0.1, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs": { + "target": "Package", + "version": "[1.3.4, )" + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys": { + "target": "Package", + "version": "[1.2.4, )" + }, + "Azure.Identity": { + "target": "Package", + "version": "[1.13.0, )" + }, + "Humanizer": { + "target": "Package", + "version": "[2.14.1, )" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.Extensions.Caching.SqlServer": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.Extensions.Caching.StackExchangeRedis": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Nito.AsyncEx.Coordination": { + "target": "Package", + "version": "[5.1.2, )" + }, + "System.IO.FileSystem.AccessControl": { + "target": "Package", + "version": "[5.0.0, )" + }, + "System.Linq.Async": { + "target": "Package", + "version": "[6.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj", + "projectName": "Nop.Data", + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentMigrator": { + "target": "Package", + "version": "[5.2.0, )" + }, + "FluentMigrator.Runner": { + "target": "Package", + "version": "[5.1.0, )" + }, + "Microsoft.Data.SqlClient": { + "target": "Package", + "version": "[5.2.0, )" + }, + "MySqlConnector": { + "target": "Package", + "version": "[2.3.7, )" + }, + "Npgsql": { + "target": "Package", + "version": "[8.0.5, )" + }, + "System.Configuration.ConfigurationManager": { + "target": "Package", + "version": "[8.0.1, )" + }, + "System.Net.NameResolution": { + "target": "Package", + "version": "[4.3.0, )" + }, + "linq2db": { + "target": "Package", + "version": "[5.4.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj", + "projectName": "Nop.Services", + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Azure.Storage.Blobs": { + "target": "Package", + "version": "[12.22.2, )" + }, + "ClosedXML": { + "target": "Package", + "version": "[0.104.1, )" + }, + "Google.Apis.Auth": { + "target": "Package", + "version": "[1.68.0, )" + }, + "HarfBuzzSharp.NativeAssets.Linux": { + "target": "Package", + "version": "[7.3.0.2, )" + }, + "MailKit": { + "target": "Package", + "version": "[4.8.0, )" + }, + "MaxMind.GeoIP2": { + "target": "Package", + "version": "[5.2.0, )" + }, + "Microsoft.Identity.Client": { + "target": "Package", + "version": "[4.66.1, )" + }, + "QuestPDF": { + "target": "Package", + "version": "[2024.10.1, )" + }, + "SkiaSharp": { + "target": "Package", + "version": "[2.88.8, )" + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies": { + "target": "Package", + "version": "[2.88.8, )" + }, + "Svg.Skia": { + "target": "Package", + "version": "[2.0.0.1, )" + }, + "System.Linq.Dynamic.Core": { + "target": "Package", + "version": "[1.4.6, )" + }, + "System.ServiceModel.Http": { + "target": "Package", + "version": "[8.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj", + "projectName": "Nop.Web.Framework", + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web.Framework\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj" + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentValidation.AspNetCore": { + "target": "Package", + "version": "[11.3.0, )" + }, + "LigerShark.WebOptimizer.Core": { + "target": "Package", + "version": "[3.0.426, )" + }, + "WebMarkupMin.AspNetCore8": { + "target": "Package", + "version": "[2.17.0, )" + }, + "WebMarkupMin.NUglify": { + "target": "Package", + "version": "[2.17.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj", + "projectName": "Nop.Web", + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Data\\Nop.Data.csproj" + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Libraries\\Nop.Services\\Nop.Services.csproj" + }, + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Nop.Plugin.Misc.SignalRApi.csproj.nuget.g.props b/Nop.Plugin.Misc.SignalRApi/obj/Nop.Plugin.Misc.SignalRApi.csproj.nuget.g.props new file mode 100644 index 0000000..654d59e --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/obj/Nop.Plugin.Misc.SignalRApi.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Ádám\.nuget\packages\;C:\Program Files\DevExpress 24.1\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.10.1 + + + + + + + + C:\Users\Ádám\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 + + \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/obj/Nop.Plugin.Misc.SignalRApi.csproj.nuget.g.targets b/Nop.Plugin.Misc.SignalRApi/obj/Nop.Plugin.Misc.SignalRApi.csproj.nuget.g.targets new file mode 100644 index 0000000..dfc75fc --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/obj/Nop.Plugin.Misc.SignalRApi.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/obj/project.assets.json b/Nop.Plugin.Misc.SignalRApi/obj/project.assets.json new file mode 100644 index 0000000..85192d9 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/obj/project.assets.json @@ -0,0 +1,10145 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "AdvancedStringBuilder/0.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "related": ".xml" + } + } + }, + "Autofac/8.1.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + } + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Autofac": "8.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "AutoMapper/13.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + } + }, + "Azure.Core/1.44.1": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "System.ClientModel": "1.1.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "6.0.0", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "6.0.10", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.3.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.38.0", + "Azure.Storage.Blobs": "12.16.0", + "Microsoft.AspNetCore.DataProtection": "3.1.32" + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "related": ".xml" + } + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.2.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.42.0", + "Azure.Security.KeyVault.Keys": "4.6.0", + "Microsoft.AspNetCore.DataProtection": "3.1.32" + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "related": ".xml" + } + } + }, + "Azure.Identity/1.13.0": { + "type": "package", + "dependencies": { + "Azure.Core": "1.44.1", + "Microsoft.Identity.Client": "4.65.0", + "Microsoft.Identity.Client.Extensions.Msal": "4.65.0", + "System.Memory": "4.5.5", + "System.Text.Json": "6.0.10", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + } + }, + "Azure.Security.KeyVault.Keys/4.6.0": { + "type": "package", + "dependencies": { + "Azure.Core": "1.37.0", + "System.Memory": "4.5.4", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "related": ".xml" + } + } + }, + "Azure.Storage.Blobs/12.22.2": { + "type": "package", + "dependencies": { + "Azure.Storage.Common": "12.21.1", + "System.Text.Json": "6.0.10" + }, + "compile": { + "lib/net6.0/Azure.Storage.Blobs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Storage.Blobs.dll": { + "related": ".xml" + } + } + }, + "Azure.Storage.Common/12.21.1": { + "type": "package", + "dependencies": { + "Azure.Core": "1.44.1", + "System.IO.Hashing": "6.0.0" + }, + "compile": { + "lib/net6.0/Azure.Storage.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Storage.Common.dll": { + "related": ".xml" + } + } + }, + "BouncyCastle.Cryptography/2.4.0": { + "type": "package", + "compile": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + } + }, + "ClosedXML/0.104.1": { + "type": "package", + "dependencies": { + "ClosedXML.Parser": "[1.2.0, 2.0.0)", + "DocumentFormat.OpenXml": "[3.0.1, 4.0.0)", + "ExcelNumberFormat": "1.1.0", + "RBush": "3.2.0", + "SixLabors.Fonts": "1.0.0", + "System.IO.Packaging": "8.0.0" + }, + "compile": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".pdb;.xml" + } + } + }, + "ClosedXML.Parser/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/ClosedXML.Parser.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.Parser.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml/3.0.1": { + "type": "package", + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.0.1" + }, + "compile": { + "lib/net8.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.0.1": { + "type": "package", + "dependencies": { + "System.IO.Packaging": "8.0.0" + }, + "compile": { + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + } + }, + "ExcelNumberFormat/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + } + }, + "ExCSS/4.2.3": { + "type": "package", + "compile": { + "lib/net7.0/ExCSS.dll": {} + }, + "runtime": { + "lib/net7.0/ExCSS.dll": {} + } + }, + "FirebirdSql.Data.FirebirdClient/10.0.0": { + "type": "package", + "compile": { + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll": {} + }, + "runtime": { + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll": {} + } + }, + "FluentMigrator/5.2.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.2.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Abstractions/5.2.0": { + "type": "package", + "dependencies": { + "System.ComponentModel.Annotations": "5.0.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll": { + "locale": "de-DE" + } + } + }, + "FluentMigrator.Extensions.MySql/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Oracle/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Postgres/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Snowflake/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.SqlServer/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Runner.Core": "5.1.0", + "FluentMigrator.Runner.Db2": "5.1.0", + "FluentMigrator.Runner.Firebird": "5.1.0", + "FluentMigrator.Runner.Hana": "5.1.0", + "FluentMigrator.Runner.MySql": "5.1.0", + "FluentMigrator.Runner.Oracle": "5.1.0", + "FluentMigrator.Runner.Postgres": "5.1.0", + "FluentMigrator.Runner.Redshift": "5.1.0", + "FluentMigrator.Runner.SQLite": "5.1.0", + "FluentMigrator.Runner.Snowflake": "5.1.0", + "FluentMigrator.Runner.SqlServer": "5.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Core/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Abstractions": "5.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Db2/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Firebird/5.1.0": { + "type": "package", + "dependencies": { + "FirebirdSql.Data.FirebirdClient": "10.0.0", + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Hana/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.MySql/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.MySql": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Oracle/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.Oracle": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Postgres/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.Postgres": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Redshift/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Snowflake/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Extensions.Snowflake": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.SQLite/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.SqlServer/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.SqlServer": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0", + "Microsoft.Data.SqlClient": "5.1.4" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentValidation/11.5.1": { + "type": "package", + "compile": { + "lib/net7.0/FluentValidation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/FluentValidation.dll": { + "related": ".xml" + } + } + }, + "FluentValidation.AspNetCore/11.3.0": { + "type": "package", + "dependencies": { + "FluentValidation": "11.5.1", + "FluentValidation.DependencyInjectionExtensions": "11.5.1" + }, + "compile": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.5.1": { + "type": "package", + "dependencies": { + "FluentValidation": "11.5.1", + "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + } + }, + "Google.Apis/1.68.0": { + "type": "package", + "dependencies": { + "Google.Apis.Core": "1.68.0" + }, + "compile": { + "lib/net6.0/Google.Apis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.dll": { + "related": ".pdb;.xml" + } + } + }, + "Google.Apis.Auth/1.68.0": { + "type": "package", + "dependencies": { + "Google.Apis": "1.68.0", + "Google.Apis.Core": "1.68.0", + "System.Management": "7.0.2" + }, + "compile": { + "lib/net6.0/Google.Apis.Auth.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.Auth.dll": { + "related": ".pdb;.xml" + } + } + }, + "Google.Apis.Core/1.68.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net6.0/Google.Apis.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp/7.3.0.2": { + "type": "package", + "dependencies": { + "HarfBuzzSharp.NativeAssets.Win32": "7.3.0.2", + "HarfBuzzSharp.NativeAssets.macOS": "7.3.0.2" + }, + "compile": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "7.3.0.2" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libHarfBuzzSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Humanizer/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core.af": "2.14.1", + "Humanizer.Core.ar": "2.14.1", + "Humanizer.Core.az": "2.14.1", + "Humanizer.Core.bg": "2.14.1", + "Humanizer.Core.bn-BD": "2.14.1", + "Humanizer.Core.cs": "2.14.1", + "Humanizer.Core.da": "2.14.1", + "Humanizer.Core.de": "2.14.1", + "Humanizer.Core.el": "2.14.1", + "Humanizer.Core.es": "2.14.1", + "Humanizer.Core.fa": "2.14.1", + "Humanizer.Core.fi-FI": "2.14.1", + "Humanizer.Core.fr": "2.14.1", + "Humanizer.Core.fr-BE": "2.14.1", + "Humanizer.Core.he": "2.14.1", + "Humanizer.Core.hr": "2.14.1", + "Humanizer.Core.hu": "2.14.1", + "Humanizer.Core.hy": "2.14.1", + "Humanizer.Core.id": "2.14.1", + "Humanizer.Core.is": "2.14.1", + "Humanizer.Core.it": "2.14.1", + "Humanizer.Core.ja": "2.14.1", + "Humanizer.Core.ko-KR": "2.14.1", + "Humanizer.Core.ku": "2.14.1", + "Humanizer.Core.lv": "2.14.1", + "Humanizer.Core.ms-MY": "2.14.1", + "Humanizer.Core.mt": "2.14.1", + "Humanizer.Core.nb": "2.14.1", + "Humanizer.Core.nb-NO": "2.14.1", + "Humanizer.Core.nl": "2.14.1", + "Humanizer.Core.pl": "2.14.1", + "Humanizer.Core.pt": "2.14.1", + "Humanizer.Core.ro": "2.14.1", + "Humanizer.Core.ru": "2.14.1", + "Humanizer.Core.sk": "2.14.1", + "Humanizer.Core.sl": "2.14.1", + "Humanizer.Core.sr": "2.14.1", + "Humanizer.Core.sr-Latn": "2.14.1", + "Humanizer.Core.sv": "2.14.1", + "Humanizer.Core.th-TH": "2.14.1", + "Humanizer.Core.tr": "2.14.1", + "Humanizer.Core.uk": "2.14.1", + "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", + "Humanizer.Core.uz-Latn-UZ": "2.14.1", + "Humanizer.Core.vi": "2.14.1", + "Humanizer.Core.zh-CN": "2.14.1", + "Humanizer.Core.zh-Hans": "2.14.1", + "Humanizer.Core.zh-Hant": "2.14.1" + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Humanizer.Core.af/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/af/Humanizer.resources.dll": { + "locale": "af" + } + } + }, + "Humanizer.Core.ar/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ar/Humanizer.resources.dll": { + "locale": "ar" + } + } + }, + "Humanizer.Core.az/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/az/Humanizer.resources.dll": { + "locale": "az" + } + } + }, + "Humanizer.Core.bg/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bg/Humanizer.resources.dll": { + "locale": "bg" + } + } + }, + "Humanizer.Core.bn-BD/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bn-BD/Humanizer.resources.dll": { + "locale": "bn-BD" + } + } + }, + "Humanizer.Core.cs/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/cs/Humanizer.resources.dll": { + "locale": "cs" + } + } + }, + "Humanizer.Core.da/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/da/Humanizer.resources.dll": { + "locale": "da" + } + } + }, + "Humanizer.Core.de/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/de/Humanizer.resources.dll": { + "locale": "de" + } + } + }, + "Humanizer.Core.el/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/el/Humanizer.resources.dll": { + "locale": "el" + } + } + }, + "Humanizer.Core.es/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/es/Humanizer.resources.dll": { + "locale": "es" + } + } + }, + "Humanizer.Core.fa/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fa/Humanizer.resources.dll": { + "locale": "fa" + } + } + }, + "Humanizer.Core.fi-FI/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fi-FI/Humanizer.resources.dll": { + "locale": "fi-FI" + } + } + }, + "Humanizer.Core.fr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr/Humanizer.resources.dll": { + "locale": "fr" + } + } + }, + "Humanizer.Core.fr-BE/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr-BE/Humanizer.resources.dll": { + "locale": "fr-BE" + } + } + }, + "Humanizer.Core.he/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/he/Humanizer.resources.dll": { + "locale": "he" + } + } + }, + "Humanizer.Core.hr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hr/Humanizer.resources.dll": { + "locale": "hr" + } + } + }, + "Humanizer.Core.hu/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hu/Humanizer.resources.dll": { + "locale": "hu" + } + } + }, + "Humanizer.Core.hy/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hy/Humanizer.resources.dll": { + "locale": "hy" + } + } + }, + "Humanizer.Core.id/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/id/Humanizer.resources.dll": { + "locale": "id" + } + } + }, + "Humanizer.Core.is/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/is/Humanizer.resources.dll": { + "locale": "is" + } + } + }, + "Humanizer.Core.it/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/it/Humanizer.resources.dll": { + "locale": "it" + } + } + }, + "Humanizer.Core.ja/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ja/Humanizer.resources.dll": { + "locale": "ja" + } + } + }, + "Humanizer.Core.ko-KR/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { + "locale": "ko-KR" + } + } + }, + "Humanizer.Core.ku/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ku/Humanizer.resources.dll": { + "locale": "ku" + } + } + }, + "Humanizer.Core.lv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/lv/Humanizer.resources.dll": { + "locale": "lv" + } + } + }, + "Humanizer.Core.ms-MY/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { + "locale": "ms-MY" + } + } + }, + "Humanizer.Core.mt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/mt/Humanizer.resources.dll": { + "locale": "mt" + } + } + }, + "Humanizer.Core.nb/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb/Humanizer.resources.dll": { + "locale": "nb" + } + } + }, + "Humanizer.Core.nb-NO/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb-NO/Humanizer.resources.dll": { + "locale": "nb-NO" + } + } + }, + "Humanizer.Core.nl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nl/Humanizer.resources.dll": { + "locale": "nl" + } + } + }, + "Humanizer.Core.pl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pl/Humanizer.resources.dll": { + "locale": "pl" + } + } + }, + "Humanizer.Core.pt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pt/Humanizer.resources.dll": { + "locale": "pt" + } + } + }, + "Humanizer.Core.ro/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ro/Humanizer.resources.dll": { + "locale": "ro" + } + } + }, + "Humanizer.Core.ru/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ru/Humanizer.resources.dll": { + "locale": "ru" + } + } + }, + "Humanizer.Core.sk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sk/Humanizer.resources.dll": { + "locale": "sk" + } + } + }, + "Humanizer.Core.sl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sl/Humanizer.resources.dll": { + "locale": "sl" + } + } + }, + "Humanizer.Core.sr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr/Humanizer.resources.dll": { + "locale": "sr" + } + } + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr-Latn/Humanizer.resources.dll": { + "locale": "sr-Latn" + } + } + }, + "Humanizer.Core.sv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sv/Humanizer.resources.dll": { + "locale": "sv" + } + } + }, + "Humanizer.Core.th-TH/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { + "locale": "th-TH" + } + } + }, + "Humanizer.Core.tr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/tr/Humanizer.resources.dll": { + "locale": "tr" + } + } + }, + "Humanizer.Core.uk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uk/Humanizer.resources.dll": { + "locale": "uk" + } + } + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { + "locale": "uz-Cyrl-UZ" + } + } + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { + "locale": "uz-Latn-UZ" + } + } + }, + "Humanizer.Core.vi/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/vi/Humanizer.resources.dll": { + "locale": "vi" + } + } + }, + "Humanizer.Core.zh-CN/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-CN/Humanizer.resources.dll": { + "locale": "zh-CN" + } + } + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hans/Humanizer.resources.dll": { + "locale": "zh-Hans" + } + } + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hant/Humanizer.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "LigerShark.WebOptimizer.Core/3.0.426": { + "type": "package", + "dependencies": { + "NUglify": "1.21.9" + }, + "compile": { + "lib/net8.0/WebOptimizer.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/WebOptimizer.Core.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "build/_._": {} + } + }, + "linq2db/5.4.1": { + "type": "package", + "compile": { + "lib/net6.0/linq2db.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/linq2db.dll": { + "related": ".xml" + } + } + }, + "MailKit/4.8.0": { + "type": "package", + "dependencies": { + "MimeKit": "4.8.0", + "System.Formats.Asn1": "8.0.1" + }, + "compile": { + "lib/net8.0/MailKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/MailKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + } + }, + "MaxMind.Db/4.1.0": { + "type": "package", + "compile": { + "lib/net8.0/MaxMind.Db.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MaxMind.Db.dll": { + "related": ".xml" + } + } + }, + "MaxMind.GeoIP2/5.2.0": { + "type": "package", + "dependencies": { + "MaxMind.Db": "4.1.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/MaxMind.GeoIP2.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MaxMind.GeoIP2.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.32": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.DataProtection/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "3.1.32", + "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.32", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.32", + "Microsoft.Extensions.Logging.Abstractions": "3.1.32", + "Microsoft.Extensions.Options": "3.1.32", + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Cryptography.Xml": "4.7.1" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.32": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.JsonPatch/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "8.0.10", + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.0", + "Microsoft.CodeAnalysis.Razor": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "6.0.0", + "Microsoft.CodeAnalysis.Razor": "6.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.0.0]" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Razor/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.0.0", + "Microsoft.CodeAnalysis.Common": "4.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/5.2.0": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.3", + "Microsoft.Data.SqlClient.SNI.runtime": "5.2.0", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Runtime.Caching": "8.0.0" + }, + "compile": { + "ref/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hant" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.SqlServer/8.0.10": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.2", + "Microsoft.Data.SqlClient": "4.0.5", + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "StackExchange.Redis": "2.7.27" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.32" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.32", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32", + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.32", + "Microsoft.Extensions.Logging.Abstractions": "3.1.32" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.ObjectPool/6.0.16": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Identity.Client/4.66.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.65.0": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.65.0", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.35.0", + "System.IdentityModel.Tokens.Jwt": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MimeKit/4.8.0": { + "type": "package", + "dependencies": { + "BouncyCastle.Cryptography": "2.4.0", + "System.Formats.Asn1": "8.0.1", + "System.Security.Cryptography.Pkcs": "8.0.0" + }, + "compile": { + "lib/net8.0/MimeKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/MimeKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + } + }, + "MySqlConnector/2.3.7": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.1" + }, + "compile": { + "lib/net8.0/MySqlConnector.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MySqlConnector.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + } + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "type": "package", + "dependencies": { + "Nito.AsyncEx.Tasks": "5.1.2", + "Nito.Collections.Deque": "1.1.1" + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "related": ".xml" + } + } + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "type": "package", + "dependencies": { + "Nito.Disposables": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "related": ".xml" + } + } + }, + "Nito.Collections.Deque/1.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "related": ".xml" + } + } + }, + "Nito.Disposables/2.2.1": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.7.1" + }, + "compile": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "related": ".xml" + } + } + }, + "Npgsql/8.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "NUglify/1.21.9": { + "type": "package", + "compile": { + "lib/net5.0/NUglify.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/NUglify.dll": { + "related": ".xml" + } + } + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "5.0.1" + }, + "compile": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + } + }, + "QuestPDF/2024.10.1": { + "type": "package", + "compile": { + "lib/net8.0/QuestPDF.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/QuestPDF.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/QuestPDF.targets": {} + }, + "runtimeTargets": { + "runtimes/linux-arm64/native/libQuestPdfSkia.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libQuestPdfSkia.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libQuestPdfSkia.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx-arm64/native/libQuestPdfSkia.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libQuestPdfSkia.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-x64/native/QuestPdfSkia.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/QuestPdfSkia.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "RBush/3.2.0": { + "type": "package", + "compile": { + "lib/net6.0/RBush.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/RBush.dll": { + "related": ".xml" + } + } + }, + "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/_._": {} + } + }, + "ShimSkiaSharp/2.0.0.1": { + "type": "package", + "compile": { + "lib/net8.0/ShimSkiaSharp.dll": {} + }, + "runtime": { + "lib/net8.0/ShimSkiaSharp.dll": {} + } + }, + "SixLabors.Fonts/1.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + } + }, + "SkiaSharp/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.8", + "SkiaSharp.NativeAssets.macOS": "2.88.8" + }, + "compile": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.HarfBuzz/2.88.8": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "7.3.0.2", + "SkiaSharp": "2.88.8" + }, + "compile": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.8" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "StackExchange.Redis/2.7.27": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Pipelines.Sockets.Unofficial": "2.2.8" + }, + "compile": { + "lib/net6.0/StackExchange.Redis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/StackExchange.Redis.dll": { + "related": ".xml" + } + } + }, + "Svg.Custom/2.0.0.1": { + "type": "package", + "dependencies": { + "ExCSS": "4.2.3" + }, + "compile": { + "lib/net8.0/Svg.Custom.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Custom.dll": {} + } + }, + "Svg.Model/2.0.0.1": { + "type": "package", + "dependencies": { + "ShimSkiaSharp": "2.0.0.1", + "Svg.Custom": "2.0.0.1" + }, + "compile": { + "lib/net8.0/Svg.Model.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Model.dll": {} + } + }, + "Svg.Skia/2.0.0.1": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.8", + "SkiaSharp.HarfBuzz": "2.88.8", + "Svg.Custom": "2.0.0.1", + "Svg.Model": "2.0.0.1" + }, + "compile": { + "lib/net8.0/Svg.Skia.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Skia.dll": {} + } + }, + "System.ClientModel/1.1.0": { + "type": "package", + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "6.0.9" + }, + "compile": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + } + }, + "System.CodeDom/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Collections/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.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/8.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "8.0.1", + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.EventLog/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/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.Formats.Asn1/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "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.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "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.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Hashing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Packaging/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.IO.Pipelines/5.0.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + } + }, + "System.Linq.Async/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Linq.Async.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Linq.Async.dll": { + "related": ".xml" + } + } + }, + "System.Linq.Dynamic.Core/1.4.6": { + "type": "package", + "compile": { + "lib/net8.0/System.Linq.Dynamic.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/System.Linq.Dynamic.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "System.Management/7.0.2": { + "type": "package", + "dependencies": { + "System.CodeDom": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/6.0.0": { + "type": "package", + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.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.Metadata/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "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.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Caching/8.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "8.0.0" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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/System.Runtime.Handles.dll": { + "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.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Security.Cryptography.Xml/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.1" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Http/8.0.0": { + "type": "package", + "dependencies": { + "System.ServiceModel.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/net8.0/cs/System.ServiceModel.Http.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/System.ServiceModel.Http.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/System.ServiceModel.Http.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/System.ServiceModel.Http.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/System.ServiceModel.Http.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/System.ServiceModel.Http.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/System.ServiceModel.Http.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/System.ServiceModel.Http.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/System.ServiceModel.Http.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/System.ServiceModel.Http.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/System.ServiceModel.Http.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/System.ServiceModel.Http.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/System.ServiceModel.Http.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.ServiceModel.Primitives/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ObjectPool": "6.0.16", + "System.Security.Cryptography.Xml": "6.0.1" + }, + "compile": { + "ref/net8.0/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/net8.0/System.ServiceModel.Primitives.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/net8.0/cs/System.ServiceModel.Primitives.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/System.ServiceModel.Primitives.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/System.ServiceModel.Primitives.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/System.ServiceModel.Primitives.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/System.ServiceModel.Primitives.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/System.ServiceModel.Primitives.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/System.ServiceModel.Primitives.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/System.ServiceModel.Primitives.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/System.ServiceModel.Primitives.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/System.ServiceModel.Primitives.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/System.ServiceModel.Primitives.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/System.ServiceModel.Primitives.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/System.ServiceModel.Primitives.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "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/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.10": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/System.Text.Json.targets": {} + } + }, + "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/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "WebMarkupMin.AspNet.Common/2.17.0": { + "type": "package", + "dependencies": { + "WebMarkupMin.Core": "2.17.0" + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll": { + "related": ".xml" + } + } + }, + "WebMarkupMin.AspNetCore8/2.17.0": { + "type": "package", + "dependencies": { + "WebMarkupMin.AspNet.Common": "2.17.0" + }, + "compile": { + "lib/net8.0/WebMarkupMin.AspNetCore8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/WebMarkupMin.AspNetCore8.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "WebMarkupMin.Core/2.17.0": { + "type": "package", + "dependencies": { + "AdvancedStringBuilder": "0.1.1" + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "related": ".xml" + } + } + }, + "WebMarkupMin.NUglify/2.17.0": { + "type": "package", + "dependencies": { + "NUglify": "1.21.9", + "WebMarkupMin.Core": "2.17.0" + }, + "compile": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "related": ".xml" + } + } + }, + "Nop.Core/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "AutoMapper": "13.0.1", + "Autofac.Extensions.DependencyInjection": "10.0.0", + "Azure.Extensions.AspNetCore.DataProtection.Blobs": "1.3.4", + "Azure.Extensions.AspNetCore.DataProtection.Keys": "1.2.4", + "Azure.Identity": "1.13.0", + "Humanizer": "2.14.1", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "8.0.10", + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "8.0.10", + "Microsoft.Extensions.Caching.SqlServer": "8.0.10", + "Microsoft.Extensions.Caching.StackExchangeRedis": "8.0.10", + "Nito.AsyncEx.Coordination": "5.1.2", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Linq.Async": "6.0.1" + }, + "compile": { + "bin/placeholder/Nop.Core.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Core.dll": {} + } + }, + "Nop.Data/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "FluentMigrator": "5.2.0", + "FluentMigrator.Runner": "5.1.0", + "Microsoft.Data.SqlClient": "5.2.0", + "MySqlConnector": "2.3.7", + "Nop.Core": "4.70.0", + "Npgsql": "8.0.5", + "System.Configuration.ConfigurationManager": "8.0.1", + "System.Net.NameResolution": "4.3.0", + "linq2db": "5.4.1" + }, + "compile": { + "bin/placeholder/Nop.Data.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Data.dll": {} + } + }, + "Nop.Services/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Azure.Storage.Blobs": "12.22.2", + "ClosedXML": "0.104.1", + "Google.Apis.Auth": "1.68.0", + "HarfBuzzSharp.NativeAssets.Linux": "7.3.0.2", + "MailKit": "4.8.0", + "MaxMind.GeoIP2": "5.2.0", + "Microsoft.Identity.Client": "4.66.1", + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "QuestPDF": "2024.10.1", + "SkiaSharp": "2.88.8", + "SkiaSharp.NativeAssets.Linux.NoDependencies": "2.88.8", + "Svg.Skia": "2.0.0.1", + "System.Linq.Dynamic.Core": "1.4.6", + "System.ServiceModel.Http": "8.0.0" + }, + "compile": { + "bin/placeholder/Nop.Services.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Services.dll": {} + } + }, + "Nop.Web/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "Nop.Services": "4.70.0", + "Nop.Web.Framework": "4.70.0" + }, + "compile": { + "bin/placeholder/Nop.Web.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Web.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Nop.Web.Framework/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "FluentValidation.AspNetCore": "11.3.0", + "LigerShark.WebOptimizer.Core": "3.0.426", + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "Nop.Services": "4.70.0", + "WebMarkupMin.AspNetCore8": "2.17.0", + "WebMarkupMin.NUglify": "2.17.0" + }, + "compile": { + "bin/placeholder/Nop.Web.Framework.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Web.Framework.dll": {} + } + } + } + }, + "libraries": { + "AdvancedStringBuilder/0.1.1": { + "sha512": "32IrlspOA59ewotQ4tlKP27QhKxMKGB7oncqlwVHn/hAz+j/r3HvLr6/W9ni9Mnyktlcg6kt7QZS8rEgur1+4Q==", + "type": "package", + "path": "advancedstringbuilder/0.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "advancedstringbuilder.0.1.1.nupkg.sha512", + "advancedstringbuilder.nuspec", + "icon.png", + "lib/net40-client/AdvancedStringBuilder.dll", + "lib/net40-client/AdvancedStringBuilder.xml", + "lib/net45/AdvancedStringBuilder.dll", + "lib/net45/AdvancedStringBuilder.xml", + "lib/netstandard1.0/AdvancedStringBuilder.dll", + "lib/netstandard1.0/AdvancedStringBuilder.xml", + "lib/netstandard2.0/AdvancedStringBuilder.dll", + "lib/netstandard2.0/AdvancedStringBuilder.xml", + "readme.txt" + ] + }, + "Autofac/8.1.0": { + "sha512": "O2QT+0DSTBR2Ojpacmcj3L0KrnnXTFrwLl/OW1lBUDiHhb89msHEHNhTA8AlK3jdFiAfMbAYyQaJVvRe6oSBcQ==", + "type": "package", + "path": "autofac/8.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.8.1.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net6.0/Autofac.dll", + "lib/net6.0/Autofac.xml", + "lib/net7.0/Autofac.dll", + "lib/net7.0/Autofac.xml", + "lib/net8.0/Autofac.dll", + "lib/net8.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "sha512": "ZjR/onUlP7BzQ7VBBigQepWLAyAzi3VRGX3pP6sBqkPRiT61fsTZqbTpRUKxo30TMgbs1o3y6bpLbETix4SJog==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net6.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net7.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net7.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net8.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "AutoMapper/13.0.1": { + "sha512": "/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "type": "package", + "path": "automapper/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.13.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/net6.0/AutoMapper.dll", + "lib/net6.0/AutoMapper.xml" + ] + }, + "Azure.Core/1.44.1": { + "sha512": "YyznXLQZCregzHvioip07/BkzjuWNXogJEVz9T5W6TwjNr17ax41YGzYMptlo2G10oLCuVPoyva62y0SIRDixg==", + "type": "package", + "path": "azure.core/1.44.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.core.1.44.1.nupkg.sha512", + "azure.core.nuspec", + "azureicon.png", + "lib/net461/Azure.Core.dll", + "lib/net461/Azure.Core.xml", + "lib/net472/Azure.Core.dll", + "lib/net472/Azure.Core.xml", + "lib/net6.0/Azure.Core.dll", + "lib/net6.0/Azure.Core.xml", + "lib/netstandard2.0/Azure.Core.dll", + "lib/netstandard2.0/Azure.Core.xml" + ] + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.3.4": { + "sha512": "zS+x0MpUMSbvZD598lwAoax+ohIeSAvGlXpT71iP7FFmMZ+Tjz/8hx+jZH/RbV2cJYTYbux8XFDll7LMPuz46g==", + "type": "package", + "path": "azure.extensions.aspnetcore.dataprotection.blobs/1.3.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.extensions.aspnetcore.dataprotection.blobs.1.3.4.nupkg.sha512", + "azure.extensions.aspnetcore.dataprotection.blobs.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.xml" + ] + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.2.4": { + "sha512": "sl0E1iOrVWxxWUTFzzo6hN2+ZjYK8B84t/NEbeVl8MY3xMO3lR8JBSeWGp3u5OL6Z8I2lTAescgOz/CkIni5Lg==", + "type": "package", + "path": "azure.extensions.aspnetcore.dataprotection.keys/1.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.extensions.aspnetcore.dataprotection.keys.1.2.4.nupkg.sha512", + "azure.extensions.aspnetcore.dataprotection.keys.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.xml" + ] + }, + "Azure.Identity/1.13.0": { + "sha512": "UMYCdapkVRojCtXqUmrWMAEV/i1N5haRcQ481oBmXn+kpq1zLJXiL6ESghbxbE0QV5zvewUJIy/IZcvijcpLfg==", + "type": "package", + "path": "azure.identity/1.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.identity.1.13.0.nupkg.sha512", + "azure.identity.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Identity.dll", + "lib/netstandard2.0/Azure.Identity.xml" + ] + }, + "Azure.Security.KeyVault.Keys/4.6.0": { + "sha512": "1KbCIkXmLaj+kDDNm1Va5rNlzgcJ/fVtnsoVmzZPKa38jz6DXhPyojdvGaOX8AdupGJceg0X1vrsGvZKN79Qzw==", + "type": "package", + "path": "azure.security.keyvault.keys/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.security.keyvault.keys.4.6.0.nupkg.sha512", + "azure.security.keyvault.keys.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll", + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.xml" + ] + }, + "Azure.Storage.Blobs/12.22.2": { + "sha512": "/BK63qx31dhXjnqOXB90DP8mJM+pHbti45+v/D3SiEgP2A+ekvJlGWGLVGQznriT5UAOerM+3vAAEJNKolVSIQ==", + "type": "package", + "path": "azure.storage.blobs/12.22.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.storage.blobs.12.22.2.nupkg.sha512", + "azure.storage.blobs.nuspec", + "azureicon.png", + "lib/net6.0/Azure.Storage.Blobs.dll", + "lib/net6.0/Azure.Storage.Blobs.xml", + "lib/netstandard2.0/Azure.Storage.Blobs.dll", + "lib/netstandard2.0/Azure.Storage.Blobs.xml", + "lib/netstandard2.1/Azure.Storage.Blobs.dll", + "lib/netstandard2.1/Azure.Storage.Blobs.xml" + ] + }, + "Azure.Storage.Common/12.21.1": { + "sha512": "NgDJw/upcro33AgGf91sPIG+BU2pFTgGDBzWEp8HctGwzmbjG80eYTl4CJMIwgxVOQWnEXnQZXLY7w3k+BQ9ig==", + "type": "package", + "path": "azure.storage.common/12.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.storage.common.12.21.1.nupkg.sha512", + "azure.storage.common.nuspec", + "azureicon.png", + "lib/net6.0/Azure.Storage.Common.dll", + "lib/net6.0/Azure.Storage.Common.xml", + "lib/netstandard2.0/Azure.Storage.Common.dll", + "lib/netstandard2.0/Azure.Storage.Common.xml" + ] + }, + "BouncyCastle.Cryptography/2.4.0": { + "sha512": "SwXsAV3sMvAU/Nn31pbjhWurYSjJ+/giI/0n6tCrYoupEK34iIHCuk3STAd9fx8yudM85KkLSVdn951vTng/vQ==", + "type": "package", + "path": "bouncycastle.cryptography/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "bouncycastle.cryptography.2.4.0.nupkg.sha512", + "bouncycastle.cryptography.nuspec", + "lib/net461/BouncyCastle.Cryptography.dll", + "lib/net461/BouncyCastle.Cryptography.xml", + "lib/net6.0/BouncyCastle.Cryptography.dll", + "lib/net6.0/BouncyCastle.Cryptography.xml", + "lib/netstandard2.0/BouncyCastle.Cryptography.dll", + "lib/netstandard2.0/BouncyCastle.Cryptography.xml", + "packageIcon.png" + ] + }, + "ClosedXML/0.104.1": { + "sha512": "RVm2fUNWJlBJlg07shrfeWzrHPG5ypI/vARqdUOUbUdaog8yBw8l4IbCHf2MXt0AXtzaZqGNqhFaCAHigCBdfw==", + "type": "package", + "path": "closedxml/0.104.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "closedxml.0.104.1.nupkg.sha512", + "closedxml.nuspec", + "lib/netstandard2.0/ClosedXML.dll", + "lib/netstandard2.0/ClosedXML.pdb", + "lib/netstandard2.0/ClosedXML.xml", + "lib/netstandard2.1/ClosedXML.dll", + "lib/netstandard2.1/ClosedXML.pdb", + "lib/netstandard2.1/ClosedXML.xml", + "nuget-logo.png" + ] + }, + "ClosedXML.Parser/1.2.0": { + "sha512": "w+/0tsxABS3lkSH8EUlA7IGme+mq5T/Puf3DbOiTckmSuUpAUO2LK29oXYByCcWkBv6wcRHxgWlQb1lxkwI0Tw==", + "type": "package", + "path": "closedxml.parser/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "closedxml.parser.1.2.0.nupkg.sha512", + "closedxml.parser.nuspec", + "lib/netstandard2.0/ClosedXML.Parser.dll", + "lib/netstandard2.0/ClosedXML.Parser.xml", + "lib/netstandard2.1/ClosedXML.Parser.dll", + "lib/netstandard2.1/ClosedXML.Parser.xml" + ] + }, + "DocumentFormat.OpenXml/3.0.1": { + "sha512": "DCK1cwFUJ1FGGyYyo++HWl9H1RkqMWIu+FGOLRy6E4L4y0/HIhlJ7N/n1HKboFfOwKn1cMBRxt1RCuDbIEy5YQ==", + "type": "package", + "path": "documentformat.openxml/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.3.0.1.nupkg.sha512", + "documentformat.openxml.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.dll", + "lib/net35/DocumentFormat.OpenXml.xml", + "lib/net40/DocumentFormat.OpenXml.dll", + "lib/net40/DocumentFormat.OpenXml.xml", + "lib/net46/DocumentFormat.OpenXml.dll", + "lib/net46/DocumentFormat.OpenXml.xml", + "lib/net8.0/DocumentFormat.OpenXml.dll", + "lib/net8.0/DocumentFormat.OpenXml.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.xml" + ] + }, + "DocumentFormat.OpenXml.Framework/3.0.1": { + "sha512": "ifyI7OW7sggz7LQMIAD2aUsY/zVUON9QaHrpZ4MK33iVMeHlTG4uhUE2aLWb31nry+LCs2ALDAwf8OfUJGjgBg==", + "type": "package", + "path": "documentformat.openxml.framework/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.framework.3.0.1.nupkg.sha512", + "documentformat.openxml.framework.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.Framework.dll", + "lib/net35/DocumentFormat.OpenXml.Framework.xml", + "lib/net40/DocumentFormat.OpenXml.Framework.dll", + "lib/net40/DocumentFormat.OpenXml.Framework.xml", + "lib/net46/DocumentFormat.OpenXml.Framework.dll", + "lib/net46/DocumentFormat.OpenXml.Framework.xml", + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net6.0/DocumentFormat.OpenXml.Framework.xml", + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net8.0/DocumentFormat.OpenXml.Framework.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml" + ] + }, + "ExcelNumberFormat/1.1.0": { + "sha512": "R3BVHPs9O+RkExbZYTGT0+9HLbi8ZrNij1Yziyw6znd3J7P3uoIR07uwTLGOogtz1p6+0sna66eBoXu7tBiVQA==", + "type": "package", + "path": "excelnumberformat/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excelnumberformat.1.1.0.nupkg.sha512", + "excelnumberformat.nuspec", + "icon.png", + "lib/net20/ExcelNumberFormat.dll", + "lib/net20/ExcelNumberFormat.xml", + "lib/netstandard1.0/ExcelNumberFormat.dll", + "lib/netstandard1.0/ExcelNumberFormat.xml", + "lib/netstandard2.0/ExcelNumberFormat.dll", + "lib/netstandard2.0/ExcelNumberFormat.xml" + ] + }, + "ExCSS/4.2.3": { + "sha512": "SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "type": "package", + "path": "excss/4.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excss.4.2.3.nupkg.sha512", + "excss.nuspec", + "lib/net48/ExCSS.dll", + "lib/net6.0/ExCSS.dll", + "lib/net7.0/ExCSS.dll", + "lib/netcoreapp3.1/ExCSS.dll", + "lib/netstandard2.0/ExCSS.dll", + "lib/netstandard2.1/ExCSS.dll", + "readme.md" + ] + }, + "FirebirdSql.Data.FirebirdClient/10.0.0": { + "sha512": "x+JkSd6TeL9zUXDbi5C0NPeZ1ejo5sw3G9nhoxvVGXhaU399agYgO5RXtYRmcS4GkeA57Q9sThe5pFL2knSdXQ==", + "type": "package", + "path": "firebirdsql.data.firebirdclient/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "firebird-logo.png", + "firebirdsql.data.firebirdclient.10.0.0.nupkg.sha512", + "firebirdsql.data.firebirdclient.nuspec", + "lib/net48/FirebirdSql.Data.FirebirdClient.dll", + "lib/net5.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/net6.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/netstandard2.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/netstandard2.1/FirebirdSql.Data.FirebirdClient.dll", + "license.txt" + ] + }, + "FluentMigrator/5.2.0": { + "sha512": "h3w95meLtHsdWQY1BVVh5eaGcI82zADR2T1WSCcc/NTc+P+rsGzmqG5RF9Gz+Fy1BNEQXL47Xppk/YorwJgEWg==", + "type": "package", + "path": "fluentmigrator/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.5.2.0.nupkg.sha512", + "fluentmigrator.nuspec", + "lib/net48/FluentMigrator.dll", + "lib/net48/FluentMigrator.pdb", + "lib/net48/FluentMigrator.xml", + "lib/netstandard2.0/FluentMigrator.dll", + "lib/netstandard2.0/FluentMigrator.pdb", + "lib/netstandard2.0/FluentMigrator.xml" + ] + }, + "FluentMigrator.Abstractions/5.2.0": { + "sha512": "MvzpENiB2o8QqIXYgKlbtrEPyaHc2m2ukRmaNWszL9ZJH3OBY/kYMotn/dxWC+zwlUo82ZPvoCJtoFi2nptz2w==", + "type": "package", + "path": "fluentmigrator.abstractions/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.abstractions.5.2.0.nupkg.sha512", + "fluentmigrator.abstractions.nuspec", + "lib/net48/FluentMigrator.Abstractions.dll", + "lib/net48/FluentMigrator.Abstractions.pdb", + "lib/net48/FluentMigrator.Abstractions.xml", + "lib/net48/de-DE/FluentMigrator.Abstractions.resources.dll", + "lib/netstandard2.0/FluentMigrator.Abstractions.dll", + "lib/netstandard2.0/FluentMigrator.Abstractions.pdb", + "lib/netstandard2.0/FluentMigrator.Abstractions.xml", + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll" + ] + }, + "FluentMigrator.Extensions.MySql/5.1.0": { + "sha512": "8dx8AS/XFs6HH7G3mw2FcDM43Y7+n96Z0OS9uQjmyum5Cv2Qp2dD2Gf747MCtbWbC/vdhJGomld+BnccBkNA3w==", + "type": "package", + "path": "fluentmigrator.extensions.mysql/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.mysql.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.mysql.nuspec", + "lib/net48/FluentMigrator.Extensions.MySql.dll", + "lib/net48/FluentMigrator.Extensions.MySql.pdb", + "lib/net48/FluentMigrator.Extensions.MySql.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.xml" + ] + }, + "FluentMigrator.Extensions.Oracle/5.1.0": { + "sha512": "Cpnav//COP8wl/NVa7EYyiQAsF0lAba3NYizAWXq+vIApxyu5L9Cp6GpyCTgIIOR4QLTx3FXV4cCg7/QKXkHHA==", + "type": "package", + "path": "fluentmigrator.extensions.oracle/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.oracle.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.oracle.nuspec", + "lib/net48/FluentMigrator.Extensions.Oracle.dll", + "lib/net48/FluentMigrator.Extensions.Oracle.pdb", + "lib/net48/FluentMigrator.Extensions.Oracle.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.xml" + ] + }, + "FluentMigrator.Extensions.Postgres/5.1.0": { + "sha512": "g3Se8v9zyjJUxFedx6mxCtCWrpr5IRD1BExyeIuvorJZZztE4emO/qXtpEB/m9YwdD8stJuPShbMWUa7bKm86Q==", + "type": "package", + "path": "fluentmigrator.extensions.postgres/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.postgres.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.postgres.nuspec", + "lib/net48/FluentMigrator.Extensions.Postgres.dll", + "lib/net48/FluentMigrator.Extensions.Postgres.pdb", + "lib/net48/FluentMigrator.Extensions.Postgres.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.xml" + ] + }, + "FluentMigrator.Extensions.Snowflake/5.1.0": { + "sha512": "3YnRq9q5AcShusF9OvbfMFu/Swyfn8V5YD/vkvAsNTcIIAWs4jXY0QhLR/lofIwvk56XqXE263x2OfzLZnf+gQ==", + "type": "package", + "path": "fluentmigrator.extensions.snowflake/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.snowflake.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.snowflake.nuspec", + "lib/net48/FluentMigrator.Extensions.Snowflake.dll", + "lib/net48/FluentMigrator.Extensions.Snowflake.pdb", + "lib/net48/FluentMigrator.Extensions.Snowflake.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.xml" + ] + }, + "FluentMigrator.Extensions.SqlServer/5.1.0": { + "sha512": "zdcQ1mYvyFY+gzfLScv5Y4j/qFXn4xLed71WqjiNWvN2/JkVh7Xa94K/b+PA6AYh8a7AIqdbnOKtzFr0Lh+95g==", + "type": "package", + "path": "fluentmigrator.extensions.sqlserver/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.sqlserver.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.sqlserver.nuspec", + "lib/net48/FluentMigrator.Extensions.SqlServer.dll", + "lib/net48/FluentMigrator.Extensions.SqlServer.pdb", + "lib/net48/FluentMigrator.Extensions.SqlServer.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.xml" + ] + }, + "FluentMigrator.Runner/5.1.0": { + "sha512": "jincYPtHyQjQ3XgQ7c8aPkKLX88HxueHdeSz++WDVo0LXnR4aFbvi/UXbtAsnwt+Jj06KFhF1DlYVOoT3yrhKQ==", + "type": "package", + "path": "fluentmigrator.runner/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.5.1.0.nupkg.sha512", + "fluentmigrator.runner.nuspec", + "lib/net48/FluentMigrator.Runner.dll", + "lib/net48/FluentMigrator.Runner.pdb", + "lib/net48/FluentMigrator.Runner.xml", + "lib/netstandard2.0/FluentMigrator.Runner.dll", + "lib/netstandard2.0/FluentMigrator.Runner.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.xml" + ] + }, + "FluentMigrator.Runner.Core/5.1.0": { + "sha512": "nP/3ezpP57wqt/1+NScrsSRiQj90xeaNjEyjFIekNtPzmGyM/z//AYk3MXtfM8so8b+JZNL5INQYgXaVGISD0Q==", + "type": "package", + "path": "fluentmigrator.runner.core/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.core.5.1.0.nupkg.sha512", + "fluentmigrator.runner.core.nuspec", + "lib/net48/FluentMigrator.Runner.Core.dll", + "lib/net48/FluentMigrator.Runner.Core.pdb", + "lib/net48/FluentMigrator.Runner.Core.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Core.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Core.xml" + ] + }, + "FluentMigrator.Runner.Db2/5.1.0": { + "sha512": "Z9CdgQnkyBgNyRpTA2le/VEQaa2ukFNqDYEqkRu2cOZk+XF3JsjkQMeeQB2Byy7yZhgK/SGrauLvebB5wF1wEw==", + "type": "package", + "path": "fluentmigrator.runner.db2/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.db2.5.1.0.nupkg.sha512", + "fluentmigrator.runner.db2.nuspec", + "lib/net48/FluentMigrator.Runner.Db2.dll", + "lib/net48/FluentMigrator.Runner.Db2.pdb", + "lib/net48/FluentMigrator.Runner.Db2.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.xml" + ] + }, + "FluentMigrator.Runner.Firebird/5.1.0": { + "sha512": "lNFo+LZQczW3vtuSjpOfRxUhoRrwBMg+PV+SOk12c1PnkfvDAtsX/HSn9yUI3xV+fN1x6krBIwIQ9o63HQZAfg==", + "type": "package", + "path": "fluentmigrator.runner.firebird/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.firebird.5.1.0.nupkg.sha512", + "fluentmigrator.runner.firebird.nuspec", + "lib/net48/FluentMigrator.Runner.Firebird.dll", + "lib/net48/FluentMigrator.Runner.Firebird.pdb", + "lib/net48/FluentMigrator.Runner.Firebird.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.xml" + ] + }, + "FluentMigrator.Runner.Hana/5.1.0": { + "sha512": "xCRna1elZYhOITRK4uNtPb3xut0GTtteCyTjQF7ZlHC4RFFpg1a2fAWFUF+TB9YVeFxf1QHKhbo8Kr5rGH6HqA==", + "type": "package", + "path": "fluentmigrator.runner.hana/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.hana.5.1.0.nupkg.sha512", + "fluentmigrator.runner.hana.nuspec", + "lib/net48/FluentMigrator.Runner.Hana.dll", + "lib/net48/FluentMigrator.Runner.Hana.pdb", + "lib/net48/FluentMigrator.Runner.Hana.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.xml" + ] + }, + "FluentMigrator.Runner.MySql/5.1.0": { + "sha512": "VywFX3gKQ7EcveKoLcxLwf8aQkWnJn6WQ2aJqe7Dw6gld8o0WBpevsBwQFO1doGqXzhFDlWHO2NwKoqvXQCG+Q==", + "type": "package", + "path": "fluentmigrator.runner.mysql/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.mysql.5.1.0.nupkg.sha512", + "fluentmigrator.runner.mysql.nuspec", + "lib/net48/FluentMigrator.Runner.MySql.dll", + "lib/net48/FluentMigrator.Runner.MySql.pdb", + "lib/net48/FluentMigrator.Runner.MySql.xml", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.xml" + ] + }, + "FluentMigrator.Runner.Oracle/5.1.0": { + "sha512": "qNmTirqFREMOm/HMkO68suXd3EIoadfQ69gvuJ5Hvy7LNQgMAW8FcrcGkNFn0t0JYAtGEbtH9t90/6dmBAwQIg==", + "type": "package", + "path": "fluentmigrator.runner.oracle/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.oracle.5.1.0.nupkg.sha512", + "fluentmigrator.runner.oracle.nuspec", + "lib/net48/FluentMigrator.Runner.Oracle.dll", + "lib/net48/FluentMigrator.Runner.Oracle.pdb", + "lib/net48/FluentMigrator.Runner.Oracle.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.xml" + ] + }, + "FluentMigrator.Runner.Postgres/5.1.0": { + "sha512": "Zr/cqR7b5PJqwO/JPtVz/zn2USO/jLz8b9JEFCjsYIb4AU8WIwNpLoRXsEcWSoHjlAc60LPcZM608tkgDGgA6A==", + "type": "package", + "path": "fluentmigrator.runner.postgres/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.postgres.5.1.0.nupkg.sha512", + "fluentmigrator.runner.postgres.nuspec", + "lib/net48/FluentMigrator.Runner.Postgres.dll", + "lib/net48/FluentMigrator.Runner.Postgres.pdb", + "lib/net48/FluentMigrator.Runner.Postgres.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.xml" + ] + }, + "FluentMigrator.Runner.Redshift/5.1.0": { + "sha512": "7GTF2EaaU8de9ViLobwxSKT+gY81h6b4zXIkMteALdqnAjkMNcynhEradH5OaDe9PorKWWh3/VBzCmO+N516xw==", + "type": "package", + "path": "fluentmigrator.runner.redshift/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.redshift.5.1.0.nupkg.sha512", + "fluentmigrator.runner.redshift.nuspec", + "lib/net48/FluentMigrator.Runner.Redshift.dll", + "lib/net48/FluentMigrator.Runner.Redshift.pdb", + "lib/net48/FluentMigrator.Runner.Redshift.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.xml" + ] + }, + "FluentMigrator.Runner.Snowflake/5.1.0": { + "sha512": "OmGfCxJPSrhJ6VcW6ypqc+NziwH1rygkNEJfW7Jl1DHfwrQtPgIgWw8qTA0abN+RkwtalXsfaEJ+4EuL0L+w6w==", + "type": "package", + "path": "fluentmigrator.runner.snowflake/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.snowflake.5.1.0.nupkg.sha512", + "fluentmigrator.runner.snowflake.nuspec", + "lib/net48/FluentMigrator.Runner.Snowflake.dll", + "lib/net48/FluentMigrator.Runner.Snowflake.pdb", + "lib/net48/FluentMigrator.Runner.Snowflake.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.xml" + ] + }, + "FluentMigrator.Runner.SQLite/5.1.0": { + "sha512": "5fADu6iWF9pnPKhI0S2VmdR8gaFFe4A+ZtAu57A9w8gcZCCPVzekye83+gm93XuAGxOQtT1RErVIy2T0aGcyYA==", + "type": "package", + "path": "fluentmigrator.runner.sqlite/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.sqlite.5.1.0.nupkg.sha512", + "fluentmigrator.runner.sqlite.nuspec", + "lib/net48/FluentMigrator.Runner.SQLite.dll", + "lib/net48/FluentMigrator.Runner.SQLite.pdb", + "lib/net48/FluentMigrator.Runner.SQLite.xml", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.xml" + ] + }, + "FluentMigrator.Runner.SqlServer/5.1.0": { + "sha512": "WiZjICPJRIjuOZG2c52JOspKG0iR9UrfotE/SQMNlGEoIxjp8XrksEw7LytWsXWCymDjZUedNnA7QTqZS4p/Iw==", + "type": "package", + "path": "fluentmigrator.runner.sqlserver/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.sqlserver.5.1.0.nupkg.sha512", + "fluentmigrator.runner.sqlserver.nuspec", + "lib/net48/FluentMigrator.Runner.SqlServer.dll", + "lib/net48/FluentMigrator.Runner.SqlServer.pdb", + "lib/net48/FluentMigrator.Runner.SqlServer.xml", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.xml" + ] + }, + "FluentValidation/11.5.1": { + "sha512": "0h1Q5lNOLLyYTWMJmyNoMqhY4CBRvvUWvJP1R4F2CnmmzuWwvB0A8aVmw5+lOuwYnwUwCRrdeMLbc81F38ahNQ==", + "type": "package", + "path": "fluentvalidation/11.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.11.5.1.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net5.0/FluentValidation.dll", + "lib/net5.0/FluentValidation.xml", + "lib/net6.0/FluentValidation.dll", + "lib/net6.0/FluentValidation.xml", + "lib/net7.0/FluentValidation.dll", + "lib/net7.0/FluentValidation.xml", + "lib/netstandard2.0/FluentValidation.dll", + "lib/netstandard2.0/FluentValidation.xml", + "lib/netstandard2.1/FluentValidation.dll", + "lib/netstandard2.1/FluentValidation.xml" + ] + }, + "FluentValidation.AspNetCore/11.3.0": { + "sha512": "jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==", + "type": "package", + "path": "fluentvalidation.aspnetcore/11.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512", + "fluentvalidation.aspnetcore.nuspec", + "lib/net5.0/FluentValidation.AspNetCore.dll", + "lib/net5.0/FluentValidation.AspNetCore.xml", + "lib/net6.0/FluentValidation.AspNetCore.dll", + "lib/net6.0/FluentValidation.AspNetCore.xml", + "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll", + "lib/netcoreapp3.1/FluentValidation.AspNetCore.xml" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.5.1": { + "sha512": "iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==", + "type": "package", + "path": "fluentvalidation.dependencyinjectionextensions/11.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512", + "fluentvalidation.dependencyinjectionextensions.nuspec", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml" + ] + }, + "Google.Apis/1.68.0": { + "sha512": "s2MymhdpH+ybZNBeZ2J5uFgFHApBp+QXf9FjZSdM1lk/vx5VqIknJwnaWiuAzXxPrLEkesX0Q+UsiWn39yZ9zw==", + "type": "package", + "path": "google.apis/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.1.68.0.nupkg.sha512", + "google.apis.nuspec", + "lib/net462/Google.Apis.dll", + "lib/net462/Google.Apis.pdb", + "lib/net462/Google.Apis.xml", + "lib/net6.0/Google.Apis.dll", + "lib/net6.0/Google.Apis.pdb", + "lib/net6.0/Google.Apis.xml", + "lib/netstandard2.0/Google.Apis.dll", + "lib/netstandard2.0/Google.Apis.pdb", + "lib/netstandard2.0/Google.Apis.xml" + ] + }, + "Google.Apis.Auth/1.68.0": { + "sha512": "hFx8Qz5bZ4w0hpnn4tSmZaaFpjAMsgVElZ+ZgVLUZ2r9i+AKcoVgwiNfv1pruNS5cCvpXqhKECbruBCfRezPHA==", + "type": "package", + "path": "google.apis.auth/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.auth.1.68.0.nupkg.sha512", + "google.apis.auth.nuspec", + "lib/net462/Google.Apis.Auth.dll", + "lib/net462/Google.Apis.Auth.pdb", + "lib/net462/Google.Apis.Auth.xml", + "lib/net6.0/Google.Apis.Auth.dll", + "lib/net6.0/Google.Apis.Auth.pdb", + "lib/net6.0/Google.Apis.Auth.xml", + "lib/netstandard2.0/Google.Apis.Auth.dll", + "lib/netstandard2.0/Google.Apis.Auth.pdb", + "lib/netstandard2.0/Google.Apis.Auth.xml" + ] + }, + "Google.Apis.Core/1.68.0": { + "sha512": "pAqwa6pfu53UXCR2b7A/PAPXeuVg6L1OFw38WckN27NU2+mf+KTjoEg2YGv/f0UyKxzz7DxF1urOTKg/6dTP9g==", + "type": "package", + "path": "google.apis.core/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.core.1.68.0.nupkg.sha512", + "google.apis.core.nuspec", + "lib/net462/Google.Apis.Core.dll", + "lib/net462/Google.Apis.Core.pdb", + "lib/net462/Google.Apis.Core.xml", + "lib/net6.0/Google.Apis.Core.dll", + "lib/net6.0/Google.Apis.Core.pdb", + "lib/net6.0/Google.Apis.Core.xml", + "lib/netstandard2.0/Google.Apis.Core.dll", + "lib/netstandard2.0/Google.Apis.Core.pdb", + "lib/netstandard2.0/Google.Apis.Core.xml" + ] + }, + "HarfBuzzSharp/7.3.0.2": { + "sha512": "0tCd6HyCmNsX/DniCp2b00fo0xPbdNwKOs9BxxyT8oOOuMlWjcSFwzONKyeckCKVBFEsbSmsAHPDTqxoSDwZMg==", + "type": "package", + "path": "harfbuzzsharp/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "harfbuzzsharp.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nuspec", + "lib/monoandroid1.0/HarfBuzzSharp.dll", + "lib/monoandroid1.0/HarfBuzzSharp.pdb", + "lib/monoandroid1.0/HarfBuzzSharp.xml", + "lib/net462/HarfBuzzSharp.dll", + "lib/net462/HarfBuzzSharp.pdb", + "lib/net462/HarfBuzzSharp.xml", + "lib/net6.0-android30.0/HarfBuzzSharp.dll", + "lib/net6.0-android30.0/HarfBuzzSharp.pdb", + "lib/net6.0-android30.0/HarfBuzzSharp.xml", + "lib/net6.0-ios13.6/HarfBuzzSharp.dll", + "lib/net6.0-ios13.6/HarfBuzzSharp.pdb", + "lib/net6.0-ios13.6/HarfBuzzSharp.xml", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.dll", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.pdb", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.xml", + "lib/net6.0-macos10.15/HarfBuzzSharp.dll", + "lib/net6.0-macos10.15/HarfBuzzSharp.pdb", + "lib/net6.0-macos10.15/HarfBuzzSharp.xml", + "lib/net6.0-tvos13.4/HarfBuzzSharp.dll", + "lib/net6.0-tvos13.4/HarfBuzzSharp.pdb", + "lib/net6.0-tvos13.4/HarfBuzzSharp.xml", + "lib/net6.0/HarfBuzzSharp.dll", + "lib/net6.0/HarfBuzzSharp.pdb", + "lib/net6.0/HarfBuzzSharp.xml", + "lib/netcoreapp3.1/HarfBuzzSharp.dll", + "lib/netcoreapp3.1/HarfBuzzSharp.pdb", + "lib/netcoreapp3.1/HarfBuzzSharp.xml", + "lib/netstandard1.3/HarfBuzzSharp.dll", + "lib/netstandard1.3/HarfBuzzSharp.pdb", + "lib/netstandard1.3/HarfBuzzSharp.xml", + "lib/netstandard2.0/HarfBuzzSharp.dll", + "lib/netstandard2.0/HarfBuzzSharp.pdb", + "lib/netstandard2.0/HarfBuzzSharp.xml", + "lib/netstandard2.1/HarfBuzzSharp.dll", + "lib/netstandard2.1/HarfBuzzSharp.pdb", + "lib/netstandard2.1/HarfBuzzSharp.xml", + "lib/tizen40/HarfBuzzSharp.dll", + "lib/tizen40/HarfBuzzSharp.pdb", + "lib/tizen40/HarfBuzzSharp.xml", + "lib/uap10.0.10240/HarfBuzzSharp.dll", + "lib/uap10.0.10240/HarfBuzzSharp.pdb", + "lib/uap10.0.10240/HarfBuzzSharp.xml", + "lib/uap10.0.16299/HarfBuzzSharp.dll", + "lib/uap10.0.16299/HarfBuzzSharp.pdb", + "lib/uap10.0.16299/HarfBuzzSharp.xml", + "lib/xamarinios1.0/HarfBuzzSharp.dll", + "lib/xamarinios1.0/HarfBuzzSharp.pdb", + "lib/xamarinios1.0/HarfBuzzSharp.xml", + "lib/xamarinmac2.0/HarfBuzzSharp.dll", + "lib/xamarinmac2.0/HarfBuzzSharp.pdb", + "lib/xamarinmac2.0/HarfBuzzSharp.xml", + "lib/xamarintvos1.0/HarfBuzzSharp.dll", + "lib/xamarintvos1.0/HarfBuzzSharp.pdb", + "lib/xamarintvos1.0/HarfBuzzSharp.xml", + "lib/xamarinwatchos1.0/HarfBuzzSharp.dll", + "lib/xamarinwatchos1.0/HarfBuzzSharp.pdb", + "lib/xamarinwatchos1.0/HarfBuzzSharp.xml" + ] + }, + "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": { + "sha512": "aKa5J1RqjXKAtdcZJp5wjC78klfBIzJHM6CneN76lFmQ9LLRJA9Oa0TkIDaV8lVLDKMAy5fCKHXFlXUK1YfL/g==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.linux/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.linux.nuspec", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libHarfBuzzSharp.so", + "runtimes/linux-arm64/native/libHarfBuzzSharp.so", + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so", + "runtimes/linux-x64/native/libHarfBuzzSharp.so" + ] + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": { + "sha512": "nycYH/WLJ6ogm+I+QSFCdPJsdxSb5GANWYbQyp1vsd/KjXN56RVUJWPhbgP2GKb/Y7mrsHM7EProqVXlO/EMsA==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.macos/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.macos.nuspec", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libHarfBuzzSharp.dylib" + ] + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": { + "sha512": "DpF9JBzwws2dupOLnjME65hxQWWbN/GD40AoTkwB4S05WANvxo3n81AnQJKxWDCnrWfWhLPB36OF27TvEqzb/A==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.win32/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.win32.nuspec", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libHarfBuzzSharp.dll", + "runtimes/win-x64/native/libHarfBuzzSharp.dll", + "runtimes/win-x86/native/libHarfBuzzSharp.dll" + ] + }, + "Humanizer/2.14.1": { + "sha512": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", + "type": "package", + "path": "humanizer/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.2.14.1.nupkg.sha512", + "humanizer.nuspec", + "logo.png" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "Humanizer.Core.af/2.14.1": { + "sha512": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", + "type": "package", + "path": "humanizer.core.af/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.af.2.14.1.nupkg.sha512", + "humanizer.core.af.nuspec", + "lib/net6.0/af/Humanizer.resources.dll", + "lib/netstandard1.0/af/Humanizer.resources.dll", + "lib/netstandard2.0/af/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ar/2.14.1": { + "sha512": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", + "type": "package", + "path": "humanizer.core.ar/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ar.2.14.1.nupkg.sha512", + "humanizer.core.ar.nuspec", + "lib/net6.0/ar/Humanizer.resources.dll", + "lib/netstandard1.0/ar/Humanizer.resources.dll", + "lib/netstandard2.0/ar/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.az/2.14.1": { + "sha512": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", + "type": "package", + "path": "humanizer.core.az/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.az.2.14.1.nupkg.sha512", + "humanizer.core.az.nuspec", + "lib/net6.0/az/Humanizer.resources.dll", + "lib/netstandard1.0/az/Humanizer.resources.dll", + "lib/netstandard2.0/az/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bg/2.14.1": { + "sha512": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", + "type": "package", + "path": "humanizer.core.bg/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bg.2.14.1.nupkg.sha512", + "humanizer.core.bg.nuspec", + "lib/net6.0/bg/Humanizer.resources.dll", + "lib/netstandard1.0/bg/Humanizer.resources.dll", + "lib/netstandard2.0/bg/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bn-BD/2.14.1": { + "sha512": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", + "type": "package", + "path": "humanizer.core.bn-bd/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "humanizer.core.bn-bd.nuspec", + "lib/net6.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard1.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard2.0/bn-BD/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.cs/2.14.1": { + "sha512": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", + "type": "package", + "path": "humanizer.core.cs/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.cs.2.14.1.nupkg.sha512", + "humanizer.core.cs.nuspec", + "lib/net6.0/cs/Humanizer.resources.dll", + "lib/netstandard1.0/cs/Humanizer.resources.dll", + "lib/netstandard2.0/cs/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.da/2.14.1": { + "sha512": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", + "type": "package", + "path": "humanizer.core.da/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.da.2.14.1.nupkg.sha512", + "humanizer.core.da.nuspec", + "lib/net6.0/da/Humanizer.resources.dll", + "lib/netstandard1.0/da/Humanizer.resources.dll", + "lib/netstandard2.0/da/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.de/2.14.1": { + "sha512": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", + "type": "package", + "path": "humanizer.core.de/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.de.2.14.1.nupkg.sha512", + "humanizer.core.de.nuspec", + "lib/net6.0/de/Humanizer.resources.dll", + "lib/netstandard1.0/de/Humanizer.resources.dll", + "lib/netstandard2.0/de/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.el/2.14.1": { + "sha512": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", + "type": "package", + "path": "humanizer.core.el/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.el.2.14.1.nupkg.sha512", + "humanizer.core.el.nuspec", + "lib/net6.0/el/Humanizer.resources.dll", + "lib/netstandard1.0/el/Humanizer.resources.dll", + "lib/netstandard2.0/el/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.es/2.14.1": { + "sha512": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", + "type": "package", + "path": "humanizer.core.es/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.es.2.14.1.nupkg.sha512", + "humanizer.core.es.nuspec", + "lib/net6.0/es/Humanizer.resources.dll", + "lib/netstandard1.0/es/Humanizer.resources.dll", + "lib/netstandard2.0/es/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fa/2.14.1": { + "sha512": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", + "type": "package", + "path": "humanizer.core.fa/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fa.2.14.1.nupkg.sha512", + "humanizer.core.fa.nuspec", + "lib/net6.0/fa/Humanizer.resources.dll", + "lib/netstandard1.0/fa/Humanizer.resources.dll", + "lib/netstandard2.0/fa/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fi-FI/2.14.1": { + "sha512": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", + "type": "package", + "path": "humanizer.core.fi-fi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "humanizer.core.fi-fi.nuspec", + "lib/net6.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard1.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard2.0/fi-FI/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr/2.14.1": { + "sha512": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", + "type": "package", + "path": "humanizer.core.fr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr.2.14.1.nupkg.sha512", + "humanizer.core.fr.nuspec", + "lib/net6.0/fr/Humanizer.resources.dll", + "lib/netstandard1.0/fr/Humanizer.resources.dll", + "lib/netstandard2.0/fr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr-BE/2.14.1": { + "sha512": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", + "type": "package", + "path": "humanizer.core.fr-be/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr-be.2.14.1.nupkg.sha512", + "humanizer.core.fr-be.nuspec", + "lib/net6.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard1.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard2.0/fr-BE/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.he/2.14.1": { + "sha512": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", + "type": "package", + "path": "humanizer.core.he/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.he.2.14.1.nupkg.sha512", + "humanizer.core.he.nuspec", + "lib/net6.0/he/Humanizer.resources.dll", + "lib/netstandard1.0/he/Humanizer.resources.dll", + "lib/netstandard2.0/he/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hr/2.14.1": { + "sha512": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", + "type": "package", + "path": "humanizer.core.hr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hr.2.14.1.nupkg.sha512", + "humanizer.core.hr.nuspec", + "lib/net6.0/hr/Humanizer.resources.dll", + "lib/netstandard1.0/hr/Humanizer.resources.dll", + "lib/netstandard2.0/hr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hu/2.14.1": { + "sha512": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", + "type": "package", + "path": "humanizer.core.hu/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hu.2.14.1.nupkg.sha512", + "humanizer.core.hu.nuspec", + "lib/net6.0/hu/Humanizer.resources.dll", + "lib/netstandard1.0/hu/Humanizer.resources.dll", + "lib/netstandard2.0/hu/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hy/2.14.1": { + "sha512": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", + "type": "package", + "path": "humanizer.core.hy/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hy.2.14.1.nupkg.sha512", + "humanizer.core.hy.nuspec", + "lib/net6.0/hy/Humanizer.resources.dll", + "lib/netstandard1.0/hy/Humanizer.resources.dll", + "lib/netstandard2.0/hy/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.id/2.14.1": { + "sha512": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", + "type": "package", + "path": "humanizer.core.id/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.id.2.14.1.nupkg.sha512", + "humanizer.core.id.nuspec", + "lib/net6.0/id/Humanizer.resources.dll", + "lib/netstandard1.0/id/Humanizer.resources.dll", + "lib/netstandard2.0/id/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.is/2.14.1": { + "sha512": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", + "type": "package", + "path": "humanizer.core.is/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.is.2.14.1.nupkg.sha512", + "humanizer.core.is.nuspec", + "lib/net6.0/is/Humanizer.resources.dll", + "lib/netstandard1.0/is/Humanizer.resources.dll", + "lib/netstandard2.0/is/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.it/2.14.1": { + "sha512": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", + "type": "package", + "path": "humanizer.core.it/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.it.2.14.1.nupkg.sha512", + "humanizer.core.it.nuspec", + "lib/net6.0/it/Humanizer.resources.dll", + "lib/netstandard1.0/it/Humanizer.resources.dll", + "lib/netstandard2.0/it/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ja/2.14.1": { + "sha512": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", + "type": "package", + "path": "humanizer.core.ja/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ja.2.14.1.nupkg.sha512", + "humanizer.core.ja.nuspec", + "lib/net6.0/ja/Humanizer.resources.dll", + "lib/netstandard1.0/ja/Humanizer.resources.dll", + "lib/netstandard2.0/ja/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ko-KR/2.14.1": { + "sha512": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", + "type": "package", + "path": "humanizer.core.ko-kr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "humanizer.core.ko-kr.nuspec", + "lib/netstandard1.0/ko-KR/Humanizer.resources.dll", + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ku/2.14.1": { + "sha512": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", + "type": "package", + "path": "humanizer.core.ku/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ku.2.14.1.nupkg.sha512", + "humanizer.core.ku.nuspec", + "lib/net6.0/ku/Humanizer.resources.dll", + "lib/netstandard1.0/ku/Humanizer.resources.dll", + "lib/netstandard2.0/ku/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.lv/2.14.1": { + "sha512": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", + "type": "package", + "path": "humanizer.core.lv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.lv.2.14.1.nupkg.sha512", + "humanizer.core.lv.nuspec", + "lib/net6.0/lv/Humanizer.resources.dll", + "lib/netstandard1.0/lv/Humanizer.resources.dll", + "lib/netstandard2.0/lv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ms-MY/2.14.1": { + "sha512": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", + "type": "package", + "path": "humanizer.core.ms-my/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ms-my.2.14.1.nupkg.sha512", + "humanizer.core.ms-my.nuspec", + "lib/netstandard1.0/ms-MY/Humanizer.resources.dll", + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.mt/2.14.1": { + "sha512": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", + "type": "package", + "path": "humanizer.core.mt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.mt.2.14.1.nupkg.sha512", + "humanizer.core.mt.nuspec", + "lib/netstandard1.0/mt/Humanizer.resources.dll", + "lib/netstandard2.0/mt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb/2.14.1": { + "sha512": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", + "type": "package", + "path": "humanizer.core.nb/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb.2.14.1.nupkg.sha512", + "humanizer.core.nb.nuspec", + "lib/net6.0/nb/Humanizer.resources.dll", + "lib/netstandard1.0/nb/Humanizer.resources.dll", + "lib/netstandard2.0/nb/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb-NO/2.14.1": { + "sha512": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", + "type": "package", + "path": "humanizer.core.nb-no/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb-no.2.14.1.nupkg.sha512", + "humanizer.core.nb-no.nuspec", + "lib/net6.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard1.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard2.0/nb-NO/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nl/2.14.1": { + "sha512": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", + "type": "package", + "path": "humanizer.core.nl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nl.2.14.1.nupkg.sha512", + "humanizer.core.nl.nuspec", + "lib/net6.0/nl/Humanizer.resources.dll", + "lib/netstandard1.0/nl/Humanizer.resources.dll", + "lib/netstandard2.0/nl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pl/2.14.1": { + "sha512": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", + "type": "package", + "path": "humanizer.core.pl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pl.2.14.1.nupkg.sha512", + "humanizer.core.pl.nuspec", + "lib/net6.0/pl/Humanizer.resources.dll", + "lib/netstandard1.0/pl/Humanizer.resources.dll", + "lib/netstandard2.0/pl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pt/2.14.1": { + "sha512": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", + "type": "package", + "path": "humanizer.core.pt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pt.2.14.1.nupkg.sha512", + "humanizer.core.pt.nuspec", + "lib/net6.0/pt/Humanizer.resources.dll", + "lib/netstandard1.0/pt/Humanizer.resources.dll", + "lib/netstandard2.0/pt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ro/2.14.1": { + "sha512": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", + "type": "package", + "path": "humanizer.core.ro/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ro.2.14.1.nupkg.sha512", + "humanizer.core.ro.nuspec", + "lib/net6.0/ro/Humanizer.resources.dll", + "lib/netstandard1.0/ro/Humanizer.resources.dll", + "lib/netstandard2.0/ro/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ru/2.14.1": { + "sha512": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", + "type": "package", + "path": "humanizer.core.ru/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ru.2.14.1.nupkg.sha512", + "humanizer.core.ru.nuspec", + "lib/net6.0/ru/Humanizer.resources.dll", + "lib/netstandard1.0/ru/Humanizer.resources.dll", + "lib/netstandard2.0/ru/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sk/2.14.1": { + "sha512": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", + "type": "package", + "path": "humanizer.core.sk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sk.2.14.1.nupkg.sha512", + "humanizer.core.sk.nuspec", + "lib/net6.0/sk/Humanizer.resources.dll", + "lib/netstandard1.0/sk/Humanizer.resources.dll", + "lib/netstandard2.0/sk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sl/2.14.1": { + "sha512": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", + "type": "package", + "path": "humanizer.core.sl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sl.2.14.1.nupkg.sha512", + "humanizer.core.sl.nuspec", + "lib/net6.0/sl/Humanizer.resources.dll", + "lib/netstandard1.0/sl/Humanizer.resources.dll", + "lib/netstandard2.0/sl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr/2.14.1": { + "sha512": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", + "type": "package", + "path": "humanizer.core.sr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr.2.14.1.nupkg.sha512", + "humanizer.core.sr.nuspec", + "lib/net6.0/sr/Humanizer.resources.dll", + "lib/netstandard1.0/sr/Humanizer.resources.dll", + "lib/netstandard2.0/sr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "sha512": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", + "type": "package", + "path": "humanizer.core.sr-latn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "humanizer.core.sr-latn.nuspec", + "lib/net6.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard1.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard2.0/sr-Latn/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sv/2.14.1": { + "sha512": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", + "type": "package", + "path": "humanizer.core.sv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sv.2.14.1.nupkg.sha512", + "humanizer.core.sv.nuspec", + "lib/net6.0/sv/Humanizer.resources.dll", + "lib/netstandard1.0/sv/Humanizer.resources.dll", + "lib/netstandard2.0/sv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.th-TH/2.14.1": { + "sha512": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", + "type": "package", + "path": "humanizer.core.th-th/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.th-th.2.14.1.nupkg.sha512", + "humanizer.core.th-th.nuspec", + "lib/netstandard1.0/th-TH/Humanizer.resources.dll", + "lib/netstandard2.0/th-TH/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.tr/2.14.1": { + "sha512": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", + "type": "package", + "path": "humanizer.core.tr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.tr.2.14.1.nupkg.sha512", + "humanizer.core.tr.nuspec", + "lib/net6.0/tr/Humanizer.resources.dll", + "lib/netstandard1.0/tr/Humanizer.resources.dll", + "lib/netstandard2.0/tr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uk/2.14.1": { + "sha512": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", + "type": "package", + "path": "humanizer.core.uk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uk.2.14.1.nupkg.sha512", + "humanizer.core.uk.nuspec", + "lib/net6.0/uk/Humanizer.resources.dll", + "lib/netstandard1.0/uk/Humanizer.resources.dll", + "lib/netstandard2.0/uk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "sha512": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", + "type": "package", + "path": "humanizer.core.uz-cyrl-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-cyrl-uz.nuspec", + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "sha512": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", + "type": "package", + "path": "humanizer.core.uz-latn-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-latn-uz.nuspec", + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Latn-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.vi/2.14.1": { + "sha512": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", + "type": "package", + "path": "humanizer.core.vi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.vi.2.14.1.nupkg.sha512", + "humanizer.core.vi.nuspec", + "lib/net6.0/vi/Humanizer.resources.dll", + "lib/netstandard1.0/vi/Humanizer.resources.dll", + "lib/netstandard2.0/vi/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-CN/2.14.1": { + "sha512": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", + "type": "package", + "path": "humanizer.core.zh-cn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "humanizer.core.zh-cn.nuspec", + "lib/net6.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard1.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard2.0/zh-CN/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "sha512": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", + "type": "package", + "path": "humanizer.core.zh-hans/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "humanizer.core.zh-hans.nuspec", + "lib/net6.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hans/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "sha512": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", + "type": "package", + "path": "humanizer.core.zh-hant/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "humanizer.core.zh-hant.nuspec", + "lib/net6.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hant/Humanizer.resources.dll", + "logo.png" + ] + }, + "LigerShark.WebOptimizer.Core/3.0.426": { + "sha512": "Mc4FFKL40n2f4ognnwDrvFxLt+2CdsovhCobaS8u2HXriS2OP8uMDwDIwmE2irlAW+HhR04a+wF1XImtFPxxRg==", + "type": "package", + "path": "ligershark.weboptimizer.core/3.0.426", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "build/LigerShark.WebOptimizer.Core.props", + "build/LigerShark.WebOptimizer.Core.targets", + "lib/net6.0/WebOptimizer.Core.dll", + "lib/net6.0/WebOptimizer.Core.xml", + "lib/net8.0/WebOptimizer.Core.dll", + "lib/net8.0/WebOptimizer.Core.xml", + "ligershark.weboptimizer.core.3.0.426.nupkg.sha512", + "ligershark.weboptimizer.core.nuspec", + "logo.png" + ] + }, + "linq2db/5.4.1": { + "sha512": "qyH32MbFK6T55KsEcQYTbPFfkOa1Mo65lY/Zo8SFVMy0pwkQBCTnA/RUxyG5+l3D/mgfPz85PH3upDrtklSMrw==", + "type": "package", + "path": "linq2db/5.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MIT-LICENSE.txt", + "README.md", + "images/icon.png", + "lib/net45/linq2db.dll", + "lib/net45/linq2db.xml", + "lib/net46/linq2db.dll", + "lib/net46/linq2db.xml", + "lib/net472/linq2db.dll", + "lib/net472/linq2db.xml", + "lib/net6.0/linq2db.dll", + "lib/net6.0/linq2db.xml", + "lib/netcoreapp3.1/linq2db.dll", + "lib/netcoreapp3.1/linq2db.xml", + "lib/netstandard2.0/linq2db.dll", + "lib/netstandard2.0/linq2db.xml", + "lib/netstandard2.1/linq2db.dll", + "lib/netstandard2.1/linq2db.xml", + "linq2db.5.4.1.nupkg.sha512", + "linq2db.nuspec" + ] + }, + "MailKit/4.8.0": { + "sha512": "zZ1UoM4FUnSFUJ9fTl5CEEaejR0DNP6+FDt1OfXnjg4igZntcir1tg/8Ufd6WY5vrpmvToAjluYqjVM24A+5lA==", + "type": "package", + "path": "mailkit/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/ExchangeOAuth2.md", + "docs/FAQ.md", + "docs/GMailOAuth2.md", + "docs/README.md", + "icons/mailkit-50.png", + "lib/net462/MailKit.dll", + "lib/net462/MailKit.dll.config", + "lib/net462/MailKit.pdb", + "lib/net462/MailKit.xml", + "lib/net47/MailKit.dll", + "lib/net47/MailKit.dll.config", + "lib/net47/MailKit.pdb", + "lib/net47/MailKit.xml", + "lib/net48/MailKit.dll", + "lib/net48/MailKit.dll.config", + "lib/net48/MailKit.pdb", + "lib/net48/MailKit.xml", + "lib/net6.0/MailKit.dll", + "lib/net6.0/MailKit.dll.config", + "lib/net6.0/MailKit.pdb", + "lib/net6.0/MailKit.xml", + "lib/net8.0/MailKit.dll", + "lib/net8.0/MailKit.dll.config", + "lib/net8.0/MailKit.pdb", + "lib/net8.0/MailKit.xml", + "lib/netstandard2.0/MailKit.dll", + "lib/netstandard2.0/MailKit.dll.config", + "lib/netstandard2.0/MailKit.pdb", + "lib/netstandard2.0/MailKit.xml", + "lib/netstandard2.1/MailKit.dll", + "lib/netstandard2.1/MailKit.dll.config", + "lib/netstandard2.1/MailKit.pdb", + "lib/netstandard2.1/MailKit.xml", + "mailkit.4.8.0.nupkg.sha512", + "mailkit.nuspec" + ] + }, + "MaxMind.Db/4.1.0": { + "sha512": "lEjCFX0TUQCRmFS8xrXIQSi+4omJ1Fwy0gAHlbnjg8cgSBa0cllP5zOEftQ23EP247EbnF7mNCQ3JsG/bMkHAA==", + "type": "package", + "path": "maxmind.db/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MaxMind-logo.png", + "README.md", + "lib/net6.0/MaxMind.Db.dll", + "lib/net6.0/MaxMind.Db.xml", + "lib/net7.0/MaxMind.Db.dll", + "lib/net7.0/MaxMind.Db.xml", + "lib/net8.0/MaxMind.Db.dll", + "lib/net8.0/MaxMind.Db.xml", + "lib/netstandard2.0/MaxMind.Db.dll", + "lib/netstandard2.0/MaxMind.Db.xml", + "lib/netstandard2.1/MaxMind.Db.dll", + "lib/netstandard2.1/MaxMind.Db.xml", + "maxmind.db.4.1.0.nupkg.sha512", + "maxmind.db.nuspec" + ] + }, + "MaxMind.GeoIP2/5.2.0": { + "sha512": "E8i6yQPlAznLTfS8w208uY3oqCg6i7sQ9cxKmlDdhFMXVLfm4sKphOTMsIWdAHJCV7RxW2a3DlqxAPkQrqmqlA==", + "type": "package", + "path": "maxmind.geoip2/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MaxMind-logo.png", + "README.md", + "lib/net6.0/MaxMind.GeoIP2.dll", + "lib/net6.0/MaxMind.GeoIP2.xml", + "lib/net7.0/MaxMind.GeoIP2.dll", + "lib/net7.0/MaxMind.GeoIP2.xml", + "lib/net8.0/MaxMind.GeoIP2.dll", + "lib/net8.0/MaxMind.GeoIP2.xml", + "lib/netstandard2.0/MaxMind.GeoIP2.dll", + "lib/netstandard2.0/MaxMind.GeoIP2.xml", + "lib/netstandard2.1/MaxMind.GeoIP2.dll", + "lib/netstandard2.1/MaxMind.GeoIP2.xml", + "maxmind.geoip2.5.2.0.nupkg.sha512", + "maxmind.geoip2.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.32": { + "sha512": "tULjwFie6fYm4o6WfD+aHTTrps2I22MQVZpmEWaJumFmzZWA1nHsKezuCBl/u/iKiXtN3npL6MoINaiLHURr/A==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection/3.1.32": { + "sha512": "D46awzK+Q0jP7Bq0cQlsxQrhg7MBhlxG2z+U+9EzcbjcjaDzQvaD5/cxD+qKdu9bHMcSFf9fMr5wizSBPPai1Q==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml", + "microsoft.aspnetcore.dataprotection.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.32": { + "sha512": "MPL4iVyiaRxnOUY5VATHjvhDWaAEFb77KFiUxVRklv3Z3v+STofUr1UG/aCt1O9cgN7FVTDaC5A7U+zsLub8Xg==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "microsoft.aspnetcore.dataprotection.abstractions.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.JsonPatch/8.0.10": { + "sha512": "pLEDpobrApzc+9IgnlwMfWHfVaOWdNlBFgfggxFgMw57sn/iTkPMwc8eaufcKcLyCCNZQ1r6GRLsIIzUMtH8eg==", + "type": "package", + "path": "microsoft.aspnetcore.jsonpatch/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net462/Microsoft.AspNetCore.JsonPatch.xml", + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", + "microsoft.aspnetcore.jsonpatch.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.jsonpatch.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.10": { + "sha512": "2DIFj+w15yFIQbh4AgQQC8m0UJfhiF20s3h/DlTyiPGgNfijZ9TxqauYqaj81hF5Pc9wUg9agvxlH+4eUFjoRg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml", + "microsoft.aspnetcore.mvc.newtonsoftjson.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": { + "sha512": "M0h+ChPgydX2xY17agiphnAVa/Qh05RAP8eeuqGGhQKT10claRBlLNO6d2/oSV8zy0RLHzwLnNZm5xuC/gckGA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", + "microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/8.0.10": { + "sha512": "FM83yTM+cyfHWMAyh86KXh7ZGrwOQLyGDG6LB3erO8kxwmdMN5zBkYxJmIfXhjRL07+q1mpO7gqUkBvyGy6NfQ==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "build/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Language/6.0.0": { + "sha512": "yCtBr1GSGzJrrp1NJUb4ltwFYMKHw/tJLnIDvg9g/FnkGIEzmE19tbCQqXARIJv5kdtBgsoVIdGLL+zmjxvM/A==", + "type": "package", + "path": "microsoft.aspnetcore.razor.language/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", + "microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512", + "microsoft.aspnetcore.razor.language.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.rtf", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "build/Microsoft.CodeAnalysis.Analyzers.targets", + "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_Default.editorconfig", + "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_Default.editorconfig", + "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_Default.editorconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "sha512": "d02ybMhUJl1r/dI6SkJPHrTiTzXBYCZeJdOLMckV+jyoMU/GGkjqFX/sRbv1K0QmlpwwKuLTiYVQvfYC+8ox2g==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.4.0.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "sha512": "2UVTGtyQGgTCazvnT6t82f+7AV2L+kqJdyb61rT9GQed4yK+tVh5IkaKcsm70VqyZQhBbDqsfZFNHnY65xhrRw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Razor/6.0.0": { + "sha512": "uqdzuQXxD7XrJCbIbbwpI/LOv0PBJ9VIR0gdvANTHOfK5pjTaCir+XcwvYvBZ5BIzd0KGzyiamzlEWw1cK1q0w==", + "type": "package", + "path": "microsoft.codeanalysis.razor/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", + "microsoft.codeanalysis.razor.6.0.0.nupkg.sha512", + "microsoft.codeanalysis.razor.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/5.2.0": { + "sha512": "3alfyqRN3ELRtdvU1dGtLBRNQqprr3TJ0WrUJfMISPwg1nPUN2P3Lelah68IKWuV27Ceb7ig95hWNHFTSXfxMg==", + "type": "package", + "path": "microsoft.data.sqlclient/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net462/Microsoft.Data.SqlClient.dll", + "lib/net462/Microsoft.Data.SqlClient.xml", + "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/Microsoft.Data.SqlClient.dll", + "lib/net6.0/Microsoft.Data.SqlClient.xml", + "lib/net6.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/Microsoft.Data.SqlClient.dll", + "lib/net8.0/Microsoft.Data.SqlClient.xml", + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "microsoft.data.sqlclient.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net462/Microsoft.Data.SqlClient.dll", + "ref/net462/Microsoft.Data.SqlClient.xml", + "ref/net6.0/Microsoft.Data.SqlClient.dll", + "ref/net6.0/Microsoft.Data.SqlClient.xml", + "ref/net8.0/Microsoft.Data.SqlClient.dll", + "ref/net8.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "sha512": "po1jhvFd+8pbfvJR/puh+fkHi0GRanAdvayh/0e47yaM6CXWZ6opUjCMFuYlAnD2LcbyvQE7fPJKvogmaUcN+w==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.SqlServer/8.0.10": { + "sha512": "Cz0qWHBA4UsM46BI/nehilD8dyglAYZ59gBkbgUzOnq9y4g52jb5R6wu7lKOyOi/pJx/VSt/Tt5LAbtxa27ZJw==", + "type": "package", + "path": "microsoft.extensions.caching.sqlserver/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/net462/Microsoft.Extensions.Caching.SqlServer.xml", + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.xml", + "microsoft.extensions.caching.sqlserver.8.0.10.nupkg.sha512", + "microsoft.extensions.caching.sqlserver.nuspec" + ] + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/8.0.10": { + "sha512": "60BGmEIij4UjMf6iG9hUQy6+aZC5X4UVNpJ0O/TU2Dt3z/XnNuC/vgjtpbfrhYdkeVegqFwGIHnWk/kEI4eddA==", + "type": "package", + "path": "microsoft.extensions.caching.stackexchangeredis/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net462/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "microsoft.extensions.caching.stackexchangeredis.8.0.10.nupkg.sha512", + "microsoft.extensions.caching.stackexchangeredis.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "sha512": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.32": { + "sha512": "sS+U28IfgZSQUS2b3MayPdYGBJlHOWwgnfAZ77bZLkgU0z+lJz7lgzrKQUm9SgKF+OAc5B9kWJV5PB6l7mWWZA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.3.1.32.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.32": { + "sha512": "00J6eE920t5vfPnEHBSGyj1Ya9lG6WYsMwqvLZ0nMPPTD2UxkaL+FNJM5DNSnMFJtV84KkUudPRngmNiCkqhuA==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.3.1.32.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/6.0.16": { + "sha512": "OVX5tlKg6LY+XKqlUn7i9KY+6Liut0iewWff2DNr7129i/NJ8rpUzbmxavPydZgcLREEWHklXZiPKCS895tNIQ==", + "type": "package", + "path": "microsoft.extensions.objectpool/6.0.16", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.ObjectPool.dll", + "lib/net461/Microsoft.Extensions.ObjectPool.xml", + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net6.0/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.6.0.16.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/8.0.2": { + "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "type": "package", + "path": "microsoft.extensions.options/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.2.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.66.1": { + "sha512": "mE+m3pZ7zSKocSubKXxwZcUrCzLflC86IdLxrVjS8tialy0b1L+aECBqRBC/ykcPlB4y7skg49TaTiA+O2UfDw==", + "type": "package", + "path": "microsoft.identity.client/4.66.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.Identity.Client.dll", + "lib/net462/Microsoft.Identity.Client.xml", + "lib/net472/Microsoft.Identity.Client.dll", + "lib/net472/Microsoft.Identity.Client.xml", + "lib/net6.0-android31.0/Microsoft.Identity.Client.dll", + "lib/net6.0-android31.0/Microsoft.Identity.Client.xml", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml", + "lib/net6.0/Microsoft.Identity.Client.dll", + "lib/net6.0/Microsoft.Identity.Client.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.66.1.nupkg.sha512", + "microsoft.identity.client.nuspec" + ] + }, + "Microsoft.Identity.Client.Extensions.Msal/4.65.0": { + "sha512": "JIOBFMAyVSqGWP4dNoST+A9BRJMGC8m73BNbR1oKA8nUjGyR8Fd4eOOME/VDrd26I5JWU4RtmWqpt20lpp2r5w==", + "type": "package", + "path": "microsoft.identity.client.extensions.msal/4.65.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "microsoft.identity.client.extensions.msal.4.65.0.nupkg.sha512", + "microsoft.identity.client.extensions.msal.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", + "type": "package", + "path": "microsoft.netcore.platforms/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.SqlServer.Server/1.0.0": { + "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "type": "package", + "path": "microsoft.sqlserver.server/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.SqlServer.Server.dll", + "lib/net46/Microsoft.SqlServer.Server.pdb", + "lib/net46/Microsoft.SqlServer.Server.xml", + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", + "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", + "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", + "microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "microsoft.sqlserver.server.nuspec" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MimeKit/4.8.0": { + "sha512": "U24wp4LKED+sBRzyrWICE+3bSwptsTrPOcCIXbW5zfeThCNzQx5NCo8Wus+Rmi+EUkQrCwlI/3sVfejeq9tuxQ==", + "type": "package", + "path": "mimekit/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/FAQ.md", + "docs/README.md", + "icons/mimekit-50.png", + "lib/net462/MimeKit.dll", + "lib/net462/MimeKit.dll.config", + "lib/net462/MimeKit.pdb", + "lib/net462/MimeKit.xml", + "lib/net47/MimeKit.dll", + "lib/net47/MimeKit.dll.config", + "lib/net47/MimeKit.pdb", + "lib/net47/MimeKit.xml", + "lib/net48/MimeKit.dll", + "lib/net48/MimeKit.dll.config", + "lib/net48/MimeKit.pdb", + "lib/net48/MimeKit.xml", + "lib/net6.0/MimeKit.dll", + "lib/net6.0/MimeKit.dll.config", + "lib/net6.0/MimeKit.pdb", + "lib/net6.0/MimeKit.xml", + "lib/net8.0/MimeKit.dll", + "lib/net8.0/MimeKit.dll.config", + "lib/net8.0/MimeKit.pdb", + "lib/net8.0/MimeKit.xml", + "lib/netstandard2.0/MimeKit.dll", + "lib/netstandard2.0/MimeKit.dll.config", + "lib/netstandard2.0/MimeKit.pdb", + "lib/netstandard2.0/MimeKit.xml", + "lib/netstandard2.1/MimeKit.dll", + "lib/netstandard2.1/MimeKit.dll.config", + "lib/netstandard2.1/MimeKit.pdb", + "lib/netstandard2.1/MimeKit.xml", + "mimekit.4.8.0.nupkg.sha512", + "mimekit.nuspec" + ] + }, + "MySqlConnector/2.3.7": { + "sha512": "YiVOxvJ+vAYW8NT9gHv8RxKCDFCSXAObF3z0Ou/8WRv8Lsn2QsxaPW5xEwPE+xCcAq6BGkrI8GTOC09Xg09blQ==", + "type": "package", + "path": "mysqlconnector/2.3.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/MySqlConnector.dll", + "lib/net462/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net48/MySqlConnector.dll", + "lib/net48/MySqlConnector.xml", + "lib/net6.0/MySqlConnector.dll", + "lib/net6.0/MySqlConnector.xml", + "lib/net7.0/MySqlConnector.dll", + "lib/net7.0/MySqlConnector.xml", + "lib/net8.0/MySqlConnector.dll", + "lib/net8.0/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.2.3.7.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Newtonsoft.Json.Bson/1.0.2": { + "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.pdb", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", + "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", + "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.2.nupkg.sha512", + "newtonsoft.json.bson.nuspec" + ] + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "sha512": "QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==", + "type": "package", + "path": "nito.asyncex.coordination/5.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.AsyncEx.Coordination.dll", + "lib/net461/Nito.AsyncEx.Coordination.xml", + "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll", + "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml", + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll", + "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml", + "nito.asyncex.coordination.5.1.2.nupkg.sha512", + "nito.asyncex.coordination.nuspec" + ] + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "sha512": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==", + "type": "package", + "path": "nito.asyncex.tasks/5.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.AsyncEx.Tasks.dll", + "lib/net461/Nito.AsyncEx.Tasks.xml", + "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll", + "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml", + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll", + "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml", + "nito.asyncex.tasks.5.1.2.nupkg.sha512", + "nito.asyncex.tasks.nuspec" + ] + }, + "Nito.Collections.Deque/1.1.1": { + "sha512": "CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==", + "type": "package", + "path": "nito.collections.deque/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.Collections.Deque.dll", + "lib/net461/Nito.Collections.Deque.xml", + "lib/netstandard1.0/Nito.Collections.Deque.dll", + "lib/netstandard1.0/Nito.Collections.Deque.xml", + "lib/netstandard2.0/Nito.Collections.Deque.dll", + "lib/netstandard2.0/Nito.Collections.Deque.xml", + "nito.collections.deque.1.1.1.nupkg.sha512", + "nito.collections.deque.nuspec" + ] + }, + "Nito.Disposables/2.2.1": { + "sha512": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==", + "type": "package", + "path": "nito.disposables/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.Disposables.dll", + "lib/net461/Nito.Disposables.xml", + "lib/netstandard1.0/Nito.Disposables.dll", + "lib/netstandard1.0/Nito.Disposables.xml", + "lib/netstandard2.0/Nito.Disposables.dll", + "lib/netstandard2.0/Nito.Disposables.xml", + "lib/netstandard2.1/Nito.Disposables.dll", + "lib/netstandard2.1/Nito.Disposables.xml", + "nito.disposables.2.2.1.nupkg.sha512", + "nito.disposables.nuspec" + ] + }, + "Npgsql/8.0.5": { + "sha512": "zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==", + "type": "package", + "path": "npgsql/8.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net7.0/Npgsql.dll", + "lib/net7.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.8.0.5.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "NUglify/1.21.9": { + "sha512": "ULyI/scrIRAo2In6cnaCc/QkWUt+wB6pBVt5lrVddOKyamsCAm1XgArkk4px9tVn6SipjhbTt4M38QPlpoET+g==", + "type": "package", + "path": "nuglify/1.21.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/NUglify.dll", + "lib/net35/NUglify.xml", + "lib/net40/NUglify.dll", + "lib/net40/NUglify.xml", + "lib/net5.0/NUglify.dll", + "lib/net5.0/NUglify.xml", + "lib/netstandard1.3/NUglify.dll", + "lib/netstandard1.3/NUglify.xml", + "lib/netstandard2.0/NUglify.dll", + "lib/netstandard2.0/NUglify.xml", + "nuglify.1.21.9.nupkg.sha512", + "nuglify.nuspec", + "nuglify.png" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", + "type": "package", + "path": "pipelines.sockets.unofficial/2.2.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Pipelines.Sockets.Unofficial.dll", + "lib/net461/Pipelines.Sockets.Unofficial.xml", + "lib/net472/Pipelines.Sockets.Unofficial.dll", + "lib/net472/Pipelines.Sockets.Unofficial.xml", + "lib/net5.0/Pipelines.Sockets.Unofficial.dll", + "lib/net5.0/Pipelines.Sockets.Unofficial.xml", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", + "pipelines.sockets.unofficial.2.2.8.nupkg.sha512", + "pipelines.sockets.unofficial.nuspec" + ] + }, + "QuestPDF/2024.10.1": { + "sha512": "pjPmQ/K5yI9EDuLceHa+HTPYMLAN0Lgpfmhsf4SxNhkU/nJ3Qc9k2d9wSg+1DNrub6hh2uJZx5xOk2jN6CNlew==", + "type": "package", + "path": "questpdf/2024.10.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Contributors.md", + "Description.md", + "Documentation.xml", + "ExternalDependencyLicenses/emsdk.txt", + "ExternalDependencyLicenses/expat.txt", + "ExternalDependencyLicenses/harfbuzz.txt", + "ExternalDependencyLicenses/icu.txt", + "ExternalDependencyLicenses/libjpeg-turbo.txt", + "ExternalDependencyLicenses/libpng.txt", + "ExternalDependencyLicenses/libwebp.txt", + "ExternalDependencyLicenses/ninja-build.txt", + "ExternalDependencyLicenses/readme.txt", + "ExternalDependencyLicenses/skia.txt", + "ExternalDependencyLicenses/wuffs.txt", + "ExternalDependencyLicenses/zlib.txt", + "LatoFont/Lato-Black.ttf", + "LatoFont/Lato-BlackItalic.ttf", + "LatoFont/Lato-Bold.ttf", + "LatoFont/Lato-BoldItalic.ttf", + "LatoFont/Lato-ExtraBold.ttf", + "LatoFont/Lato-ExtraBoldItalic.ttf", + "LatoFont/Lato-ExtraLight.ttf", + "LatoFont/Lato-ExtraLightItalic.ttf", + "LatoFont/Lato-Italic.ttf", + "LatoFont/Lato-Light.ttf", + "LatoFont/Lato-LightItalic.ttf", + "LatoFont/Lato-Medium.ttf", + "LatoFont/Lato-MediumItalic.ttf", + "LatoFont/Lato-Regular.ttf", + "LatoFont/Lato-SemiBold.ttf", + "LatoFont/Lato-SemiBoldItalic.ttf", + "LatoFont/Lato-Thin.ttf", + "LatoFont/Lato-ThinItalic.ttf", + "LatoFont/OFL.txt", + "Logo.png", + "PackageLicense.md", + "PackageReadme.md", + "ReleaseNotes.txt", + "build/QuestPDF.targets", + "build/net4/QuestPDF.targets", + "buildTransitive/QuestPDF.targets", + "buildTransitive/net4/QuestPDF.targets", + "lib/net6.0/QuestPDF.dll", + "lib/net6.0/QuestPDF.xml", + "lib/net8.0/QuestPDF.dll", + "lib/net8.0/QuestPDF.xml", + "lib/netstandard2.0/QuestPDF.dll", + "lib/netstandard2.0/QuestPDF.xml", + "questpdf.2024.10.1.nupkg.sha512", + "questpdf.nuspec", + "runtimes/linux-arm64/native/libQuestPdfSkia.so", + "runtimes/linux-musl-x64/native/libQuestPdfSkia.so", + "runtimes/linux-x64/native/libQuestPdfSkia.so", + "runtimes/osx-arm64/native/libQuestPdfSkia.dylib", + "runtimes/osx-x64/native/libQuestPdfSkia.dylib", + "runtimes/win-x64/native/QuestPdfSkia.dll", + "runtimes/win-x86/native/QuestPdfSkia.dll" + ] + }, + "RBush/3.2.0": { + "sha512": "ijGh9N0zZ7JfXk3oQkWCwK8SwSSByexbyh/MjbCjNxOft9eG5ZqKC1vdgiYq78h4IZRFmN4s3JZ/b10Jipud5w==", + "type": "package", + "path": "rbush/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/RBush.dll", + "lib/net6.0/RBush.xml", + "lib/netcoreapp3.1/RBush.dll", + "lib/netcoreapp3.1/RBush.xml", + "lib/netstandard1.2/RBush.dll", + "lib/netstandard1.2/RBush.xml", + "rbush.3.2.0.nupkg.sha512", + "rbush.nuspec", + "readme.md" + ] + }, + "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" + ] + }, + "ShimSkiaSharp/2.0.0.1": { + "sha512": "UcUtnhIlriwCmgThNdCjNqfjX1JCMxrx3xzYrcXovMVoxMWi8ulQAwa21vz2NiyaXkHfu4fYcNH2aeLVYxHq9Q==", + "type": "package", + "path": "shimskiasharp/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/ShimSkiaSharp.dll", + "lib/net6.0/ShimSkiaSharp.dll", + "lib/net8.0/ShimSkiaSharp.dll", + "lib/netstandard2.0/ShimSkiaSharp.dll", + "shimskiasharp.2.0.0.1.nupkg.sha512", + "shimskiasharp.nuspec" + ] + }, + "SixLabors.Fonts/1.0.0": { + "sha512": "LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==", + "type": "package", + "path": "sixlabors.fonts/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/SixLabors.Fonts.dll", + "lib/netcoreapp3.1/SixLabors.Fonts.xml", + "lib/netstandard2.0/SixLabors.Fonts.dll", + "lib/netstandard2.0/SixLabors.Fonts.xml", + "lib/netstandard2.1/SixLabors.Fonts.dll", + "lib/netstandard2.1/SixLabors.Fonts.xml", + "sixlabors.fonts.1.0.0.nupkg.sha512", + "sixlabors.fonts.128.png", + "sixlabors.fonts.nuspec" + ] + }, + "SkiaSharp/2.88.8": { + "sha512": "bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==", + "type": "package", + "path": "skiasharp/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll", + "lib/monoandroid1.0/SkiaSharp.dll", + "lib/monoandroid1.0/SkiaSharp.pdb", + "lib/monoandroid1.0/SkiaSharp.xml", + "lib/net462/SkiaSharp.dll", + "lib/net462/SkiaSharp.pdb", + "lib/net462/SkiaSharp.xml", + "lib/net6.0-android30.0/SkiaSharp.dll", + "lib/net6.0-android30.0/SkiaSharp.pdb", + "lib/net6.0-android30.0/SkiaSharp.xml", + "lib/net6.0-ios13.6/SkiaSharp.dll", + "lib/net6.0-ios13.6/SkiaSharp.pdb", + "lib/net6.0-ios13.6/SkiaSharp.xml", + "lib/net6.0-maccatalyst13.5/SkiaSharp.dll", + "lib/net6.0-maccatalyst13.5/SkiaSharp.pdb", + "lib/net6.0-maccatalyst13.5/SkiaSharp.xml", + "lib/net6.0-macos10.15/SkiaSharp.dll", + "lib/net6.0-macos10.15/SkiaSharp.pdb", + "lib/net6.0-macos10.15/SkiaSharp.xml", + "lib/net6.0-tizen7.0/SkiaSharp.dll", + "lib/net6.0-tizen7.0/SkiaSharp.pdb", + "lib/net6.0-tizen7.0/SkiaSharp.xml", + "lib/net6.0-tvos13.4/SkiaSharp.dll", + "lib/net6.0-tvos13.4/SkiaSharp.pdb", + "lib/net6.0-tvos13.4/SkiaSharp.xml", + "lib/net6.0/SkiaSharp.dll", + "lib/net6.0/SkiaSharp.pdb", + "lib/net6.0/SkiaSharp.xml", + "lib/netcoreapp3.1/SkiaSharp.dll", + "lib/netcoreapp3.1/SkiaSharp.pdb", + "lib/netcoreapp3.1/SkiaSharp.xml", + "lib/netstandard1.3/SkiaSharp.dll", + "lib/netstandard1.3/SkiaSharp.pdb", + "lib/netstandard1.3/SkiaSharp.xml", + "lib/netstandard2.0/SkiaSharp.dll", + "lib/netstandard2.0/SkiaSharp.pdb", + "lib/netstandard2.0/SkiaSharp.xml", + "lib/netstandard2.1/SkiaSharp.dll", + "lib/netstandard2.1/SkiaSharp.pdb", + "lib/netstandard2.1/SkiaSharp.xml", + "lib/tizen40/SkiaSharp.dll", + "lib/tizen40/SkiaSharp.pdb", + "lib/tizen40/SkiaSharp.xml", + "lib/uap10.0.10240/SkiaSharp.dll", + "lib/uap10.0.10240/SkiaSharp.pdb", + "lib/uap10.0.10240/SkiaSharp.xml", + "lib/uap10.0.16299/SkiaSharp.dll", + "lib/uap10.0.16299/SkiaSharp.pdb", + "lib/uap10.0.16299/SkiaSharp.xml", + "lib/xamarinios1.0/SkiaSharp.dll", + "lib/xamarinios1.0/SkiaSharp.pdb", + "lib/xamarinios1.0/SkiaSharp.xml", + "lib/xamarinmac2.0/SkiaSharp.dll", + "lib/xamarinmac2.0/SkiaSharp.pdb", + "lib/xamarinmac2.0/SkiaSharp.xml", + "lib/xamarintvos1.0/SkiaSharp.dll", + "lib/xamarintvos1.0/SkiaSharp.pdb", + "lib/xamarintvos1.0/SkiaSharp.xml", + "lib/xamarinwatchos1.0/SkiaSharp.dll", + "lib/xamarinwatchos1.0/SkiaSharp.pdb", + "lib/xamarinwatchos1.0/SkiaSharp.xml", + "skiasharp.2.88.8.nupkg.sha512", + "skiasharp.nuspec" + ] + }, + "SkiaSharp.HarfBuzz/2.88.8": { + "sha512": "ajSyJ2D17R0kZ4FwKwFrJTsYs3D3Y9iRBLhNecROR7dOxC6VTFaMPXJuwQB8KYpAqgmb2JAJFEgZ3i8MaaIw1g==", + "type": "package", + "path": "skiasharp.harfbuzz/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net462/SkiaSharp.HarfBuzz.dll", + "lib/net462/SkiaSharp.HarfBuzz.pdb", + "lib/net462/SkiaSharp.HarfBuzz.xml", + "lib/net6.0/SkiaSharp.HarfBuzz.dll", + "lib/net6.0/SkiaSharp.HarfBuzz.pdb", + "lib/net6.0/SkiaSharp.HarfBuzz.xml", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.dll", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.pdb", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.xml", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.dll", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.xml", + "skiasharp.harfbuzz.2.88.8.nupkg.sha512", + "skiasharp.harfbuzz.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.8": { + "sha512": "/DoKtdyvRgCC5GR/SH+ps3ZiOjmf0BYpAyrhWQELFOO1hdcqddrDVJjDNCOJ41vV+NlS5b3kcDoZZ7jLhFjyXg==", + "type": "package", + "path": "skiasharp.nativeassets.linux.nodependencies/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Linux.NoDependencies.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Linux.NoDependencies.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libSkiaSharp.so", + "runtimes/linux-arm64/native/libSkiaSharp.so", + "runtimes/linux-musl-x64/native/libSkiaSharp.so", + "runtimes/linux-x64/native/libSkiaSharp.so", + "skiasharp.nativeassets.linux.nodependencies.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.linux.nodependencies.nuspec" + ] + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "sha512": "6Kn5TSkKlfyS6azWHF3Jk2sW5C4jCE5uSshM/5AbfFrR+5n6qM5XEnz9h4VaVl7LTxBvHvMkuPb/3bpbq0vxTw==", + "type": "package", + "path": "skiasharp.nativeassets.macos/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libSkiaSharp.dylib", + "skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.macos.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "sha512": "O9QXoWEXA+6cweR4h3BOnwMz+pO9vL9mXdjLrpDd0w1QzCgWmLQBxa1VgySDITiH7nQndrDG1h6937zm9pLj1Q==", + "type": "package", + "path": "skiasharp.nativeassets.win32/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libSkiaSharp.dll", + "runtimes/win-x64/native/libSkiaSharp.dll", + "runtimes/win-x86/native/libSkiaSharp.dll", + "skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.win32.nuspec" + ] + }, + "StackExchange.Redis/2.7.27": { + "sha512": "Uqc2OQHglqj9/FfGQ6RkKFkZfHySfZlfmbCl+hc+u2I/IqunfelQ7QJi7ZhvAJxUtu80pildVX6NPLdDaUffOw==", + "type": "package", + "path": "stackexchange.redis/2.7.27", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/StackExchange.Redis.dll", + "lib/net461/StackExchange.Redis.xml", + "lib/net472/StackExchange.Redis.dll", + "lib/net472/StackExchange.Redis.xml", + "lib/net6.0/StackExchange.Redis.dll", + "lib/net6.0/StackExchange.Redis.xml", + "lib/netcoreapp3.1/StackExchange.Redis.dll", + "lib/netcoreapp3.1/StackExchange.Redis.xml", + "lib/netstandard2.0/StackExchange.Redis.dll", + "lib/netstandard2.0/StackExchange.Redis.xml", + "stackexchange.redis.2.7.27.nupkg.sha512", + "stackexchange.redis.nuspec" + ] + }, + "Svg.Custom/2.0.0.1": { + "sha512": "RDQkecvotRs6Cadg0d8IxoXMSkYzVhrYkBWOlS0cW/Krm7Fzr+/LbXdUuXYRnKDoRoSRzzP9GAKmv5Z9oZTM1w==", + "type": "package", + "path": "svg.custom/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Svg.Custom.dll", + "lib/net8.0/Svg.Custom.dll", + "lib/netstandard2.0/Svg.Custom.dll", + "svg.custom.2.0.0.1.nupkg.sha512", + "svg.custom.nuspec" + ] + }, + "Svg.Model/2.0.0.1": { + "sha512": "lHAW6yYC62oKAXmTol2f0Ke6je5VkGTilSvnk4ynZ8577o7/eCnvZyPJcoFPryOX+s+6aAUA1rbbcK1JfsQzEA==", + "type": "package", + "path": "svg.model/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Model.dll", + "lib/net6.0/Svg.Model.dll", + "lib/net8.0/Svg.Model.dll", + "lib/netstandard2.0/Svg.Model.dll", + "svg.model.2.0.0.1.nupkg.sha512", + "svg.model.nuspec" + ] + }, + "Svg.Skia/2.0.0.1": { + "sha512": "yn1+xr8sXV88qdAQbv+O+9Sf8Ymp0SFxDNGvyNWEr8OdyEtBndnzPPW5uHLIxzmsH4JFHaTOpL+wDF8Vj05iFQ==", + "type": "package", + "path": "svg.skia/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Skia.dll", + "lib/net6.0/Svg.Skia.dll", + "lib/net8.0/Svg.Skia.dll", + "lib/netstandard2.0/Svg.Skia.dll", + "svg.skia.2.0.0.1.nupkg.sha512", + "svg.skia.nuspec" + ] + }, + "System.ClientModel/1.1.0": { + "sha512": "UocOlCkxLZrG2CKMAAImPcldJTxeesHnHGHwhJ0pNlZEvEXcWKuQvVOER2/NiOkJGRJk978SNdw3j6/7O9H1lg==", + "type": "package", + "path": "system.clientmodel/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net6.0/System.ClientModel.dll", + "lib/net6.0/System.ClientModel.xml", + "lib/netstandard2.0/System.ClientModel.dll", + "lib/netstandard2.0/System.ClientModel.xml", + "system.clientmodel.1.1.0.nupkg.sha512", + "system.clientmodel.nuspec" + ] + }, + "System.CodeDom/7.0.0": { + "sha512": "GLltyqEsE5/3IE+zYRP5sNa1l44qKl9v+bfdMcwg+M9qnQf47wK3H0SUR/T+3N4JEQXF3vV4CSuuo0rsg+nq2A==", + "type": "package", + "path": "system.codedom/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.CodeDom.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "lib/net462/System.CodeDom.dll", + "lib/net462/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/net7.0/System.CodeDom.dll", + "lib/net7.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.7.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/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.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/8.0.1": { + "sha512": "gPYFPDyohW2gXNhdQRSjtmeS6FymL2crg4Sral1wtvEJ7DUqFCDWDVbbLobASbzxfic8U1hQEdC7hmg9LHncMw==", + "type": "package", + "path": "system.configuration.configurationmanager/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/net7.0/System.Configuration.ConfigurationManager.dll", + "lib/net7.0/System.Configuration.ConfigurationManager.xml", + "lib/net8.0/System.Configuration.ConfigurationManager.dll", + "lib/net8.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.8.0.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "sha512": "vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/8.0.1": { + "sha512": "n1ZP7NM2Gkn/MgD8+eOT5MulMj6wfeQMNS2Pizvq5GHCZfjlFMXV2irQlQmJhwA2VABC57M0auudO89Iu2uRLg==", + "type": "package", + "path": "system.diagnostics.eventlog/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/net7.0/System.Diagnostics.EventLog.dll", + "lib/net7.0/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.8.0.1.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.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.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Formats.Asn1/8.0.1": { + "sha512": "XqKba7Mm/koKSjKMfW82olQdmfbI5yqeoLV/tidRp7fbh5rmHAQ5raDI/7SU0swTzv+jgqtUGkzmFxuUg0it1A==", + "type": "package", + "path": "system.formats.asn1/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Formats.Asn1.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "lib/net462/System.Formats.Asn1.dll", + "lib/net462/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/net7.0/System.Formats.Asn1.dll", + "lib/net7.0/System.Formats.Asn1.xml", + "lib/net8.0/System.Formats.Asn1.dll", + "lib/net8.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.8.0.1.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "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.IdentityModel.Tokens.Jwt/6.35.0": { + "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.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.IO.FileSystem.AccessControl/5.0.0": { + "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Hashing/6.0.0": { + "sha512": "Rfm2jYCaUeGysFEZjDe7j1R4x6Z6BzumS/vUT5a1AA/AWJuGX71PoGB0RmpyX3VmrGqVnAwtfMn39OHR8Y/5+g==", + "type": "package", + "path": "system.io.hashing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Hashing.dll", + "lib/net461/System.IO.Hashing.xml", + "lib/net6.0/System.IO.Hashing.dll", + "lib/net6.0/System.IO.Hashing.xml", + "lib/netstandard2.0/System.IO.Hashing.dll", + "lib/netstandard2.0/System.IO.Hashing.xml", + "system.io.hashing.6.0.0.nupkg.sha512", + "system.io.hashing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Packaging/8.0.0": { + "sha512": "8g1V4YRpdGAxFcK8v9OjuMdIOJSpF30Zb1JGicwVZhly3I994WFyBdV6mQEo8d3T+URQe55/M0U0eIH0Hts1bg==", + "type": "package", + "path": "system.io.packaging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Packaging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Packaging.targets", + "lib/net462/System.IO.Packaging.dll", + "lib/net462/System.IO.Packaging.xml", + "lib/net6.0/System.IO.Packaging.dll", + "lib/net6.0/System.IO.Packaging.xml", + "lib/net7.0/System.IO.Packaging.dll", + "lib/net7.0/System.IO.Packaging.xml", + "lib/net8.0/System.IO.Packaging.dll", + "lib/net8.0/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.8.0.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/5.0.1": { + "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==", + "type": "package", + "path": "system.io.pipelines/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/netcoreapp3.0/System.IO.Pipelines.dll", + "lib/netcoreapp3.0/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netcoreapp2.0/System.IO.Pipelines.dll", + "ref/netcoreapp2.0/System.IO.Pipelines.xml", + "system.io.pipelines.5.0.1.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Async/6.0.1": { + "sha512": "0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==", + "type": "package", + "path": "system.linq.async/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Logo.png", + "lib/net48/System.Linq.Async.dll", + "lib/net48/System.Linq.Async.xml", + "lib/net6.0/System.Linq.Async.dll", + "lib/net6.0/System.Linq.Async.xml", + "lib/netstandard2.0/System.Linq.Async.dll", + "lib/netstandard2.0/System.Linq.Async.xml", + "lib/netstandard2.1/System.Linq.Async.dll", + "lib/netstandard2.1/System.Linq.Async.xml", + "ref/net48/System.Linq.Async.dll", + "ref/net48/System.Linq.Async.xml", + "ref/net6.0/System.Linq.Async.dll", + "ref/net6.0/System.Linq.Async.xml", + "ref/netstandard2.0/System.Linq.Async.dll", + "ref/netstandard2.0/System.Linq.Async.xml", + "ref/netstandard2.1/System.Linq.Async.dll", + "ref/netstandard2.1/System.Linq.Async.xml", + "system.linq.async.6.0.1.nupkg.sha512", + "system.linq.async.nuspec" + ] + }, + "System.Linq.Dynamic.Core/1.4.6": { + "sha512": "GZJ996kvIKH0nnKysDWy+le7k0Hoq1iSY7S5sNq6AF1bXPQGidaXjiOJNX4VCUuVWpbe28Ygb6mDSwgY+UhHLA==", + "type": "package", + "path": "system.linq.dynamic.core/1.4.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PackageReadme.md", + "lib/net35/System.Linq.Dynamic.Core.dll", + "lib/net35/System.Linq.Dynamic.Core.pdb", + "lib/net35/System.Linq.Dynamic.Core.xml", + "lib/net40/System.Linq.Dynamic.Core.dll", + "lib/net40/System.Linq.Dynamic.Core.pdb", + "lib/net40/System.Linq.Dynamic.Core.xml", + "lib/net45/System.Linq.Dynamic.Core.dll", + "lib/net45/System.Linq.Dynamic.Core.pdb", + "lib/net45/System.Linq.Dynamic.Core.xml", + "lib/net452/System.Linq.Dynamic.Core.dll", + "lib/net452/System.Linq.Dynamic.Core.pdb", + "lib/net452/System.Linq.Dynamic.Core.xml", + "lib/net46/System.Linq.Dynamic.Core.dll", + "lib/net46/System.Linq.Dynamic.Core.pdb", + "lib/net46/System.Linq.Dynamic.Core.xml", + "lib/net5.0/System.Linq.Dynamic.Core.dll", + "lib/net5.0/System.Linq.Dynamic.Core.pdb", + "lib/net5.0/System.Linq.Dynamic.Core.xml", + "lib/net6.0/System.Linq.Dynamic.Core.dll", + "lib/net6.0/System.Linq.Dynamic.Core.pdb", + "lib/net6.0/System.Linq.Dynamic.Core.xml", + "lib/net7.0/System.Linq.Dynamic.Core.dll", + "lib/net7.0/System.Linq.Dynamic.Core.pdb", + "lib/net7.0/System.Linq.Dynamic.Core.xml", + "lib/net8.0/System.Linq.Dynamic.Core.dll", + "lib/net8.0/System.Linq.Dynamic.Core.pdb", + "lib/net8.0/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.xml", + "lib/netstandard1.3/System.Linq.Dynamic.Core.dll", + "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb", + "lib/netstandard1.3/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.0/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.0/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.1/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.1/System.Linq.Dynamic.Core.xml", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml", + "logo.png", + "system.linq.dynamic.core.1.4.6.nupkg.sha512", + "system.linq.dynamic.core.nuspec" + ] + }, + "System.Management/7.0.2": { + "sha512": "/qEUN91mP/MUQmJnM5y5BdT7ZoPuVrtxnFlbJ8a3kBJGhe2wCzBfnPFtK2wTtEEcf3DMGR9J00GZZfg6HRI6yA==", + "type": "package", + "path": "system.management/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "lib/net462/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/net7.0/System.Management.dll", + "lib/net7.0/System.Management.xml", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/net7.0/System.Management.dll", + "runtimes/win/lib/net7.0/System.Management.xml", + "system.management.7.0.2.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory.Data/6.0.0": { + "sha512": "ntFHArH3I4Lpjf5m4DCXQHJuGwWPNVJPaAvM95Jy/u+2Yzt2ryiyIN04LAogkjP9DeRcEOiviAjQotfmPq/FrQ==", + "type": "package", + "path": "system.memory.data/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Memory.Data.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Memory.Data.dll", + "lib/net461/System.Memory.Data.xml", + "lib/net6.0/System.Memory.Data.dll", + "lib/net6.0/System.Memory.Data.xml", + "lib/netstandard2.0/System.Memory.Data.dll", + "lib/netstandard2.0/System.Memory.Data.xml", + "system.memory.data.6.0.0.nupkg.sha512", + "system.memory.data.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Net.NameResolution/4.3.0": { + "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "type": "package", + "path": "system.net.nameresolution/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.3.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.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.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.Metadata/5.0.0": { + "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "type": "package", + "path": "system.reflection.metadata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Reflection.Metadata.dll", + "lib/net461/System.Reflection.Metadata.xml", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.5.0.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "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.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/8.0.0": { + "sha512": "4TmlmvGp4kzZomm7J2HJn6IIx0UUrQyhBDyb5O1XiunZlQImXW+B8b7W/sTPcXhSf9rp5NR5aDtQllwbB5elOQ==", + "type": "package", + "path": "system.runtime.caching/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/net7.0/System.Runtime.Caching.dll", + "lib/net7.0/System.Runtime.Caching.xml", + "lib/net8.0/System.Runtime.Caching.dll", + "lib/net8.0/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net7.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net7.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net8.0/System.Runtime.Caching.xml", + "system.runtime.caching.8.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.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.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "sha512": "ULmp3xoOwNYjOYp4JZ2NK/6NdTgiN1GQXzVVN1njQ7LOZ0d0B9vyMnhyqbIi9Qw4JXj1JgCsitkTShboHRx7Eg==", + "type": "package", + "path": "system.security.cryptography.pkcs/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "lib/net462/System.Security.Cryptography.Pkcs.dll", + "lib/net462/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.8.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "type": "package", + "path": "system.security.cryptography.protecteddata/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Xml/6.0.1": { + "sha512": "5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==", + "type": "package", + "path": "system.security.cryptography.xml/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/net6.0/System.Security.Cryptography.Xml.dll", + "lib/net6.0/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.6.0.1.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Http/8.0.0": { + "sha512": "Qwkoe0F+2e/2LiNwiIgfBTJTw11flv208UwS38ru+GR7nZk2VdGvAE8tqGB0RQIGra73Rux9jKNgfy1XtfXdLg==", + "type": "package", + "path": "system.servicemodel.http/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.ServiceModel.Http.dll", + "lib/net8.0/System.ServiceModel.Http.pdb", + "lib/net8.0/cs/System.ServiceModel.Http.resources.dll", + "lib/net8.0/de/System.ServiceModel.Http.resources.dll", + "lib/net8.0/es/System.ServiceModel.Http.resources.dll", + "lib/net8.0/fr/System.ServiceModel.Http.resources.dll", + "lib/net8.0/it/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ja/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ko/System.ServiceModel.Http.resources.dll", + "lib/net8.0/pl/System.ServiceModel.Http.resources.dll", + "lib/net8.0/pt-BR/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ru/System.ServiceModel.Http.resources.dll", + "lib/net8.0/tr/System.ServiceModel.Http.resources.dll", + "lib/net8.0/zh-Hans/System.ServiceModel.Http.resources.dll", + "lib/net8.0/zh-Hant/System.ServiceModel.Http.resources.dll", + "system.servicemodel.http.8.0.0.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.Primitives/8.0.0": { + "sha512": "hVzK77Bl00H+1V7ho7h03tKlgxAIKssV3eUnRdH+gTCZCK4Ywnv2CR35AV9ly/tRpvsGwNL1d/jkAwB1MWw3Fw==", + "type": "package", + "path": "system.servicemodel.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.ServiceModel.Primitives.dll", + "lib/net8.0/System.ServiceModel.Primitives.pdb", + "lib/net8.0/cs/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/de/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/es/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/fr/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/it/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ja/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ko/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/pl/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/pt-BR/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ru/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/tr/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/zh-Hans/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/zh-Hant/System.ServiceModel.Primitives.resources.dll", + "ref/net8.0/System.ServiceModel.Primitives.dll", + "system.servicemodel.primitives.8.0.0.nupkg.sha512", + "system.servicemodel.primitives.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/4.5.1": { + "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "type": "package", + "path": "system.text.encoding.codepages/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "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/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.5.1.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.10": { + "sha512": "NSB0kDipxn2ychp88NXWfFRFlmi1bst/xynOutbnpEfRCT9JZkZ7KOmF/I/hNKo2dILiMGnqblm+j1sggdLB9g==", + "type": "package", + "path": "system.text.json/6.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.10.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.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" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "WebMarkupMin.AspNet.Common/2.17.0": { + "sha512": "HNMEVKwHnA9eGb7iAsihm9oKK5xTfuWb2bq6J7Gx6CTZSYi9HnYbo+ejzzmlTATRPiD9UqpYqwbecr0i09aJFg==", + "type": "package", + "path": "webmarkupmin.aspnet.common/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net40/WebMarkupMin.AspNet.Common.dll", + "lib/net40/WebMarkupMin.AspNet.Common.xml", + "lib/net45/WebMarkupMin.AspNet.Common.dll", + "lib/net45/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard1.3/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard1.3/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard2.0/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard2.0/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.xml", + "readme.txt", + "webmarkupmin.aspnet.common.2.17.0.nupkg.sha512", + "webmarkupmin.aspnet.common.nuspec" + ] + }, + "WebMarkupMin.AspNetCore8/2.17.0": { + "sha512": "516pUZ5oXqK3FxV5bvX/L/Vor+iyZP7aP4Si6hs5nSIoXtXgz81X+4UTopxx/Wh8+jlYzWXsLC0pVxsKVPqHvw==", + "type": "package", + "path": "webmarkupmin.aspnetcore8/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net8.0/WebMarkupMin.AspNetCore8.dll", + "lib/net8.0/WebMarkupMin.AspNetCore8.xml", + "readme.txt", + "webmarkupmin.aspnetcore8.2.17.0.nupkg.sha512", + "webmarkupmin.aspnetcore8.nuspec" + ] + }, + "WebMarkupMin.Core/2.17.0": { + "sha512": "TKCwf7usSSqKkXzc+rfc11K1GGA5KUnj241ImDRRPvpfgekUsg9FbqZuhqbOCjkEw4WDEKWN6EODPBBtP5g5hA==", + "type": "package", + "path": "webmarkupmin.core/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net40-client/WebMarkupMin.Core.dll", + "lib/net40-client/WebMarkupMin.Core.xml", + "lib/net45/WebMarkupMin.Core.dll", + "lib/net45/WebMarkupMin.Core.xml", + "lib/netstandard1.3/WebMarkupMin.Core.dll", + "lib/netstandard1.3/WebMarkupMin.Core.xml", + "lib/netstandard2.0/WebMarkupMin.Core.dll", + "lib/netstandard2.0/WebMarkupMin.Core.xml", + "lib/netstandard2.1/WebMarkupMin.Core.dll", + "lib/netstandard2.1/WebMarkupMin.Core.xml", + "readme.txt", + "webmarkupmin.core.2.17.0.nupkg.sha512", + "webmarkupmin.core.nuspec" + ] + }, + "WebMarkupMin.NUglify/2.17.0": { + "sha512": "ZS/qge/fL98fsul12z9Q4C24Rbpu9Epw+QQpPoF6ksifWt/3TH2CQWSUV4iDeorQsSlVRUbKfpVor7R2uQK/cA==", + "type": "package", + "path": "webmarkupmin.nuglify/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net40-client/WebMarkupMin.NUglify.dll", + "lib/net40-client/WebMarkupMin.NUglify.xml", + "lib/net45/WebMarkupMin.NUglify.dll", + "lib/net45/WebMarkupMin.NUglify.xml", + "lib/netstandard1.3/WebMarkupMin.NUglify.dll", + "lib/netstandard1.3/WebMarkupMin.NUglify.xml", + "lib/netstandard2.0/WebMarkupMin.NUglify.dll", + "lib/netstandard2.0/WebMarkupMin.NUglify.xml", + "nuglify-license.txt", + "readme.txt", + "webmarkupmin.nuglify.2.17.0.nupkg.sha512", + "webmarkupmin.nuglify.nuspec" + ] + }, + "Nop.Core/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Libraries/Nop.Core/Nop.Core.csproj", + "msbuildProject": "../../../../NopCommerce/Libraries/Nop.Core/Nop.Core.csproj" + }, + "Nop.Data/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Libraries/Nop.Data/Nop.Data.csproj", + "msbuildProject": "../../../../NopCommerce/Libraries/Nop.Data/Nop.Data.csproj" + }, + "Nop.Services/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Libraries/Nop.Services/Nop.Services.csproj", + "msbuildProject": "../../../../NopCommerce/Libraries/Nop.Services/Nop.Services.csproj" + }, + "Nop.Web/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Presentation/Nop.Web/Nop.Web.csproj", + "msbuildProject": "../../../../NopCommerce/Presentation/Nop.Web/Nop.Web.csproj" + }, + "Nop.Web.Framework/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj", + "msbuildProject": "../../../../NopCommerce/Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Nop.Web >= 4.70.0" + ] + }, + "packageFolders": { + "C:\\Users\\Ádám\\.nuget\\packages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.SignalRApi\\Nop.Plugin.Misc.SignalRApi.csproj", + "projectName": "Nop.Plugin.Misc.SignalRApi", + "projectPath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.SignalRApi\\Nop.Plugin.Misc.SignalRApi.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.SignalRApi\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/obj/project.nuget.cache b/Nop.Plugin.Misc.SignalRApi/obj/project.nuget.cache new file mode 100644 index 0000000..45f6cab --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/obj/project.nuget.cache @@ -0,0 +1,234 @@ +{ + "version": 2, + "dgSpecHash": "WWKUKQxi3MA=", + "success": true, + "projectFilePath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.SignalRApi\\Nop.Plugin.Misc.SignalRApi.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Ádám\\.nuget\\packages\\advancedstringbuilder\\0.1.1\\advancedstringbuilder.0.1.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\autofac\\8.1.0\\autofac.8.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\autofac.extensions.dependencyinjection\\10.0.0\\autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\automapper\\13.0.1\\automapper.13.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.core\\1.44.1\\azure.core.1.44.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.extensions.aspnetcore.dataprotection.blobs\\1.3.4\\azure.extensions.aspnetcore.dataprotection.blobs.1.3.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.extensions.aspnetcore.dataprotection.keys\\1.2.4\\azure.extensions.aspnetcore.dataprotection.keys.1.2.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.identity\\1.13.0\\azure.identity.1.13.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.security.keyvault.keys\\4.6.0\\azure.security.keyvault.keys.4.6.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.storage.blobs\\12.22.2\\azure.storage.blobs.12.22.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.storage.common\\12.21.1\\azure.storage.common.12.21.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\bouncycastle.cryptography\\2.4.0\\bouncycastle.cryptography.2.4.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\closedxml\\0.104.1\\closedxml.0.104.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\closedxml.parser\\1.2.0\\closedxml.parser.1.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\documentformat.openxml\\3.0.1\\documentformat.openxml.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\documentformat.openxml.framework\\3.0.1\\documentformat.openxml.framework.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\excelnumberformat\\1.1.0\\excelnumberformat.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\excss\\4.2.3\\excss.4.2.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\firebirdsql.data.firebirdclient\\10.0.0\\firebirdsql.data.firebirdclient.10.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator\\5.2.0\\fluentmigrator.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.abstractions\\5.2.0\\fluentmigrator.abstractions.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.mysql\\5.1.0\\fluentmigrator.extensions.mysql.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.oracle\\5.1.0\\fluentmigrator.extensions.oracle.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.postgres\\5.1.0\\fluentmigrator.extensions.postgres.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.snowflake\\5.1.0\\fluentmigrator.extensions.snowflake.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.sqlserver\\5.1.0\\fluentmigrator.extensions.sqlserver.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner\\5.1.0\\fluentmigrator.runner.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.core\\5.1.0\\fluentmigrator.runner.core.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.db2\\5.1.0\\fluentmigrator.runner.db2.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.firebird\\5.1.0\\fluentmigrator.runner.firebird.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.hana\\5.1.0\\fluentmigrator.runner.hana.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.mysql\\5.1.0\\fluentmigrator.runner.mysql.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.oracle\\5.1.0\\fluentmigrator.runner.oracle.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.postgres\\5.1.0\\fluentmigrator.runner.postgres.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.redshift\\5.1.0\\fluentmigrator.runner.redshift.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.snowflake\\5.1.0\\fluentmigrator.runner.snowflake.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.sqlite\\5.1.0\\fluentmigrator.runner.sqlite.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.sqlserver\\5.1.0\\fluentmigrator.runner.sqlserver.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation\\11.5.1\\fluentvalidation.11.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation.aspnetcore\\11.3.0\\fluentvalidation.aspnetcore.11.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\11.5.1\\fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis\\1.68.0\\google.apis.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis.auth\\1.68.0\\google.apis.auth.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis.core\\1.68.0\\google.apis.core.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp\\7.3.0.2\\harfbuzzsharp.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.linux\\7.3.0.2\\harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.macos\\7.3.0.2\\harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.win32\\7.3.0.2\\harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer\\2.14.1\\humanizer.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.af\\2.14.1\\humanizer.core.af.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ar\\2.14.1\\humanizer.core.ar.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.az\\2.14.1\\humanizer.core.az.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.bg\\2.14.1\\humanizer.core.bg.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.bn-bd\\2.14.1\\humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.cs\\2.14.1\\humanizer.core.cs.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.da\\2.14.1\\humanizer.core.da.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.de\\2.14.1\\humanizer.core.de.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.el\\2.14.1\\humanizer.core.el.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.es\\2.14.1\\humanizer.core.es.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fa\\2.14.1\\humanizer.core.fa.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fi-fi\\2.14.1\\humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fr\\2.14.1\\humanizer.core.fr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fr-be\\2.14.1\\humanizer.core.fr-be.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.he\\2.14.1\\humanizer.core.he.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hr\\2.14.1\\humanizer.core.hr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hu\\2.14.1\\humanizer.core.hu.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hy\\2.14.1\\humanizer.core.hy.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.id\\2.14.1\\humanizer.core.id.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.is\\2.14.1\\humanizer.core.is.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.it\\2.14.1\\humanizer.core.it.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ja\\2.14.1\\humanizer.core.ja.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ko-kr\\2.14.1\\humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ku\\2.14.1\\humanizer.core.ku.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.lv\\2.14.1\\humanizer.core.lv.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ms-my\\2.14.1\\humanizer.core.ms-my.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.mt\\2.14.1\\humanizer.core.mt.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nb\\2.14.1\\humanizer.core.nb.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nb-no\\2.14.1\\humanizer.core.nb-no.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nl\\2.14.1\\humanizer.core.nl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.pl\\2.14.1\\humanizer.core.pl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.pt\\2.14.1\\humanizer.core.pt.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ro\\2.14.1\\humanizer.core.ro.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ru\\2.14.1\\humanizer.core.ru.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sk\\2.14.1\\humanizer.core.sk.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sl\\2.14.1\\humanizer.core.sl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sr\\2.14.1\\humanizer.core.sr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sr-latn\\2.14.1\\humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sv\\2.14.1\\humanizer.core.sv.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.th-th\\2.14.1\\humanizer.core.th-th.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.tr\\2.14.1\\humanizer.core.tr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uk\\2.14.1\\humanizer.core.uk.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uz-cyrl-uz\\2.14.1\\humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uz-latn-uz\\2.14.1\\humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.vi\\2.14.1\\humanizer.core.vi.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-cn\\2.14.1\\humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-hans\\2.14.1\\humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-hant\\2.14.1\\humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\ligershark.weboptimizer.core\\3.0.426\\ligershark.weboptimizer.core.3.0.426.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\linq2db\\5.4.1\\linq2db.5.4.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mailkit\\4.8.0\\mailkit.4.8.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\maxmind.db\\4.1.0\\maxmind.db.4.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\maxmind.geoip2\\5.2.0\\maxmind.geoip2.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\3.1.32\\microsoft.aspnetcore.cryptography.internal.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.dataprotection\\3.1.32\\microsoft.aspnetcore.dataprotection.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.dataprotection.abstractions\\3.1.32\\microsoft.aspnetcore.dataprotection.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\8.0.10\\microsoft.aspnetcore.jsonpatch.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\8.0.10\\microsoft.aspnetcore.mvc.newtonsoftjson.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.extensions\\6.0.0\\microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.runtimecompilation\\8.0.10\\microsoft.aspnetcore.mvc.razor.runtimecompilation.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\6.0.0\\microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.0\\microsoft.codeanalysis.common.4.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.0\\microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.razor\\6.0.0\\microsoft.codeanalysis.razor.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.0\\microsoft.data.sqlclient.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.2.0\\microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.sqlserver\\8.0.10\\microsoft.extensions.caching.sqlserver.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.stackexchangeredis\\8.0.10\\microsoft.extensions.caching.stackexchangeredis.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.32\\microsoft.extensions.fileproviders.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.32\\microsoft.extensions.hosting.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.objectpool\\6.0.16\\microsoft.extensions.objectpool.6.0.16.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identity.client\\4.66.1\\microsoft.identity.client.4.66.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.65.0\\microsoft.identity.client.extensions.msal.4.65.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mimekit\\4.8.0\\mimekit.4.8.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mysqlconnector\\2.3.7\\mysqlconnector.2.3.7.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.asyncex.coordination\\5.1.2\\nito.asyncex.coordination.5.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.asyncex.tasks\\5.1.2\\nito.asyncex.tasks.5.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.collections.deque\\1.1.1\\nito.collections.deque.1.1.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.disposables\\2.2.1\\nito.disposables.2.2.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\npgsql\\8.0.5\\npgsql.8.0.5.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nuglify\\1.21.9\\nuglify.1.21.9.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\pipelines.sockets.unofficial\\2.2.8\\pipelines.sockets.unofficial.2.2.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\questpdf\\2024.10.1\\questpdf.2024.10.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\rbush\\3.2.0\\rbush.3.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\shimskiasharp\\2.0.0.1\\shimskiasharp.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\sixlabors.fonts\\1.0.0\\sixlabors.fonts.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp\\2.88.8\\skiasharp.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.harfbuzz\\2.88.8\\skiasharp.harfbuzz.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.linux.nodependencies\\2.88.8\\skiasharp.nativeassets.linux.nodependencies.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.8\\skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.8\\skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\stackexchange.redis\\2.7.27\\stackexchange.redis.2.7.27.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.custom\\2.0.0.1\\svg.custom.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.model\\2.0.0.1\\svg.model.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.skia\\2.0.0.1\\svg.skia.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.clientmodel\\1.1.0\\system.clientmodel.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.codedom\\7.0.0\\system.codedom.7.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.1\\system.configuration.configurationmanager.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.1\\system.diagnostics.eventlog.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.formats.asn1\\8.0.1\\system.formats.asn1.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.filesystem.accesscontrol\\5.0.0\\system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.hashing\\6.0.0\\system.io.hashing.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.packaging\\8.0.0\\system.io.packaging.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.pipelines\\5.0.1\\system.io.pipelines.5.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.async\\6.0.1\\system.linq.async.6.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.dynamic.core\\1.4.6\\system.linq.dynamic.core.1.4.6.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.management\\7.0.2\\system.management.7.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.memory.data\\6.0.0\\system.memory.data.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.caching\\8.0.0\\system.runtime.caching.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.pkcs\\8.0.0\\system.security.cryptography.pkcs.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.xml\\6.0.1\\system.security.cryptography.xml.6.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.servicemodel.http\\8.0.0\\system.servicemodel.http.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.servicemodel.primitives\\8.0.0\\system.servicemodel.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.json\\6.0.10\\system.text.json.6.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.aspnet.common\\2.17.0\\webmarkupmin.aspnet.common.2.17.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.aspnetcore8\\2.17.0\\webmarkupmin.aspnetcore8.2.17.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.core\\2.17.0\\webmarkupmin.core.2.17.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.nuglify\\2.17.0\\webmarkupmin.nuglify.2.17.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.SignalRApi/plugin.json b/Nop.Plugin.Misc.SignalRApi/plugin.json new file mode 100644 index 0000000..8587571 --- /dev/null +++ b/Nop.Plugin.Misc.SignalRApi/plugin.json @@ -0,0 +1,13 @@ +{ + "Group": "Misc", + "FriendlyName": "SignalR Api", + "SystemName": "Misc.SignalRApi", + "Version": "1.00", + "SupportedVersions": [ + "4.70" + ], + "Author": "Adam Gelencser", + "DisplayOrder": 1, + "FileName": "Nop.Plugin.Misc.SignalRApi.dll", + "Description": "This plugin adds SignalR to access data from outside" +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/AgeVerificationPlugin.cs b/Nop.Plugin.Misc.TestPlugin/AgeVerificationPlugin.cs new file mode 100644 index 0000000..1e4f83b --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/AgeVerificationPlugin.cs @@ -0,0 +1,36 @@ +using Nop.Plugin.Misc.TestPlugin.Components; +using Nop.Services.Cms; +using Nop.Services.Plugins; +using Nop.Web.Framework.Infrastructure; + +namespace Nop.Plugin.Misc.TestPlugin; +/// +/// Rename this file and change to the correct type +/// +public class AgeVerificationPlugin : BasePlugin, IWidgetPlugin +{ + public bool HideInWidgetList => true; + + public Type GetWidgetViewComponent(string widgetZone) + { + return typeof(AgeVerificationViewComponent); + } + + public Task> GetWidgetZonesAsync() + { + return Task.FromResult>(new List { PublicWidgetZones.HomepageTop }); + } + + public override async Task InstallAsync() + { + // Add installation logic if needed + await base.InstallAsync(); + } + + public override async Task UninstallAsync() + { + // Add uninstallation logic if needed + await base.UninstallAsync(); + } +} + diff --git a/Nop.Plugin.Misc.TestPlugin/Areas/Admin/Views/_ViewImports.cshtml b/Nop.Plugin.Misc.TestPlugin/Areas/Admin/Views/_ViewImports.cshtml new file mode 100644 index 0000000..270744e --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Areas/Admin/Views/_ViewImports.cshtml @@ -0,0 +1,10 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework + +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Nop.Web.Framework.UI +@using Nop.Web.Framework.Extensions +@using System.Text.Encodings.Web +@using Nop.Services.Events +@using Nop.Web.Framework.Events \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/Components/AgeVerificationViewComponent.cs b/Nop.Plugin.Misc.TestPlugin/Components/AgeVerificationViewComponent.cs new file mode 100644 index 0000000..bd58a6e --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Components/AgeVerificationViewComponent.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Web.Framework.Components; + +namespace Nop.Plugin.Misc.TestPlugin.Components; +[ViewComponent(Name = "AgeVerification")] + + public class AgeVerificationViewComponent : NopViewComponent + { + public IViewComponentResult Invoke() + { + return View("~/Plugins/Misc.AgeVerification/Views/AgeVerificationPopup.cshtml"); + } + } diff --git a/Nop.Plugin.Misc.TestPlugin/Controllers/AgeVerificationController.cs b/Nop.Plugin.Misc.TestPlugin/Controllers/AgeVerificationController.cs new file mode 100644 index 0000000..968adaf --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Controllers/AgeVerificationController.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Web.Framework.Controllers; + +namespace Nop.Plugin.Widgets.AgeVerification.Controllers +{ + public class AgeVerificationController : BasePluginController + { + public IActionResult Popup() + { + return View("~/Plugins/Misc.AgeVerification/Views/AgeVerificationPopup.cshtml"); + } + } +} diff --git a/Nop.Plugin.Misc.TestPlugin/Domains/CustomTable.cs b/Nop.Plugin.Misc.TestPlugin/Domains/CustomTable.cs new file mode 100644 index 0000000..1b0e1d8 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Domains/CustomTable.cs @@ -0,0 +1,7 @@ +using Nop.Core; + +namespace Nop.Plugin.Misc.TestPlugin.Domains; +public partial class CustomTable : BaseEntity +{ + +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/Infrastructure/PluginNopStartup.cs b/Nop.Plugin.Misc.TestPlugin/Infrastructure/PluginNopStartup.cs new file mode 100644 index 0000000..5364b3d --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Infrastructure/PluginNopStartup.cs @@ -0,0 +1,38 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Mvc.Razor; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Nop.Core.Infrastructure; + +namespace Nop.Plugin.Misc.TestPlugin.Infrastructure; +public class PluginNopStartup : INopStartup +{ + /// + /// Add and configure any of the middleware + /// + /// Collection of service descriptors + /// Configuration of the application + public void ConfigureServices(IServiceCollection services, IConfiguration configuration) + { + services.Configure(options => + { + options.ViewLocationExpanders.Add(new ViewLocationExpander()); + }); + + //register services and interfaces + //services.AddScoped(); + } + + /// + /// Configure the using of added middleware + /// + /// Builder for configuring an application's request pipeline + public void Configure(IApplicationBuilder application) + { + } + + /// + /// Gets order of this startup configuration implementation + /// + public int Order => 3000; +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/Infrastructure/RouteProvider.cs b/Nop.Plugin.Misc.TestPlugin/Infrastructure/RouteProvider.cs new file mode 100644 index 0000000..290655f --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Infrastructure/RouteProvider.cs @@ -0,0 +1,23 @@ +using Microsoft.AspNetCore.Routing; +using Nop.Web.Framework.Mvc.Routing; + +namespace Nop.Plugin.Misc.TestPlugin.Infrastructure; +/// +/// Represents plugin route provider +/// +public class RouteProvider : IRouteProvider +{ + /// + /// Register routes + /// + /// Route builder + public void RegisterRoutes(IEndpointRouteBuilder endpointRouteBuilder) + { + + } + + /// + /// Gets a priority of route provider + /// + public int Priority => 0; +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/Infrastructure/ViewLocationExpander.cs b/Nop.Plugin.Misc.TestPlugin/Infrastructure/ViewLocationExpander.cs new file mode 100644 index 0000000..1c49371 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Infrastructure/ViewLocationExpander.cs @@ -0,0 +1,37 @@ +using Microsoft.AspNetCore.Mvc.Razor; + +namespace Nop.Plugin.Misc.TestPlugin.Infrastructure; +public class ViewLocationExpander : IViewLocationExpander +{ + /// + /// Invoked by a to determine the values that would be consumed by this instance + /// of . The calculated values are used to determine if the view location + /// has changed since the last time it was located. + /// + /// The for the current view location + /// expansion operation. + public void PopulateValues(ViewLocationExpanderContext context) + { + } + + /// + /// Invoked by a to determine potential locations for a view. + /// + /// The for the current view location + /// expansion operation. + /// The sequence of view locations to expand. + /// A list of expanded view locations. + public IEnumerable ExpandViewLocations(ViewLocationExpanderContext context, IEnumerable viewLocations) + { + if (context.AreaName == "Admin") + { + viewLocations = new[] { $"/Plugins/Nop.Plugin.Misc.TestPlugin/Areas/Admin/Views/{context.ControllerName}/{context.ViewName}.cshtml" }.Concat(viewLocations); + } + else + { + viewLocations = new[] { $"/Plugins/Nop.Plugin.Misc.TestPlugin/Views/{context.ControllerName}/{context.ViewName}.cshtml" }.Concat(viewLocations); + } + + return viewLocations; + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/Mapping/Builders/PluginBuilder.cs b/Nop.Plugin.Misc.TestPlugin/Mapping/Builders/PluginBuilder.cs new file mode 100644 index 0000000..99ab26e --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Mapping/Builders/PluginBuilder.cs @@ -0,0 +1,19 @@ +using FluentMigrator.Builders.Create.Table; +using Nop.Data.Mapping.Builders; +using Nop.Plugin.Misc.TestPlugin.Domains; + +namespace Nop.Plugin.Misc.TestPlugin.Mapping.Builders; +public class PluginBuilder : NopEntityBuilder +{ + #region Methods + + /// + /// Apply entity configuration + /// + /// Create table expression builder + public override void MapEntity(CreateTableExpressionBuilder table) + { + } + + #endregion +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/Mapping/NameCompatibility.cs b/Nop.Plugin.Misc.TestPlugin/Mapping/NameCompatibility.cs new file mode 100644 index 0000000..269e5d5 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Mapping/NameCompatibility.cs @@ -0,0 +1,15 @@ +using Nop.Data.Mapping; + +namespace Nop.Plugin.Misc.TestPlugin.Mapping; +public partial class NameCompatibility : INameCompatibility +{ + /// + /// Gets table name for mapping with the type + /// + public Dictionary TableNames => new(); + + /// + /// Gets column name for mapping with the entity's property and type + /// + public Dictionary<(Type, string), string> ColumnName => new(); +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/Migrations/SchemaMigration.cs b/Nop.Plugin.Misc.TestPlugin/Migrations/SchemaMigration.cs new file mode 100644 index 0000000..e526551 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Migrations/SchemaMigration.cs @@ -0,0 +1,18 @@ +using FluentMigrator; +using Nop.Data.Extensions; +using Nop.Data.Migrations; +using Nop.Plugin.Misc.TestPlugin.Domains; + +namespace Nop.Plugin.Misc.TestPlugin.Migrations; +//2022-04-05 17:00:00 +[NopMigration("2024-08-01 23:07:37", "Nop.Plugin.Misc.TestPlugin schema", MigrationProcessType.Installation)] +public class SchemaMigration : AutoReversingMigration +{ + /// + /// Collect the UP migration expressions + /// + public override void Up() + { + Create.TableFor(); + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/Nop.Plugin.Misc.TestPlugin.csproj b/Nop.Plugin.Misc.TestPlugin/Nop.Plugin.Misc.TestPlugin.csproj new file mode 100644 index 0000000..7318b5e --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Nop.Plugin.Misc.TestPlugin.csproj @@ -0,0 +1,70 @@ + + + + net8.0 + ..\..\..\..\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin + $(OutputPath) + + false + enable + + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Nop.Plugin.Misc.TestPlugin/Views/AgeVerificationPopup.cshtml b/Nop.Plugin.Misc.TestPlugin/Views/AgeVerificationPopup.cshtml new file mode 100644 index 0000000..1a595b2 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Views/AgeVerificationPopup.cshtml @@ -0,0 +1,22 @@ + + + diff --git a/Nop.Plugin.Misc.TestPlugin/Views/_ViewImports.cshtml b/Nop.Plugin.Misc.TestPlugin/Views/_ViewImports.cshtml new file mode 100644 index 0000000..253a8a0 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/Views/_ViewImports.cshtml @@ -0,0 +1,11 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework + +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Nop.Web.Framework.UI +@using Nop.Web.Framework.Extensions +@using System.Text.Encodings.Web +@using Nop.Services.Events +@using Nop.Web.Framework.Events +@using Nop.Web.Framework.Infrastructure \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/logo.jpg b/Nop.Plugin.Misc.TestPlugin/logo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cae3ce3f17ad9ee8604dab7af6726378985e81ae GIT binary patch literal 3118 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 +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plug.CB622A65.Up2Date b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plug.CB622A65.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs new file mode 100644 index 0000000..3c0aec1 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Nop.Plugin.Misc.TestPlugin")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Nop.Plugin.Misc.TestPlugin")] +[assembly: System.Reflection.AssemblyTitleAttribute("Nop.Plugin.Misc.TestPlugin")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8392241 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ee4fc583b48e437829a1100f0a32759a1a547e904a3bf0e69cf2c5a9f8e5a442 diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6a67a86 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.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 = Nop.Plugin.Misc.TestPlugin +build_property.ProjectDir = D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.GlobalUsings.g.cs b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.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/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.assets.cache b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..0ffc07213f5ac180435e9f57b2af162ef03069fd GIT binary patch literal 136407 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.CoreCompileInputs.cache b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5b0c9c3 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +6e5103e045e63b21dfbcff2c241eeb621154eed173d5a6ca5a691d680f2d267a diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.FileListAbsolute.txt b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..816886d --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.FileListAbsolute.txt @@ -0,0 +1,1648 @@ +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\Nop.Web.deps.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\Nop.Web.runtimeconfig.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\Nop.Web.runtimeconfig.dev.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\Nop.Web.staticwebassets.runtime.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\Nop.Web.exe +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\logo.jpg +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\plugin.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\Views\AgeVerificationPopup.cshtml +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\Areas\Admin\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.deps.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.pdb +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Authorization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Endpoints.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Cors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Results.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpLogging.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Identity.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Metadata.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.OutputCaching.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.RateLimiting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Razor.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.RequestDecompression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Routing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.Session.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.CSharp.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Caching.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Caching.Memory.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Binder.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.CommandLine.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.DependencyInjection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Features.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Composite.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Physical.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.FileSystemGlobbing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Hosting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Identity.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Localization.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Console.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Logging.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.ObjectPool.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Options.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Extensions.WebEncoders.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.JSInterop.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Net.Http.Headers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.VisualBasic.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.VisualBasic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Win32.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\Microsoft.Win32.Registry.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\mscorlib.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\netstandard.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.AppContext.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Buffers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Collections.Concurrent.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Collections.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Collections.Immutable.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Collections.NonGeneric.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Collections.Specialized.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.ComponentModel.Annotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.ComponentModel.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.ComponentModel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.ComponentModel.EventBasedAsync.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.ComponentModel.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.ComponentModel.TypeConverter.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Console.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Data.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Data.DataSetExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Data.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Diagnostics.Contracts.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Diagnostics.Debug.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Diagnostics.DiagnosticSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Diagnostics.EventLog.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Diagnostics.FileVersionInfo.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Diagnostics.Process.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Diagnostics.StackTrace.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Diagnostics.Tools.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Diagnostics.TraceSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Diagnostics.Tracing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Drawing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Drawing.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Dynamic.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Formats.Asn1.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Formats.Tar.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Globalization.Calendars.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Globalization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Globalization.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.Compression.Brotli.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.Compression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.Compression.FileSystem.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.Compression.ZipFile.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.FileSystem.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.FileSystem.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.FileSystem.DriveInfo.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.FileSystem.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.FileSystem.Watcher.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.IsolatedStorage.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.MemoryMappedFiles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.Pipelines.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.Pipes.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.Pipes.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.IO.UnmanagedMemoryStream.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Linq.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Linq.Expressions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Linq.Parallel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Linq.Queryable.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Memory.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.Http.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.HttpListener.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.Mail.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.NameResolution.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.NetworkInformation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.Ping.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.Quic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.Requests.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.Security.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.ServicePoint.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.Sockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.WebClient.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.WebHeaderCollection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.WebProxy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.WebSockets.Client.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Net.WebSockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Numerics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Numerics.Vectors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.ObjectModel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Reflection.DispatchProxy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Reflection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Reflection.Emit.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Reflection.Emit.ILGeneration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Reflection.Emit.Lightweight.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Reflection.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Reflection.Metadata.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Reflection.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Reflection.TypeExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Resources.Reader.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Resources.ResourceManager.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Resources.Writer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.Handles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.InteropServices.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.InteropServices.JavaScript.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.Intrinsics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.Loader.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.Numerics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.Serialization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.Serialization.Formatters.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.Serialization.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.Serialization.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Runtime.Serialization.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.Claims.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.Cryptography.Algorithms.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.Cryptography.Cng.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.Cryptography.Csp.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.Cryptography.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.Cryptography.Encoding.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.Cryptography.OpenSsl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.Cryptography.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.Cryptography.X509Certificates.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.Cryptography.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.Principal.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.Principal.Windows.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Security.SecureString.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.ServiceModel.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.ServiceProcess.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Text.Encoding.CodePages.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Text.Encoding.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Text.Encoding.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Text.Encodings.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Text.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Text.RegularExpressions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Threading.Channels.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Threading.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Threading.Overlapped.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Threading.RateLimiting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Threading.Tasks.Dataflow.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Threading.Tasks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Threading.Tasks.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Threading.Tasks.Parallel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Threading.Thread.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Threading.ThreadPool.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Threading.Timer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Transactions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Transactions.Local.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.ValueTuple.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Web.HttpUtility.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Windows.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Xml.Linq.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Xml.ReaderWriter.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Xml.Serialization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Xml.XDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Xml.XmlDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Xml.XmlSerializer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Xml.XPath.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\System.Xml.XPath.XDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Nop.Plugin.Misc.TestPlugin\refs\WindowsBase.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.csproj.CoreCompileInputs.cache +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plug.CB622A65.Up2Date +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\refint\Nop.Plugin.Misc.TestPlugin.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.pdb +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\ref\Nop.Plugin.Misc.TestPlugin.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.deps.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.runtimeconfig.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.runtimeconfig.dev.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.staticwebassets.runtime.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.exe +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\logo.jpg +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\plugin.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Views\AgeVerificationPopup.cshtml +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Areas\Admin\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.deps.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.pdb +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authorization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Endpoints.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Cors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Results.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpLogging.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Identity.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Metadata.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.OutputCaching.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.RateLimiting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Razor.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.RequestDecompression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Routing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Session.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.CSharp.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Caching.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Caching.Memory.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Binder.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.CommandLine.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.DependencyInjection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Features.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Composite.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Physical.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileSystemGlobbing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Hosting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Identity.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Localization.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Console.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.ObjectPool.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Options.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.WebEncoders.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.JSInterop.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Net.Http.Headers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.VisualBasic.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.VisualBasic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Win32.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Win32.Registry.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\mscorlib.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\netstandard.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.AppContext.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Buffers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.Concurrent.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.Immutable.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.NonGeneric.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.Specialized.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.Annotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.EventBasedAsync.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.TypeConverter.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Console.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Data.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Data.DataSetExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Data.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Contracts.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Debug.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.DiagnosticSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.EventLog.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.FileVersionInfo.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Process.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.StackTrace.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Tools.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.TraceSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Tracing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Drawing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Drawing.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Dynamic.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Formats.Asn1.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Formats.Tar.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Globalization.Calendars.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Globalization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Globalization.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.Brotli.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.FileSystem.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.ZipFile.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.DriveInfo.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.Watcher.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.IsolatedStorage.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.MemoryMappedFiles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Pipelines.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Pipes.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Pipes.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.UnmanagedMemoryStream.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.Expressions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.Parallel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.Queryable.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Memory.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Http.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.HttpListener.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Mail.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.NameResolution.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.NetworkInformation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Ping.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Quic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Requests.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Security.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.ServicePoint.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Sockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebClient.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebHeaderCollection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebProxy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebSockets.Client.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebSockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Numerics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Numerics.Vectors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ObjectModel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.DispatchProxy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Emit.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Emit.ILGeneration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Emit.Lightweight.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Metadata.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.TypeExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Resources.Reader.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Resources.ResourceManager.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Resources.Writer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Handles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.InteropServices.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.InteropServices.JavaScript.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Intrinsics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Loader.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Numerics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Formatters.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Claims.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Algorithms.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Cng.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Csp.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Encoding.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.OpenSsl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.X509Certificates.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Principal.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Principal.Windows.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.SecureString.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ServiceModel.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ServiceProcess.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encoding.CodePages.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encoding.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encoding.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encodings.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.RegularExpressions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Channels.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Overlapped.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.RateLimiting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.Dataflow.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.Parallel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Thread.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.ThreadPool.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Timer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Transactions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Transactions.Local.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ValueTuple.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Web.HttpUtility.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Windows.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.Linq.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.ReaderWriter.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.Serialization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XmlDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XmlSerializer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XPath.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XPath.XDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\WindowsBase.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.deps.json +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.runtimeconfig.json +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.runtimeconfig.dev.json +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.staticwebassets.runtime.json +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.exe +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\logo.jpg +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\plugin.json +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Views\AgeVerificationPopup.cshtml +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Areas\Admin\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.deps.json +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.pdb +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authorization.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Endpoints.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Cors.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Results.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpLogging.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Identity.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Localization.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Metadata.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.OutputCaching.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.RateLimiting.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Razor.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.RequestDecompression.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Routing.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Session.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.CSharp.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Caching.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Caching.Memory.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Binder.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.CommandLine.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Json.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.DependencyInjection.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Features.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Composite.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Physical.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileSystemGlobbing.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Hosting.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Http.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Identity.Core.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Localization.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Localization.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Abstractions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Console.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.ObjectPool.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Options.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Primitives.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.WebEncoders.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.JSInterop.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Net.Http.Headers.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.VisualBasic.Core.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.VisualBasic.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Win32.Primitives.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Win32.Registry.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\mscorlib.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\netstandard.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.AppContext.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Buffers.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.Concurrent.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.Immutable.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.NonGeneric.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.Specialized.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.Annotations.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.DataAnnotations.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.EventBasedAsync.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.Primitives.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.TypeConverter.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Configuration.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Console.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Core.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Data.Common.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Data.DataSetExtensions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Data.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Contracts.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Debug.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.DiagnosticSource.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.EventLog.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.FileVersionInfo.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Process.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.StackTrace.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Tools.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.TraceSource.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Tracing.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Drawing.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Drawing.Primitives.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Dynamic.Runtime.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Formats.Asn1.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Formats.Tar.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Globalization.Calendars.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Globalization.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Globalization.Extensions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.Brotli.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.FileSystem.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.ZipFile.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.AccessControl.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.DriveInfo.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.Primitives.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.Watcher.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.IsolatedStorage.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.MemoryMappedFiles.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Pipelines.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Pipes.AccessControl.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Pipes.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.UnmanagedMemoryStream.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.Expressions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.Parallel.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.Queryable.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Memory.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Http.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Http.Json.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.HttpListener.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Mail.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.NameResolution.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.NetworkInformation.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Ping.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Primitives.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Quic.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Requests.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Security.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.ServicePoint.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Sockets.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebClient.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebHeaderCollection.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebProxy.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebSockets.Client.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebSockets.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Numerics.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Numerics.Vectors.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ObjectModel.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.DispatchProxy.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Emit.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Emit.ILGeneration.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Emit.Lightweight.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Extensions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Metadata.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Primitives.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.TypeExtensions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Resources.Reader.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Resources.ResourceManager.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Resources.Writer.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Extensions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Handles.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.InteropServices.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.InteropServices.JavaScript.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Intrinsics.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Loader.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Numerics.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Formatters.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Json.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Primitives.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Xml.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.AccessControl.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Claims.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Algorithms.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Cng.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Csp.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Encoding.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.OpenSsl.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Primitives.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.X509Certificates.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Xml.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Principal.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Principal.Windows.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.SecureString.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ServiceModel.Web.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ServiceProcess.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encoding.CodePages.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encoding.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encoding.Extensions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encodings.Web.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Json.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.RegularExpressions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Channels.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Overlapped.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.RateLimiting.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.Dataflow.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.Extensions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.Parallel.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Thread.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.ThreadPool.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Timer.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Transactions.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Transactions.Local.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ValueTuple.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Web.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Web.HttpUtility.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Windows.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.Linq.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.ReaderWriter.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.Serialization.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XDocument.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XmlDocument.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XmlSerializer.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XPath.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XPath.XDocument.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\WindowsBase.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache +D:\Munka\MANGOWEB\FreylerContemporary\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig +D:\Munka\MANGOWEB\FreylerContemporary\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache +D:\Munka\MANGOWEB\FreylerContemporary\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs +D:\Munka\MANGOWEB\FreylerContemporary\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.csproj.CoreCompileInputs.cache +D:\Munka\MANGOWEB\FreylerContemporary\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plug.CB622A65.Up2Date +D:\Munka\MANGOWEB\FreylerContemporary\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\refint\Nop.Plugin.Misc.TestPlugin.dll +D:\Munka\MANGOWEB\FreylerContemporary\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.pdb +D:\Munka\MANGOWEB\FreylerContemporary\src\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\ref\Nop.Plugin.Misc.TestPlugin.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.deps.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.runtimeconfig.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.runtimeconfig.dev.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.staticwebassets.runtime.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.exe +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\logo.jpg +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\plugin.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Views\AgeVerificationPopup.cshtml +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Areas\Admin\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Black.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-BlackItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Bold.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-BoldItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-ExtraBold.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-ExtraBoldItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-ExtraLight.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-ExtraLightItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Italic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Light.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-LightItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Medium.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-MediumItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Regular.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-SemiBold.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-SemiBoldItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Thin.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-ThinItalic.ttf +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\OFL.txt +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.deps.json +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.pdb +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authorization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Endpoints.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Cors.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Results.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpLogging.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Identity.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Localization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Metadata.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.OutputCaching.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.RateLimiting.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Razor.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.RequestDecompression.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Routing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Session.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.CSharp.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Caching.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Caching.Memory.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Binder.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.CommandLine.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.DependencyInjection.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Features.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Composite.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Physical.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileSystemGlobbing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Hosting.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Http.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Identity.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Localization.Abstractions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Localization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Console.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.ObjectPool.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Options.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.WebEncoders.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.JSInterop.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Net.Http.Headers.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.VisualBasic.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.VisualBasic.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Win32.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Win32.Registry.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\mscorlib.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\netstandard.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.AppContext.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Buffers.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.Concurrent.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.Immutable.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.NonGeneric.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.Specialized.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.Annotations.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.DataAnnotations.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.EventBasedAsync.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.TypeConverter.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Configuration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Console.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Core.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Data.Common.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Data.DataSetExtensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Data.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Contracts.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Debug.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.DiagnosticSource.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.FileVersionInfo.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Process.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.StackTrace.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Tools.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.TraceSource.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Tracing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Drawing.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Drawing.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Dynamic.Runtime.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Formats.Tar.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Globalization.Calendars.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Globalization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Globalization.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.Brotli.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.FileSystem.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.ZipFile.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.AccessControl.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.DriveInfo.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.Watcher.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.IsolatedStorage.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.MemoryMappedFiles.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Pipelines.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Pipes.AccessControl.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Pipes.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.UnmanagedMemoryStream.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.Expressions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.Parallel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.Queryable.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Memory.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Http.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Http.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.HttpListener.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Mail.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.NameResolution.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.NetworkInformation.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Ping.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Quic.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Requests.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Security.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.ServicePoint.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Sockets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebClient.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebHeaderCollection.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebProxy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebSockets.Client.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebSockets.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Numerics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Numerics.Vectors.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ObjectModel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.DispatchProxy.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Emit.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Emit.ILGeneration.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Emit.Lightweight.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Metadata.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.TypeExtensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Resources.Reader.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Resources.ResourceManager.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Resources.Writer.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Handles.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.InteropServices.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.InteropServices.JavaScript.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Intrinsics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Loader.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Numerics.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Formatters.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.AccessControl.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Claims.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Algorithms.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Cng.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Csp.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Encoding.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.OpenSsl.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Primitives.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.X509Certificates.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Principal.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Principal.Windows.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.SecureString.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ServiceModel.Web.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ServiceProcess.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encoding.CodePages.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encoding.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encoding.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encodings.Web.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Json.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.RegularExpressions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Channels.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Overlapped.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.RateLimiting.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.Dataflow.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.Extensions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.Parallel.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Thread.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.ThreadPool.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Timer.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Transactions.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Transactions.Local.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ValueTuple.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Web.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Web.HttpUtility.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Windows.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.Linq.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.ReaderWriter.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.Serialization.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XDocument.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XmlDocument.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XmlSerializer.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XPath.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XPath.XDocument.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\WindowsBase.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.csproj.CoreCompileInputs.cache +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plug.CB622A65.Up2Date +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\refint\Nop.Plugin.Misc.TestPlugin.dll +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.pdb +D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\ref\Nop.Plugin.Misc.TestPlugin.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.deps.json +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.runtimeconfig.json +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.runtimeconfig.dev.json +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.staticwebassets.runtime.json +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Web.exe +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\logo.jpg +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\plugin.json +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Views\AgeVerificationPopup.cshtml +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Views\_ViewImports.cshtml +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Areas\Admin\Views\_ViewImports.cshtml +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Black.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-BlackItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Bold.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-BoldItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-ExtraBold.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-ExtraBoldItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-ExtraLight.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-ExtraLightItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Italic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Light.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-LightItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Medium.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-MediumItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Regular.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-SemiBold.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-SemiBoldItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-Thin.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\Lato-ThinItalic.ttf +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\LatoFont\OFL.txt +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.deps.json +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\Nop.Plugin.Misc.TestPlugin.pdb +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Antiforgery.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authorization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Authorization.Policy.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Authorization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Endpoints.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Forms.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Server.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Components.Web.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.CookiePolicy.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Cors.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HostFiltering.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Html.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Connections.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Features.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Http.Results.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpLogging.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpOverrides.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.HttpsPolicy.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Identity.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Localization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Localization.Routing.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Metadata.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Cors.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Localization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.Razor.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.OutputCaching.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.RateLimiting.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Razor.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Razor.Runtime.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.RequestDecompression.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCaching.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.ResponseCompression.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Rewrite.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Routing.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.HttpSys.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.IIS.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.Session.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Common.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.StaticFiles.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.WebSockets.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.AspNetCore.WebUtilities.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.CSharp.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Caching.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Caching.Memory.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Binder.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.CommandLine.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Ini.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Json.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Configuration.Xml.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.DependencyInjection.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Features.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Composite.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Embedded.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileProviders.Physical.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.FileSystemGlobbing.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Hosting.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Hosting.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Http.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Identity.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Identity.Stores.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Localization.Abstractions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Localization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Configuration.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Console.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.Debug.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.EventLog.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.EventSource.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Logging.TraceSource.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.ObjectPool.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Options.DataAnnotations.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Options.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Extensions.WebEncoders.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.JSInterop.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Net.Http.Headers.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.VisualBasic.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.VisualBasic.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Win32.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\Microsoft.Win32.Registry.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\mscorlib.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\netstandard.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.AppContext.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Buffers.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.Concurrent.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.Immutable.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.NonGeneric.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Collections.Specialized.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.Annotations.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.DataAnnotations.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.EventBasedAsync.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ComponentModel.TypeConverter.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Configuration.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Console.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Core.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Data.Common.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Data.DataSetExtensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Data.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Contracts.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Debug.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.DiagnosticSource.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.FileVersionInfo.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Process.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.StackTrace.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.TextWriterTraceListener.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Tools.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.TraceSource.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Diagnostics.Tracing.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Drawing.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Drawing.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Dynamic.Runtime.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Formats.Tar.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Globalization.Calendars.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Globalization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Globalization.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.Brotli.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.FileSystem.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Compression.ZipFile.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.AccessControl.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.DriveInfo.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.FileSystem.Watcher.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.IsolatedStorage.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.MemoryMappedFiles.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Pipelines.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Pipes.AccessControl.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.Pipes.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.IO.UnmanagedMemoryStream.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.Expressions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.Parallel.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Linq.Queryable.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Memory.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Http.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Http.Json.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.HttpListener.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Mail.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.NameResolution.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.NetworkInformation.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Ping.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Quic.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Requests.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Security.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.ServicePoint.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.Sockets.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebClient.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebHeaderCollection.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebProxy.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebSockets.Client.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Net.WebSockets.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Numerics.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Numerics.Vectors.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ObjectModel.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.DispatchProxy.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Emit.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Emit.ILGeneration.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Emit.Lightweight.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Metadata.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Reflection.TypeExtensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Resources.Reader.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Resources.ResourceManager.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Resources.Writer.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.CompilerServices.Unsafe.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.CompilerServices.VisualC.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Handles.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.InteropServices.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.InteropServices.JavaScript.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.InteropServices.RuntimeInformation.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Intrinsics.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Loader.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Numerics.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Formatters.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Json.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Runtime.Serialization.Xml.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.AccessControl.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Claims.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Algorithms.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Cng.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Csp.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Encoding.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.OpenSsl.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Primitives.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.X509Certificates.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Cryptography.Xml.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Principal.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.Principal.Windows.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Security.SecureString.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ServiceModel.Web.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ServiceProcess.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encoding.CodePages.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encoding.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encoding.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Encodings.Web.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.Json.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Text.RegularExpressions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Channels.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Overlapped.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.RateLimiting.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.Dataflow.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.Extensions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Tasks.Parallel.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Thread.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.ThreadPool.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Threading.Timer.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Transactions.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Transactions.Local.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.ValueTuple.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Web.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Web.HttpUtility.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Windows.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.Linq.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.ReaderWriter.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.Serialization.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XDocument.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XmlDocument.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XmlSerializer.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XPath.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\System.Xml.XPath.XDocument.dll +C:\REPOS\MANGO\source\NopCommerce\Presentation\Nop.Web\Plugins\Misc.TestPlugin\refs\WindowsBase.dll +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.csproj.CoreCompileInputs.cache +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plug.CB622A65.Up2Date +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.dll +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\refint\Nop.Plugin.Misc.TestPlugin.dll +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.pdb +C:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\ref\Nop.Plugin.Misc.TestPlugin.dll +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.csproj.CoreCompileInputs.cache +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.dll +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\refint\Nop.Plugin.Misc.TestPlugin.dll +D:\REPOS\MANGO\source\Nopcommerce.Common\4.70\Plugins\Nop.Plugin.Misc.TestPlugin\obj\Debug\net8.0\Nop.Plugin.Misc.TestPlugin.pdb diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.dll b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/Nop.Plugin.Misc.TestPlugin.dll new file mode 100644 index 0000000000000000000000000000000000000000..4c7bfa6ef54603da20dce072585c4aea394d7ec7 GIT binary patch literal 11776 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.TestPlugin/obj/project.assets.json b/Nop.Plugin.Misc.TestPlugin/obj/project.assets.json new file mode 100644 index 0000000..fd82e58 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/project.assets.json @@ -0,0 +1,10145 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "AdvancedStringBuilder/0.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "related": ".xml" + } + } + }, + "Autofac/8.1.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + } + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Autofac": "8.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + }, + "compile": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "AutoMapper/13.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + } + }, + "Azure.Core/1.44.1": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "System.ClientModel": "1.1.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "6.0.0", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "6.0.0", + "System.Text.Json": "6.0.10", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.3.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.38.0", + "Azure.Storage.Blobs": "12.16.0", + "Microsoft.AspNetCore.DataProtection": "3.1.32" + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "related": ".xml" + } + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.2.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.42.0", + "Azure.Security.KeyVault.Keys": "4.6.0", + "Microsoft.AspNetCore.DataProtection": "3.1.32" + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "related": ".xml" + } + } + }, + "Azure.Identity/1.13.0": { + "type": "package", + "dependencies": { + "Azure.Core": "1.44.1", + "Microsoft.Identity.Client": "4.65.0", + "Microsoft.Identity.Client.Extensions.Msal": "4.65.0", + "System.Memory": "4.5.5", + "System.Text.Json": "6.0.10", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + } + }, + "Azure.Security.KeyVault.Keys/4.6.0": { + "type": "package", + "dependencies": { + "Azure.Core": "1.37.0", + "System.Memory": "4.5.4", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "related": ".xml" + } + } + }, + "Azure.Storage.Blobs/12.22.2": { + "type": "package", + "dependencies": { + "Azure.Storage.Common": "12.21.1", + "System.Text.Json": "6.0.10" + }, + "compile": { + "lib/net6.0/Azure.Storage.Blobs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Storage.Blobs.dll": { + "related": ".xml" + } + } + }, + "Azure.Storage.Common/12.21.1": { + "type": "package", + "dependencies": { + "Azure.Core": "1.44.1", + "System.IO.Hashing": "6.0.0" + }, + "compile": { + "lib/net6.0/Azure.Storage.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Storage.Common.dll": { + "related": ".xml" + } + } + }, + "BouncyCastle.Cryptography/2.4.0": { + "type": "package", + "compile": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + } + }, + "ClosedXML/0.104.1": { + "type": "package", + "dependencies": { + "ClosedXML.Parser": "[1.2.0, 2.0.0)", + "DocumentFormat.OpenXml": "[3.0.1, 4.0.0)", + "ExcelNumberFormat": "1.1.0", + "RBush": "3.2.0", + "SixLabors.Fonts": "1.0.0", + "System.IO.Packaging": "8.0.0" + }, + "compile": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".pdb;.xml" + } + } + }, + "ClosedXML.Parser/1.2.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/ClosedXML.Parser.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.Parser.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml/3.0.1": { + "type": "package", + "dependencies": { + "DocumentFormat.OpenXml.Framework": "3.0.1" + }, + "compile": { + "lib/net8.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml.Framework/3.0.1": { + "type": "package", + "dependencies": { + "System.IO.Packaging": "8.0.0" + }, + "compile": { + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll": { + "related": ".xml" + } + } + }, + "ExcelNumberFormat/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + } + }, + "ExCSS/4.2.3": { + "type": "package", + "compile": { + "lib/net7.0/ExCSS.dll": {} + }, + "runtime": { + "lib/net7.0/ExCSS.dll": {} + } + }, + "FirebirdSql.Data.FirebirdClient/10.0.0": { + "type": "package", + "compile": { + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll": {} + }, + "runtime": { + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll": {} + } + }, + "FluentMigrator/5.2.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.2.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Abstractions/5.2.0": { + "type": "package", + "dependencies": { + "System.ComponentModel.Annotations": "5.0.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll": { + "locale": "de-DE" + } + } + }, + "FluentMigrator.Extensions.MySql/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Oracle/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Postgres/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Snowflake/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.SqlServer/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Runner.Core": "5.1.0", + "FluentMigrator.Runner.Db2": "5.1.0", + "FluentMigrator.Runner.Firebird": "5.1.0", + "FluentMigrator.Runner.Hana": "5.1.0", + "FluentMigrator.Runner.MySql": "5.1.0", + "FluentMigrator.Runner.Oracle": "5.1.0", + "FluentMigrator.Runner.Postgres": "5.1.0", + "FluentMigrator.Runner.Redshift": "5.1.0", + "FluentMigrator.Runner.SQLite": "5.1.0", + "FluentMigrator.Runner.Snowflake": "5.1.0", + "FluentMigrator.Runner.SqlServer": "5.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Core/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Abstractions": "5.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Db2/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Firebird/5.1.0": { + "type": "package", + "dependencies": { + "FirebirdSql.Data.FirebirdClient": "10.0.0", + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Hana/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.MySql/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.MySql": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Oracle/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.Oracle": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Postgres/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.Postgres": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Redshift/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Snowflake/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Extensions.Snowflake": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.SQLite/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.SqlServer/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.SqlServer": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0", + "Microsoft.Data.SqlClient": "5.1.4" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentValidation/11.5.1": { + "type": "package", + "compile": { + "lib/net7.0/FluentValidation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/FluentValidation.dll": { + "related": ".xml" + } + } + }, + "FluentValidation.AspNetCore/11.3.0": { + "type": "package", + "dependencies": { + "FluentValidation": "11.5.1", + "FluentValidation.DependencyInjectionExtensions": "11.5.1" + }, + "compile": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.5.1": { + "type": "package", + "dependencies": { + "FluentValidation": "11.5.1", + "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + } + }, + "Google.Apis/1.68.0": { + "type": "package", + "dependencies": { + "Google.Apis.Core": "1.68.0" + }, + "compile": { + "lib/net6.0/Google.Apis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.dll": { + "related": ".pdb;.xml" + } + } + }, + "Google.Apis.Auth/1.68.0": { + "type": "package", + "dependencies": { + "Google.Apis": "1.68.0", + "Google.Apis.Core": "1.68.0", + "System.Management": "7.0.2" + }, + "compile": { + "lib/net6.0/Google.Apis.Auth.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.Auth.dll": { + "related": ".pdb;.xml" + } + } + }, + "Google.Apis.Core/1.68.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net6.0/Google.Apis.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp/7.3.0.2": { + "type": "package", + "dependencies": { + "HarfBuzzSharp.NativeAssets.Win32": "7.3.0.2", + "HarfBuzzSharp.NativeAssets.macOS": "7.3.0.2" + }, + "compile": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "7.3.0.2" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libHarfBuzzSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Humanizer/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core.af": "2.14.1", + "Humanizer.Core.ar": "2.14.1", + "Humanizer.Core.az": "2.14.1", + "Humanizer.Core.bg": "2.14.1", + "Humanizer.Core.bn-BD": "2.14.1", + "Humanizer.Core.cs": "2.14.1", + "Humanizer.Core.da": "2.14.1", + "Humanizer.Core.de": "2.14.1", + "Humanizer.Core.el": "2.14.1", + "Humanizer.Core.es": "2.14.1", + "Humanizer.Core.fa": "2.14.1", + "Humanizer.Core.fi-FI": "2.14.1", + "Humanizer.Core.fr": "2.14.1", + "Humanizer.Core.fr-BE": "2.14.1", + "Humanizer.Core.he": "2.14.1", + "Humanizer.Core.hr": "2.14.1", + "Humanizer.Core.hu": "2.14.1", + "Humanizer.Core.hy": "2.14.1", + "Humanizer.Core.id": "2.14.1", + "Humanizer.Core.is": "2.14.1", + "Humanizer.Core.it": "2.14.1", + "Humanizer.Core.ja": "2.14.1", + "Humanizer.Core.ko-KR": "2.14.1", + "Humanizer.Core.ku": "2.14.1", + "Humanizer.Core.lv": "2.14.1", + "Humanizer.Core.ms-MY": "2.14.1", + "Humanizer.Core.mt": "2.14.1", + "Humanizer.Core.nb": "2.14.1", + "Humanizer.Core.nb-NO": "2.14.1", + "Humanizer.Core.nl": "2.14.1", + "Humanizer.Core.pl": "2.14.1", + "Humanizer.Core.pt": "2.14.1", + "Humanizer.Core.ro": "2.14.1", + "Humanizer.Core.ru": "2.14.1", + "Humanizer.Core.sk": "2.14.1", + "Humanizer.Core.sl": "2.14.1", + "Humanizer.Core.sr": "2.14.1", + "Humanizer.Core.sr-Latn": "2.14.1", + "Humanizer.Core.sv": "2.14.1", + "Humanizer.Core.th-TH": "2.14.1", + "Humanizer.Core.tr": "2.14.1", + "Humanizer.Core.uk": "2.14.1", + "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", + "Humanizer.Core.uz-Latn-UZ": "2.14.1", + "Humanizer.Core.vi": "2.14.1", + "Humanizer.Core.zh-CN": "2.14.1", + "Humanizer.Core.zh-Hans": "2.14.1", + "Humanizer.Core.zh-Hant": "2.14.1" + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Humanizer.Core.af/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/af/Humanizer.resources.dll": { + "locale": "af" + } + } + }, + "Humanizer.Core.ar/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ar/Humanizer.resources.dll": { + "locale": "ar" + } + } + }, + "Humanizer.Core.az/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/az/Humanizer.resources.dll": { + "locale": "az" + } + } + }, + "Humanizer.Core.bg/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bg/Humanizer.resources.dll": { + "locale": "bg" + } + } + }, + "Humanizer.Core.bn-BD/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bn-BD/Humanizer.resources.dll": { + "locale": "bn-BD" + } + } + }, + "Humanizer.Core.cs/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/cs/Humanizer.resources.dll": { + "locale": "cs" + } + } + }, + "Humanizer.Core.da/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/da/Humanizer.resources.dll": { + "locale": "da" + } + } + }, + "Humanizer.Core.de/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/de/Humanizer.resources.dll": { + "locale": "de" + } + } + }, + "Humanizer.Core.el/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/el/Humanizer.resources.dll": { + "locale": "el" + } + } + }, + "Humanizer.Core.es/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/es/Humanizer.resources.dll": { + "locale": "es" + } + } + }, + "Humanizer.Core.fa/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fa/Humanizer.resources.dll": { + "locale": "fa" + } + } + }, + "Humanizer.Core.fi-FI/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fi-FI/Humanizer.resources.dll": { + "locale": "fi-FI" + } + } + }, + "Humanizer.Core.fr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr/Humanizer.resources.dll": { + "locale": "fr" + } + } + }, + "Humanizer.Core.fr-BE/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr-BE/Humanizer.resources.dll": { + "locale": "fr-BE" + } + } + }, + "Humanizer.Core.he/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/he/Humanizer.resources.dll": { + "locale": "he" + } + } + }, + "Humanizer.Core.hr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hr/Humanizer.resources.dll": { + "locale": "hr" + } + } + }, + "Humanizer.Core.hu/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hu/Humanizer.resources.dll": { + "locale": "hu" + } + } + }, + "Humanizer.Core.hy/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hy/Humanizer.resources.dll": { + "locale": "hy" + } + } + }, + "Humanizer.Core.id/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/id/Humanizer.resources.dll": { + "locale": "id" + } + } + }, + "Humanizer.Core.is/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/is/Humanizer.resources.dll": { + "locale": "is" + } + } + }, + "Humanizer.Core.it/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/it/Humanizer.resources.dll": { + "locale": "it" + } + } + }, + "Humanizer.Core.ja/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ja/Humanizer.resources.dll": { + "locale": "ja" + } + } + }, + "Humanizer.Core.ko-KR/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { + "locale": "ko-KR" + } + } + }, + "Humanizer.Core.ku/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ku/Humanizer.resources.dll": { + "locale": "ku" + } + } + }, + "Humanizer.Core.lv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/lv/Humanizer.resources.dll": { + "locale": "lv" + } + } + }, + "Humanizer.Core.ms-MY/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { + "locale": "ms-MY" + } + } + }, + "Humanizer.Core.mt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/mt/Humanizer.resources.dll": { + "locale": "mt" + } + } + }, + "Humanizer.Core.nb/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb/Humanizer.resources.dll": { + "locale": "nb" + } + } + }, + "Humanizer.Core.nb-NO/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb-NO/Humanizer.resources.dll": { + "locale": "nb-NO" + } + } + }, + "Humanizer.Core.nl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nl/Humanizer.resources.dll": { + "locale": "nl" + } + } + }, + "Humanizer.Core.pl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pl/Humanizer.resources.dll": { + "locale": "pl" + } + } + }, + "Humanizer.Core.pt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pt/Humanizer.resources.dll": { + "locale": "pt" + } + } + }, + "Humanizer.Core.ro/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ro/Humanizer.resources.dll": { + "locale": "ro" + } + } + }, + "Humanizer.Core.ru/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ru/Humanizer.resources.dll": { + "locale": "ru" + } + } + }, + "Humanizer.Core.sk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sk/Humanizer.resources.dll": { + "locale": "sk" + } + } + }, + "Humanizer.Core.sl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sl/Humanizer.resources.dll": { + "locale": "sl" + } + } + }, + "Humanizer.Core.sr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr/Humanizer.resources.dll": { + "locale": "sr" + } + } + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr-Latn/Humanizer.resources.dll": { + "locale": "sr-Latn" + } + } + }, + "Humanizer.Core.sv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sv/Humanizer.resources.dll": { + "locale": "sv" + } + } + }, + "Humanizer.Core.th-TH/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { + "locale": "th-TH" + } + } + }, + "Humanizer.Core.tr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/tr/Humanizer.resources.dll": { + "locale": "tr" + } + } + }, + "Humanizer.Core.uk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uk/Humanizer.resources.dll": { + "locale": "uk" + } + } + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { + "locale": "uz-Cyrl-UZ" + } + } + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { + "locale": "uz-Latn-UZ" + } + } + }, + "Humanizer.Core.vi/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/vi/Humanizer.resources.dll": { + "locale": "vi" + } + } + }, + "Humanizer.Core.zh-CN/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-CN/Humanizer.resources.dll": { + "locale": "zh-CN" + } + } + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hans/Humanizer.resources.dll": { + "locale": "zh-Hans" + } + } + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hant/Humanizer.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "LigerShark.WebOptimizer.Core/3.0.426": { + "type": "package", + "dependencies": { + "NUglify": "1.21.9" + }, + "compile": { + "lib/net8.0/WebOptimizer.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/WebOptimizer.Core.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "build/_._": {} + } + }, + "linq2db/5.4.1": { + "type": "package", + "compile": { + "lib/net6.0/linq2db.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/linq2db.dll": { + "related": ".xml" + } + } + }, + "MailKit/4.8.0": { + "type": "package", + "dependencies": { + "MimeKit": "4.8.0", + "System.Formats.Asn1": "8.0.1" + }, + "compile": { + "lib/net8.0/MailKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/MailKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + } + }, + "MaxMind.Db/4.1.0": { + "type": "package", + "compile": { + "lib/net8.0/MaxMind.Db.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MaxMind.Db.dll": { + "related": ".xml" + } + } + }, + "MaxMind.GeoIP2/5.2.0": { + "type": "package", + "dependencies": { + "MaxMind.Db": "4.1.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/MaxMind.GeoIP2.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MaxMind.GeoIP2.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.32": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.DataProtection/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "3.1.32", + "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.32", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.32", + "Microsoft.Extensions.Logging.Abstractions": "3.1.32", + "Microsoft.Extensions.Options": "3.1.32", + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Cryptography.Xml": "4.7.1" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.32": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.JsonPatch/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "8.0.10", + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.0", + "Microsoft.CodeAnalysis.Razor": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "6.0.0", + "Microsoft.CodeAnalysis.Razor": "6.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.0.0]" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Razor/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.0.0", + "Microsoft.CodeAnalysis.Common": "4.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/5.2.0": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.3", + "Microsoft.Data.SqlClient.SNI.runtime": "5.2.0", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Runtime.Caching": "8.0.0" + }, + "compile": { + "ref/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hant" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.SqlServer/8.0.10": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.2", + "Microsoft.Data.SqlClient": "4.0.5", + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "StackExchange.Redis": "2.7.27" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.32" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.32", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32", + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.32", + "Microsoft.Extensions.Logging.Abstractions": "3.1.32" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.ObjectPool/6.0.16": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Identity.Client/4.66.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.65.0": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.65.0", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.35.0", + "System.IdentityModel.Tokens.Jwt": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MimeKit/4.8.0": { + "type": "package", + "dependencies": { + "BouncyCastle.Cryptography": "2.4.0", + "System.Formats.Asn1": "8.0.1", + "System.Security.Cryptography.Pkcs": "8.0.0" + }, + "compile": { + "lib/net8.0/MimeKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/MimeKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + } + }, + "MySqlConnector/2.3.7": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.1" + }, + "compile": { + "lib/net8.0/MySqlConnector.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MySqlConnector.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + } + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "type": "package", + "dependencies": { + "Nito.AsyncEx.Tasks": "5.1.2", + "Nito.Collections.Deque": "1.1.1" + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "related": ".xml" + } + } + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "type": "package", + "dependencies": { + "Nito.Disposables": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "related": ".xml" + } + } + }, + "Nito.Collections.Deque/1.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "related": ".xml" + } + } + }, + "Nito.Disposables/2.2.1": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.7.1" + }, + "compile": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "related": ".xml" + } + } + }, + "Npgsql/8.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "NUglify/1.21.9": { + "type": "package", + "compile": { + "lib/net5.0/NUglify.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/NUglify.dll": { + "related": ".xml" + } + } + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "5.0.1" + }, + "compile": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + } + }, + "QuestPDF/2024.10.1": { + "type": "package", + "compile": { + "lib/net8.0/QuestPDF.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/QuestPDF.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/QuestPDF.targets": {} + }, + "runtimeTargets": { + "runtimes/linux-arm64/native/libQuestPdfSkia.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libQuestPdfSkia.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libQuestPdfSkia.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx-arm64/native/libQuestPdfSkia.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libQuestPdfSkia.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-x64/native/QuestPdfSkia.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/QuestPdfSkia.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "RBush/3.2.0": { + "type": "package", + "compile": { + "lib/net6.0/RBush.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/RBush.dll": { + "related": ".xml" + } + } + }, + "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/_._": {} + } + }, + "ShimSkiaSharp/2.0.0.1": { + "type": "package", + "compile": { + "lib/net8.0/ShimSkiaSharp.dll": {} + }, + "runtime": { + "lib/net8.0/ShimSkiaSharp.dll": {} + } + }, + "SixLabors.Fonts/1.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + } + }, + "SkiaSharp/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.8", + "SkiaSharp.NativeAssets.macOS": "2.88.8" + }, + "compile": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.HarfBuzz/2.88.8": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "7.3.0.2", + "SkiaSharp": "2.88.8" + }, + "compile": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.8" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "StackExchange.Redis/2.7.27": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Pipelines.Sockets.Unofficial": "2.2.8" + }, + "compile": { + "lib/net6.0/StackExchange.Redis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/StackExchange.Redis.dll": { + "related": ".xml" + } + } + }, + "Svg.Custom/2.0.0.1": { + "type": "package", + "dependencies": { + "ExCSS": "4.2.3" + }, + "compile": { + "lib/net8.0/Svg.Custom.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Custom.dll": {} + } + }, + "Svg.Model/2.0.0.1": { + "type": "package", + "dependencies": { + "ShimSkiaSharp": "2.0.0.1", + "Svg.Custom": "2.0.0.1" + }, + "compile": { + "lib/net8.0/Svg.Model.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Model.dll": {} + } + }, + "Svg.Skia/2.0.0.1": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.8", + "SkiaSharp.HarfBuzz": "2.88.8", + "Svg.Custom": "2.0.0.1", + "Svg.Model": "2.0.0.1" + }, + "compile": { + "lib/net8.0/Svg.Skia.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Skia.dll": {} + } + }, + "System.ClientModel/1.1.0": { + "type": "package", + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "6.0.9" + }, + "compile": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + } + }, + "System.CodeDom/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Collections/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.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/8.0.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "8.0.1", + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.EventLog/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/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.Formats.Asn1/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "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.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "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.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Hashing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Packaging/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.IO.Pipelines/5.0.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + } + }, + "System.Linq.Async/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Linq.Async.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Linq.Async.dll": { + "related": ".xml" + } + } + }, + "System.Linq.Dynamic.Core/1.4.6": { + "type": "package", + "compile": { + "lib/net8.0/System.Linq.Dynamic.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/System.Linq.Dynamic.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "System.Management/7.0.2": { + "type": "package", + "dependencies": { + "System.CodeDom": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/6.0.0": { + "type": "package", + "dependencies": { + "System.Text.Json": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.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.Metadata/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "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.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Caching/8.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "8.0.0" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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/System.Runtime.Handles.dll": { + "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.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Security.Cryptography.Xml/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.1" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Http/8.0.0": { + "type": "package", + "dependencies": { + "System.ServiceModel.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/net8.0/cs/System.ServiceModel.Http.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/System.ServiceModel.Http.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/System.ServiceModel.Http.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/System.ServiceModel.Http.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/System.ServiceModel.Http.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/System.ServiceModel.Http.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/System.ServiceModel.Http.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/System.ServiceModel.Http.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/System.ServiceModel.Http.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/System.ServiceModel.Http.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/System.ServiceModel.Http.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/System.ServiceModel.Http.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/System.ServiceModel.Http.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.ServiceModel.Primitives/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ObjectPool": "6.0.16", + "System.Security.Cryptography.Xml": "6.0.1" + }, + "compile": { + "ref/net8.0/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/net8.0/System.ServiceModel.Primitives.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/net8.0/cs/System.ServiceModel.Primitives.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/System.ServiceModel.Primitives.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/System.ServiceModel.Primitives.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/System.ServiceModel.Primitives.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/System.ServiceModel.Primitives.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/System.ServiceModel.Primitives.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/System.ServiceModel.Primitives.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/System.ServiceModel.Primitives.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/System.ServiceModel.Primitives.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/System.ServiceModel.Primitives.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/System.ServiceModel.Primitives.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/System.ServiceModel.Primitives.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/System.ServiceModel.Primitives.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "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/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/6.0.10": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/System.Text.Json.targets": {} + } + }, + "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/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "WebMarkupMin.AspNet.Common/2.17.0": { + "type": "package", + "dependencies": { + "WebMarkupMin.Core": "2.17.0" + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll": { + "related": ".xml" + } + } + }, + "WebMarkupMin.AspNetCore8/2.17.0": { + "type": "package", + "dependencies": { + "WebMarkupMin.AspNet.Common": "2.17.0" + }, + "compile": { + "lib/net8.0/WebMarkupMin.AspNetCore8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/WebMarkupMin.AspNetCore8.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "WebMarkupMin.Core/2.17.0": { + "type": "package", + "dependencies": { + "AdvancedStringBuilder": "0.1.1" + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "related": ".xml" + } + } + }, + "WebMarkupMin.NUglify/2.17.0": { + "type": "package", + "dependencies": { + "NUglify": "1.21.9", + "WebMarkupMin.Core": "2.17.0" + }, + "compile": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "related": ".xml" + } + } + }, + "Nop.Core/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "AutoMapper": "13.0.1", + "Autofac.Extensions.DependencyInjection": "10.0.0", + "Azure.Extensions.AspNetCore.DataProtection.Blobs": "1.3.4", + "Azure.Extensions.AspNetCore.DataProtection.Keys": "1.2.4", + "Azure.Identity": "1.13.0", + "Humanizer": "2.14.1", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "8.0.10", + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "8.0.10", + "Microsoft.Extensions.Caching.SqlServer": "8.0.10", + "Microsoft.Extensions.Caching.StackExchangeRedis": "8.0.10", + "Nito.AsyncEx.Coordination": "5.1.2", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Linq.Async": "6.0.1" + }, + "compile": { + "bin/placeholder/Nop.Core.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Core.dll": {} + } + }, + "Nop.Data/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "FluentMigrator": "5.2.0", + "FluentMigrator.Runner": "5.1.0", + "Microsoft.Data.SqlClient": "5.2.0", + "MySqlConnector": "2.3.7", + "Nop.Core": "4.70.0", + "Npgsql": "8.0.5", + "System.Configuration.ConfigurationManager": "8.0.1", + "System.Net.NameResolution": "4.3.0", + "linq2db": "5.4.1" + }, + "compile": { + "bin/placeholder/Nop.Data.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Data.dll": {} + } + }, + "Nop.Services/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Azure.Storage.Blobs": "12.22.2", + "ClosedXML": "0.104.1", + "Google.Apis.Auth": "1.68.0", + "HarfBuzzSharp.NativeAssets.Linux": "7.3.0.2", + "MailKit": "4.8.0", + "MaxMind.GeoIP2": "5.2.0", + "Microsoft.Identity.Client": "4.66.1", + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "QuestPDF": "2024.10.1", + "SkiaSharp": "2.88.8", + "SkiaSharp.NativeAssets.Linux.NoDependencies": "2.88.8", + "Svg.Skia": "2.0.0.1", + "System.Linq.Dynamic.Core": "1.4.6", + "System.ServiceModel.Http": "8.0.0" + }, + "compile": { + "bin/placeholder/Nop.Services.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Services.dll": {} + } + }, + "Nop.Web/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "Nop.Services": "4.70.0", + "Nop.Web.Framework": "4.70.0" + }, + "compile": { + "bin/placeholder/Nop.Web.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Web.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Nop.Web.Framework/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "FluentValidation.AspNetCore": "11.3.0", + "LigerShark.WebOptimizer.Core": "3.0.426", + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "Nop.Services": "4.70.0", + "WebMarkupMin.AspNetCore8": "2.17.0", + "WebMarkupMin.NUglify": "2.17.0" + }, + "compile": { + "bin/placeholder/Nop.Web.Framework.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Web.Framework.dll": {} + } + } + } + }, + "libraries": { + "AdvancedStringBuilder/0.1.1": { + "sha512": "32IrlspOA59ewotQ4tlKP27QhKxMKGB7oncqlwVHn/hAz+j/r3HvLr6/W9ni9Mnyktlcg6kt7QZS8rEgur1+4Q==", + "type": "package", + "path": "advancedstringbuilder/0.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "advancedstringbuilder.0.1.1.nupkg.sha512", + "advancedstringbuilder.nuspec", + "icon.png", + "lib/net40-client/AdvancedStringBuilder.dll", + "lib/net40-client/AdvancedStringBuilder.xml", + "lib/net45/AdvancedStringBuilder.dll", + "lib/net45/AdvancedStringBuilder.xml", + "lib/netstandard1.0/AdvancedStringBuilder.dll", + "lib/netstandard1.0/AdvancedStringBuilder.xml", + "lib/netstandard2.0/AdvancedStringBuilder.dll", + "lib/netstandard2.0/AdvancedStringBuilder.xml", + "readme.txt" + ] + }, + "Autofac/8.1.0": { + "sha512": "O2QT+0DSTBR2Ojpacmcj3L0KrnnXTFrwLl/OW1lBUDiHhb89msHEHNhTA8AlK3jdFiAfMbAYyQaJVvRe6oSBcQ==", + "type": "package", + "path": "autofac/8.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.8.1.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net6.0/Autofac.dll", + "lib/net6.0/Autofac.xml", + "lib/net7.0/Autofac.dll", + "lib/net7.0/Autofac.xml", + "lib/net8.0/Autofac.dll", + "lib/net8.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/10.0.0": { + "sha512": "ZjR/onUlP7BzQ7VBBigQepWLAyAzi3VRGX3pP6sBqkPRiT61fsTZqbTpRUKxo30TMgbs1o3y6bpLbETix4SJog==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net6.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net7.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net7.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net8.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "AutoMapper/13.0.1": { + "sha512": "/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "type": "package", + "path": "automapper/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.13.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/net6.0/AutoMapper.dll", + "lib/net6.0/AutoMapper.xml" + ] + }, + "Azure.Core/1.44.1": { + "sha512": "YyznXLQZCregzHvioip07/BkzjuWNXogJEVz9T5W6TwjNr17ax41YGzYMptlo2G10oLCuVPoyva62y0SIRDixg==", + "type": "package", + "path": "azure.core/1.44.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.core.1.44.1.nupkg.sha512", + "azure.core.nuspec", + "azureicon.png", + "lib/net461/Azure.Core.dll", + "lib/net461/Azure.Core.xml", + "lib/net472/Azure.Core.dll", + "lib/net472/Azure.Core.xml", + "lib/net6.0/Azure.Core.dll", + "lib/net6.0/Azure.Core.xml", + "lib/netstandard2.0/Azure.Core.dll", + "lib/netstandard2.0/Azure.Core.xml" + ] + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.3.4": { + "sha512": "zS+x0MpUMSbvZD598lwAoax+ohIeSAvGlXpT71iP7FFmMZ+Tjz/8hx+jZH/RbV2cJYTYbux8XFDll7LMPuz46g==", + "type": "package", + "path": "azure.extensions.aspnetcore.dataprotection.blobs/1.3.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.extensions.aspnetcore.dataprotection.blobs.1.3.4.nupkg.sha512", + "azure.extensions.aspnetcore.dataprotection.blobs.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.xml" + ] + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.2.4": { + "sha512": "sl0E1iOrVWxxWUTFzzo6hN2+ZjYK8B84t/NEbeVl8MY3xMO3lR8JBSeWGp3u5OL6Z8I2lTAescgOz/CkIni5Lg==", + "type": "package", + "path": "azure.extensions.aspnetcore.dataprotection.keys/1.2.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.extensions.aspnetcore.dataprotection.keys.1.2.4.nupkg.sha512", + "azure.extensions.aspnetcore.dataprotection.keys.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.xml" + ] + }, + "Azure.Identity/1.13.0": { + "sha512": "UMYCdapkVRojCtXqUmrWMAEV/i1N5haRcQ481oBmXn+kpq1zLJXiL6ESghbxbE0QV5zvewUJIy/IZcvijcpLfg==", + "type": "package", + "path": "azure.identity/1.13.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.identity.1.13.0.nupkg.sha512", + "azure.identity.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Identity.dll", + "lib/netstandard2.0/Azure.Identity.xml" + ] + }, + "Azure.Security.KeyVault.Keys/4.6.0": { + "sha512": "1KbCIkXmLaj+kDDNm1Va5rNlzgcJ/fVtnsoVmzZPKa38jz6DXhPyojdvGaOX8AdupGJceg0X1vrsGvZKN79Qzw==", + "type": "package", + "path": "azure.security.keyvault.keys/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.security.keyvault.keys.4.6.0.nupkg.sha512", + "azure.security.keyvault.keys.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll", + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.xml" + ] + }, + "Azure.Storage.Blobs/12.22.2": { + "sha512": "/BK63qx31dhXjnqOXB90DP8mJM+pHbti45+v/D3SiEgP2A+ekvJlGWGLVGQznriT5UAOerM+3vAAEJNKolVSIQ==", + "type": "package", + "path": "azure.storage.blobs/12.22.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.storage.blobs.12.22.2.nupkg.sha512", + "azure.storage.blobs.nuspec", + "azureicon.png", + "lib/net6.0/Azure.Storage.Blobs.dll", + "lib/net6.0/Azure.Storage.Blobs.xml", + "lib/netstandard2.0/Azure.Storage.Blobs.dll", + "lib/netstandard2.0/Azure.Storage.Blobs.xml", + "lib/netstandard2.1/Azure.Storage.Blobs.dll", + "lib/netstandard2.1/Azure.Storage.Blobs.xml" + ] + }, + "Azure.Storage.Common/12.21.1": { + "sha512": "NgDJw/upcro33AgGf91sPIG+BU2pFTgGDBzWEp8HctGwzmbjG80eYTl4CJMIwgxVOQWnEXnQZXLY7w3k+BQ9ig==", + "type": "package", + "path": "azure.storage.common/12.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.storage.common.12.21.1.nupkg.sha512", + "azure.storage.common.nuspec", + "azureicon.png", + "lib/net6.0/Azure.Storage.Common.dll", + "lib/net6.0/Azure.Storage.Common.xml", + "lib/netstandard2.0/Azure.Storage.Common.dll", + "lib/netstandard2.0/Azure.Storage.Common.xml" + ] + }, + "BouncyCastle.Cryptography/2.4.0": { + "sha512": "SwXsAV3sMvAU/Nn31pbjhWurYSjJ+/giI/0n6tCrYoupEK34iIHCuk3STAd9fx8yudM85KkLSVdn951vTng/vQ==", + "type": "package", + "path": "bouncycastle.cryptography/2.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "bouncycastle.cryptography.2.4.0.nupkg.sha512", + "bouncycastle.cryptography.nuspec", + "lib/net461/BouncyCastle.Cryptography.dll", + "lib/net461/BouncyCastle.Cryptography.xml", + "lib/net6.0/BouncyCastle.Cryptography.dll", + "lib/net6.0/BouncyCastle.Cryptography.xml", + "lib/netstandard2.0/BouncyCastle.Cryptography.dll", + "lib/netstandard2.0/BouncyCastle.Cryptography.xml", + "packageIcon.png" + ] + }, + "ClosedXML/0.104.1": { + "sha512": "RVm2fUNWJlBJlg07shrfeWzrHPG5ypI/vARqdUOUbUdaog8yBw8l4IbCHf2MXt0AXtzaZqGNqhFaCAHigCBdfw==", + "type": "package", + "path": "closedxml/0.104.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "closedxml.0.104.1.nupkg.sha512", + "closedxml.nuspec", + "lib/netstandard2.0/ClosedXML.dll", + "lib/netstandard2.0/ClosedXML.pdb", + "lib/netstandard2.0/ClosedXML.xml", + "lib/netstandard2.1/ClosedXML.dll", + "lib/netstandard2.1/ClosedXML.pdb", + "lib/netstandard2.1/ClosedXML.xml", + "nuget-logo.png" + ] + }, + "ClosedXML.Parser/1.2.0": { + "sha512": "w+/0tsxABS3lkSH8EUlA7IGme+mq5T/Puf3DbOiTckmSuUpAUO2LK29oXYByCcWkBv6wcRHxgWlQb1lxkwI0Tw==", + "type": "package", + "path": "closedxml.parser/1.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "closedxml.parser.1.2.0.nupkg.sha512", + "closedxml.parser.nuspec", + "lib/netstandard2.0/ClosedXML.Parser.dll", + "lib/netstandard2.0/ClosedXML.Parser.xml", + "lib/netstandard2.1/ClosedXML.Parser.dll", + "lib/netstandard2.1/ClosedXML.Parser.xml" + ] + }, + "DocumentFormat.OpenXml/3.0.1": { + "sha512": "DCK1cwFUJ1FGGyYyo++HWl9H1RkqMWIu+FGOLRy6E4L4y0/HIhlJ7N/n1HKboFfOwKn1cMBRxt1RCuDbIEy5YQ==", + "type": "package", + "path": "documentformat.openxml/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.3.0.1.nupkg.sha512", + "documentformat.openxml.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.dll", + "lib/net35/DocumentFormat.OpenXml.xml", + "lib/net40/DocumentFormat.OpenXml.dll", + "lib/net40/DocumentFormat.OpenXml.xml", + "lib/net46/DocumentFormat.OpenXml.dll", + "lib/net46/DocumentFormat.OpenXml.xml", + "lib/net8.0/DocumentFormat.OpenXml.dll", + "lib/net8.0/DocumentFormat.OpenXml.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.xml" + ] + }, + "DocumentFormat.OpenXml.Framework/3.0.1": { + "sha512": "ifyI7OW7sggz7LQMIAD2aUsY/zVUON9QaHrpZ4MK33iVMeHlTG4uhUE2aLWb31nry+LCs2ALDAwf8OfUJGjgBg==", + "type": "package", + "path": "documentformat.openxml.framework/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.framework.3.0.1.nupkg.sha512", + "documentformat.openxml.framework.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.Framework.dll", + "lib/net35/DocumentFormat.OpenXml.Framework.xml", + "lib/net40/DocumentFormat.OpenXml.Framework.dll", + "lib/net40/DocumentFormat.OpenXml.Framework.xml", + "lib/net46/DocumentFormat.OpenXml.Framework.dll", + "lib/net46/DocumentFormat.OpenXml.Framework.xml", + "lib/net6.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net6.0/DocumentFormat.OpenXml.Framework.xml", + "lib/net8.0/DocumentFormat.OpenXml.Framework.dll", + "lib/net8.0/DocumentFormat.OpenXml.Framework.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.Framework.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.Framework.xml" + ] + }, + "ExcelNumberFormat/1.1.0": { + "sha512": "R3BVHPs9O+RkExbZYTGT0+9HLbi8ZrNij1Yziyw6znd3J7P3uoIR07uwTLGOogtz1p6+0sna66eBoXu7tBiVQA==", + "type": "package", + "path": "excelnumberformat/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excelnumberformat.1.1.0.nupkg.sha512", + "excelnumberformat.nuspec", + "icon.png", + "lib/net20/ExcelNumberFormat.dll", + "lib/net20/ExcelNumberFormat.xml", + "lib/netstandard1.0/ExcelNumberFormat.dll", + "lib/netstandard1.0/ExcelNumberFormat.xml", + "lib/netstandard2.0/ExcelNumberFormat.dll", + "lib/netstandard2.0/ExcelNumberFormat.xml" + ] + }, + "ExCSS/4.2.3": { + "sha512": "SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "type": "package", + "path": "excss/4.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excss.4.2.3.nupkg.sha512", + "excss.nuspec", + "lib/net48/ExCSS.dll", + "lib/net6.0/ExCSS.dll", + "lib/net7.0/ExCSS.dll", + "lib/netcoreapp3.1/ExCSS.dll", + "lib/netstandard2.0/ExCSS.dll", + "lib/netstandard2.1/ExCSS.dll", + "readme.md" + ] + }, + "FirebirdSql.Data.FirebirdClient/10.0.0": { + "sha512": "x+JkSd6TeL9zUXDbi5C0NPeZ1ejo5sw3G9nhoxvVGXhaU399agYgO5RXtYRmcS4GkeA57Q9sThe5pFL2knSdXQ==", + "type": "package", + "path": "firebirdsql.data.firebirdclient/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "firebird-logo.png", + "firebirdsql.data.firebirdclient.10.0.0.nupkg.sha512", + "firebirdsql.data.firebirdclient.nuspec", + "lib/net48/FirebirdSql.Data.FirebirdClient.dll", + "lib/net5.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/net6.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/netstandard2.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/netstandard2.1/FirebirdSql.Data.FirebirdClient.dll", + "license.txt" + ] + }, + "FluentMigrator/5.2.0": { + "sha512": "h3w95meLtHsdWQY1BVVh5eaGcI82zADR2T1WSCcc/NTc+P+rsGzmqG5RF9Gz+Fy1BNEQXL47Xppk/YorwJgEWg==", + "type": "package", + "path": "fluentmigrator/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.5.2.0.nupkg.sha512", + "fluentmigrator.nuspec", + "lib/net48/FluentMigrator.dll", + "lib/net48/FluentMigrator.pdb", + "lib/net48/FluentMigrator.xml", + "lib/netstandard2.0/FluentMigrator.dll", + "lib/netstandard2.0/FluentMigrator.pdb", + "lib/netstandard2.0/FluentMigrator.xml" + ] + }, + "FluentMigrator.Abstractions/5.2.0": { + "sha512": "MvzpENiB2o8QqIXYgKlbtrEPyaHc2m2ukRmaNWszL9ZJH3OBY/kYMotn/dxWC+zwlUo82ZPvoCJtoFi2nptz2w==", + "type": "package", + "path": "fluentmigrator.abstractions/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.abstractions.5.2.0.nupkg.sha512", + "fluentmigrator.abstractions.nuspec", + "lib/net48/FluentMigrator.Abstractions.dll", + "lib/net48/FluentMigrator.Abstractions.pdb", + "lib/net48/FluentMigrator.Abstractions.xml", + "lib/net48/de-DE/FluentMigrator.Abstractions.resources.dll", + "lib/netstandard2.0/FluentMigrator.Abstractions.dll", + "lib/netstandard2.0/FluentMigrator.Abstractions.pdb", + "lib/netstandard2.0/FluentMigrator.Abstractions.xml", + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll" + ] + }, + "FluentMigrator.Extensions.MySql/5.1.0": { + "sha512": "8dx8AS/XFs6HH7G3mw2FcDM43Y7+n96Z0OS9uQjmyum5Cv2Qp2dD2Gf747MCtbWbC/vdhJGomld+BnccBkNA3w==", + "type": "package", + "path": "fluentmigrator.extensions.mysql/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.mysql.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.mysql.nuspec", + "lib/net48/FluentMigrator.Extensions.MySql.dll", + "lib/net48/FluentMigrator.Extensions.MySql.pdb", + "lib/net48/FluentMigrator.Extensions.MySql.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.xml" + ] + }, + "FluentMigrator.Extensions.Oracle/5.1.0": { + "sha512": "Cpnav//COP8wl/NVa7EYyiQAsF0lAba3NYizAWXq+vIApxyu5L9Cp6GpyCTgIIOR4QLTx3FXV4cCg7/QKXkHHA==", + "type": "package", + "path": "fluentmigrator.extensions.oracle/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.oracle.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.oracle.nuspec", + "lib/net48/FluentMigrator.Extensions.Oracle.dll", + "lib/net48/FluentMigrator.Extensions.Oracle.pdb", + "lib/net48/FluentMigrator.Extensions.Oracle.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.xml" + ] + }, + "FluentMigrator.Extensions.Postgres/5.1.0": { + "sha512": "g3Se8v9zyjJUxFedx6mxCtCWrpr5IRD1BExyeIuvorJZZztE4emO/qXtpEB/m9YwdD8stJuPShbMWUa7bKm86Q==", + "type": "package", + "path": "fluentmigrator.extensions.postgres/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.postgres.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.postgres.nuspec", + "lib/net48/FluentMigrator.Extensions.Postgres.dll", + "lib/net48/FluentMigrator.Extensions.Postgres.pdb", + "lib/net48/FluentMigrator.Extensions.Postgres.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.xml" + ] + }, + "FluentMigrator.Extensions.Snowflake/5.1.0": { + "sha512": "3YnRq9q5AcShusF9OvbfMFu/Swyfn8V5YD/vkvAsNTcIIAWs4jXY0QhLR/lofIwvk56XqXE263x2OfzLZnf+gQ==", + "type": "package", + "path": "fluentmigrator.extensions.snowflake/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.snowflake.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.snowflake.nuspec", + "lib/net48/FluentMigrator.Extensions.Snowflake.dll", + "lib/net48/FluentMigrator.Extensions.Snowflake.pdb", + "lib/net48/FluentMigrator.Extensions.Snowflake.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.xml" + ] + }, + "FluentMigrator.Extensions.SqlServer/5.1.0": { + "sha512": "zdcQ1mYvyFY+gzfLScv5Y4j/qFXn4xLed71WqjiNWvN2/JkVh7Xa94K/b+PA6AYh8a7AIqdbnOKtzFr0Lh+95g==", + "type": "package", + "path": "fluentmigrator.extensions.sqlserver/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.sqlserver.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.sqlserver.nuspec", + "lib/net48/FluentMigrator.Extensions.SqlServer.dll", + "lib/net48/FluentMigrator.Extensions.SqlServer.pdb", + "lib/net48/FluentMigrator.Extensions.SqlServer.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.xml" + ] + }, + "FluentMigrator.Runner/5.1.0": { + "sha512": "jincYPtHyQjQ3XgQ7c8aPkKLX88HxueHdeSz++WDVo0LXnR4aFbvi/UXbtAsnwt+Jj06KFhF1DlYVOoT3yrhKQ==", + "type": "package", + "path": "fluentmigrator.runner/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.5.1.0.nupkg.sha512", + "fluentmigrator.runner.nuspec", + "lib/net48/FluentMigrator.Runner.dll", + "lib/net48/FluentMigrator.Runner.pdb", + "lib/net48/FluentMigrator.Runner.xml", + "lib/netstandard2.0/FluentMigrator.Runner.dll", + "lib/netstandard2.0/FluentMigrator.Runner.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.xml" + ] + }, + "FluentMigrator.Runner.Core/5.1.0": { + "sha512": "nP/3ezpP57wqt/1+NScrsSRiQj90xeaNjEyjFIekNtPzmGyM/z//AYk3MXtfM8so8b+JZNL5INQYgXaVGISD0Q==", + "type": "package", + "path": "fluentmigrator.runner.core/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.core.5.1.0.nupkg.sha512", + "fluentmigrator.runner.core.nuspec", + "lib/net48/FluentMigrator.Runner.Core.dll", + "lib/net48/FluentMigrator.Runner.Core.pdb", + "lib/net48/FluentMigrator.Runner.Core.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Core.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Core.xml" + ] + }, + "FluentMigrator.Runner.Db2/5.1.0": { + "sha512": "Z9CdgQnkyBgNyRpTA2le/VEQaa2ukFNqDYEqkRu2cOZk+XF3JsjkQMeeQB2Byy7yZhgK/SGrauLvebB5wF1wEw==", + "type": "package", + "path": "fluentmigrator.runner.db2/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.db2.5.1.0.nupkg.sha512", + "fluentmigrator.runner.db2.nuspec", + "lib/net48/FluentMigrator.Runner.Db2.dll", + "lib/net48/FluentMigrator.Runner.Db2.pdb", + "lib/net48/FluentMigrator.Runner.Db2.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.xml" + ] + }, + "FluentMigrator.Runner.Firebird/5.1.0": { + "sha512": "lNFo+LZQczW3vtuSjpOfRxUhoRrwBMg+PV+SOk12c1PnkfvDAtsX/HSn9yUI3xV+fN1x6krBIwIQ9o63HQZAfg==", + "type": "package", + "path": "fluentmigrator.runner.firebird/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.firebird.5.1.0.nupkg.sha512", + "fluentmigrator.runner.firebird.nuspec", + "lib/net48/FluentMigrator.Runner.Firebird.dll", + "lib/net48/FluentMigrator.Runner.Firebird.pdb", + "lib/net48/FluentMigrator.Runner.Firebird.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.xml" + ] + }, + "FluentMigrator.Runner.Hana/5.1.0": { + "sha512": "xCRna1elZYhOITRK4uNtPb3xut0GTtteCyTjQF7ZlHC4RFFpg1a2fAWFUF+TB9YVeFxf1QHKhbo8Kr5rGH6HqA==", + "type": "package", + "path": "fluentmigrator.runner.hana/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.hana.5.1.0.nupkg.sha512", + "fluentmigrator.runner.hana.nuspec", + "lib/net48/FluentMigrator.Runner.Hana.dll", + "lib/net48/FluentMigrator.Runner.Hana.pdb", + "lib/net48/FluentMigrator.Runner.Hana.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.xml" + ] + }, + "FluentMigrator.Runner.MySql/5.1.0": { + "sha512": "VywFX3gKQ7EcveKoLcxLwf8aQkWnJn6WQ2aJqe7Dw6gld8o0WBpevsBwQFO1doGqXzhFDlWHO2NwKoqvXQCG+Q==", + "type": "package", + "path": "fluentmigrator.runner.mysql/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.mysql.5.1.0.nupkg.sha512", + "fluentmigrator.runner.mysql.nuspec", + "lib/net48/FluentMigrator.Runner.MySql.dll", + "lib/net48/FluentMigrator.Runner.MySql.pdb", + "lib/net48/FluentMigrator.Runner.MySql.xml", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.xml" + ] + }, + "FluentMigrator.Runner.Oracle/5.1.0": { + "sha512": "qNmTirqFREMOm/HMkO68suXd3EIoadfQ69gvuJ5Hvy7LNQgMAW8FcrcGkNFn0t0JYAtGEbtH9t90/6dmBAwQIg==", + "type": "package", + "path": "fluentmigrator.runner.oracle/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.oracle.5.1.0.nupkg.sha512", + "fluentmigrator.runner.oracle.nuspec", + "lib/net48/FluentMigrator.Runner.Oracle.dll", + "lib/net48/FluentMigrator.Runner.Oracle.pdb", + "lib/net48/FluentMigrator.Runner.Oracle.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.xml" + ] + }, + "FluentMigrator.Runner.Postgres/5.1.0": { + "sha512": "Zr/cqR7b5PJqwO/JPtVz/zn2USO/jLz8b9JEFCjsYIb4AU8WIwNpLoRXsEcWSoHjlAc60LPcZM608tkgDGgA6A==", + "type": "package", + "path": "fluentmigrator.runner.postgres/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.postgres.5.1.0.nupkg.sha512", + "fluentmigrator.runner.postgres.nuspec", + "lib/net48/FluentMigrator.Runner.Postgres.dll", + "lib/net48/FluentMigrator.Runner.Postgres.pdb", + "lib/net48/FluentMigrator.Runner.Postgres.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.xml" + ] + }, + "FluentMigrator.Runner.Redshift/5.1.0": { + "sha512": "7GTF2EaaU8de9ViLobwxSKT+gY81h6b4zXIkMteALdqnAjkMNcynhEradH5OaDe9PorKWWh3/VBzCmO+N516xw==", + "type": "package", + "path": "fluentmigrator.runner.redshift/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.redshift.5.1.0.nupkg.sha512", + "fluentmigrator.runner.redshift.nuspec", + "lib/net48/FluentMigrator.Runner.Redshift.dll", + "lib/net48/FluentMigrator.Runner.Redshift.pdb", + "lib/net48/FluentMigrator.Runner.Redshift.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.xml" + ] + }, + "FluentMigrator.Runner.Snowflake/5.1.0": { + "sha512": "OmGfCxJPSrhJ6VcW6ypqc+NziwH1rygkNEJfW7Jl1DHfwrQtPgIgWw8qTA0abN+RkwtalXsfaEJ+4EuL0L+w6w==", + "type": "package", + "path": "fluentmigrator.runner.snowflake/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.snowflake.5.1.0.nupkg.sha512", + "fluentmigrator.runner.snowflake.nuspec", + "lib/net48/FluentMigrator.Runner.Snowflake.dll", + "lib/net48/FluentMigrator.Runner.Snowflake.pdb", + "lib/net48/FluentMigrator.Runner.Snowflake.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.xml" + ] + }, + "FluentMigrator.Runner.SQLite/5.1.0": { + "sha512": "5fADu6iWF9pnPKhI0S2VmdR8gaFFe4A+ZtAu57A9w8gcZCCPVzekye83+gm93XuAGxOQtT1RErVIy2T0aGcyYA==", + "type": "package", + "path": "fluentmigrator.runner.sqlite/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.sqlite.5.1.0.nupkg.sha512", + "fluentmigrator.runner.sqlite.nuspec", + "lib/net48/FluentMigrator.Runner.SQLite.dll", + "lib/net48/FluentMigrator.Runner.SQLite.pdb", + "lib/net48/FluentMigrator.Runner.SQLite.xml", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.xml" + ] + }, + "FluentMigrator.Runner.SqlServer/5.1.0": { + "sha512": "WiZjICPJRIjuOZG2c52JOspKG0iR9UrfotE/SQMNlGEoIxjp8XrksEw7LytWsXWCymDjZUedNnA7QTqZS4p/Iw==", + "type": "package", + "path": "fluentmigrator.runner.sqlserver/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.sqlserver.5.1.0.nupkg.sha512", + "fluentmigrator.runner.sqlserver.nuspec", + "lib/net48/FluentMigrator.Runner.SqlServer.dll", + "lib/net48/FluentMigrator.Runner.SqlServer.pdb", + "lib/net48/FluentMigrator.Runner.SqlServer.xml", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.xml" + ] + }, + "FluentValidation/11.5.1": { + "sha512": "0h1Q5lNOLLyYTWMJmyNoMqhY4CBRvvUWvJP1R4F2CnmmzuWwvB0A8aVmw5+lOuwYnwUwCRrdeMLbc81F38ahNQ==", + "type": "package", + "path": "fluentvalidation/11.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.11.5.1.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net5.0/FluentValidation.dll", + "lib/net5.0/FluentValidation.xml", + "lib/net6.0/FluentValidation.dll", + "lib/net6.0/FluentValidation.xml", + "lib/net7.0/FluentValidation.dll", + "lib/net7.0/FluentValidation.xml", + "lib/netstandard2.0/FluentValidation.dll", + "lib/netstandard2.0/FluentValidation.xml", + "lib/netstandard2.1/FluentValidation.dll", + "lib/netstandard2.1/FluentValidation.xml" + ] + }, + "FluentValidation.AspNetCore/11.3.0": { + "sha512": "jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==", + "type": "package", + "path": "fluentvalidation.aspnetcore/11.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512", + "fluentvalidation.aspnetcore.nuspec", + "lib/net5.0/FluentValidation.AspNetCore.dll", + "lib/net5.0/FluentValidation.AspNetCore.xml", + "lib/net6.0/FluentValidation.AspNetCore.dll", + "lib/net6.0/FluentValidation.AspNetCore.xml", + "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll", + "lib/netcoreapp3.1/FluentValidation.AspNetCore.xml" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.5.1": { + "sha512": "iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==", + "type": "package", + "path": "fluentvalidation.dependencyinjectionextensions/11.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512", + "fluentvalidation.dependencyinjectionextensions.nuspec", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml" + ] + }, + "Google.Apis/1.68.0": { + "sha512": "s2MymhdpH+ybZNBeZ2J5uFgFHApBp+QXf9FjZSdM1lk/vx5VqIknJwnaWiuAzXxPrLEkesX0Q+UsiWn39yZ9zw==", + "type": "package", + "path": "google.apis/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.1.68.0.nupkg.sha512", + "google.apis.nuspec", + "lib/net462/Google.Apis.dll", + "lib/net462/Google.Apis.pdb", + "lib/net462/Google.Apis.xml", + "lib/net6.0/Google.Apis.dll", + "lib/net6.0/Google.Apis.pdb", + "lib/net6.0/Google.Apis.xml", + "lib/netstandard2.0/Google.Apis.dll", + "lib/netstandard2.0/Google.Apis.pdb", + "lib/netstandard2.0/Google.Apis.xml" + ] + }, + "Google.Apis.Auth/1.68.0": { + "sha512": "hFx8Qz5bZ4w0hpnn4tSmZaaFpjAMsgVElZ+ZgVLUZ2r9i+AKcoVgwiNfv1pruNS5cCvpXqhKECbruBCfRezPHA==", + "type": "package", + "path": "google.apis.auth/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.auth.1.68.0.nupkg.sha512", + "google.apis.auth.nuspec", + "lib/net462/Google.Apis.Auth.dll", + "lib/net462/Google.Apis.Auth.pdb", + "lib/net462/Google.Apis.Auth.xml", + "lib/net6.0/Google.Apis.Auth.dll", + "lib/net6.0/Google.Apis.Auth.pdb", + "lib/net6.0/Google.Apis.Auth.xml", + "lib/netstandard2.0/Google.Apis.Auth.dll", + "lib/netstandard2.0/Google.Apis.Auth.pdb", + "lib/netstandard2.0/Google.Apis.Auth.xml" + ] + }, + "Google.Apis.Core/1.68.0": { + "sha512": "pAqwa6pfu53UXCR2b7A/PAPXeuVg6L1OFw38WckN27NU2+mf+KTjoEg2YGv/f0UyKxzz7DxF1urOTKg/6dTP9g==", + "type": "package", + "path": "google.apis.core/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.core.1.68.0.nupkg.sha512", + "google.apis.core.nuspec", + "lib/net462/Google.Apis.Core.dll", + "lib/net462/Google.Apis.Core.pdb", + "lib/net462/Google.Apis.Core.xml", + "lib/net6.0/Google.Apis.Core.dll", + "lib/net6.0/Google.Apis.Core.pdb", + "lib/net6.0/Google.Apis.Core.xml", + "lib/netstandard2.0/Google.Apis.Core.dll", + "lib/netstandard2.0/Google.Apis.Core.pdb", + "lib/netstandard2.0/Google.Apis.Core.xml" + ] + }, + "HarfBuzzSharp/7.3.0.2": { + "sha512": "0tCd6HyCmNsX/DniCp2b00fo0xPbdNwKOs9BxxyT8oOOuMlWjcSFwzONKyeckCKVBFEsbSmsAHPDTqxoSDwZMg==", + "type": "package", + "path": "harfbuzzsharp/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "harfbuzzsharp.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nuspec", + "lib/monoandroid1.0/HarfBuzzSharp.dll", + "lib/monoandroid1.0/HarfBuzzSharp.pdb", + "lib/monoandroid1.0/HarfBuzzSharp.xml", + "lib/net462/HarfBuzzSharp.dll", + "lib/net462/HarfBuzzSharp.pdb", + "lib/net462/HarfBuzzSharp.xml", + "lib/net6.0-android30.0/HarfBuzzSharp.dll", + "lib/net6.0-android30.0/HarfBuzzSharp.pdb", + "lib/net6.0-android30.0/HarfBuzzSharp.xml", + "lib/net6.0-ios13.6/HarfBuzzSharp.dll", + "lib/net6.0-ios13.6/HarfBuzzSharp.pdb", + "lib/net6.0-ios13.6/HarfBuzzSharp.xml", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.dll", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.pdb", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.xml", + "lib/net6.0-macos10.15/HarfBuzzSharp.dll", + "lib/net6.0-macos10.15/HarfBuzzSharp.pdb", + "lib/net6.0-macos10.15/HarfBuzzSharp.xml", + "lib/net6.0-tvos13.4/HarfBuzzSharp.dll", + "lib/net6.0-tvos13.4/HarfBuzzSharp.pdb", + "lib/net6.0-tvos13.4/HarfBuzzSharp.xml", + "lib/net6.0/HarfBuzzSharp.dll", + "lib/net6.0/HarfBuzzSharp.pdb", + "lib/net6.0/HarfBuzzSharp.xml", + "lib/netcoreapp3.1/HarfBuzzSharp.dll", + "lib/netcoreapp3.1/HarfBuzzSharp.pdb", + "lib/netcoreapp3.1/HarfBuzzSharp.xml", + "lib/netstandard1.3/HarfBuzzSharp.dll", + "lib/netstandard1.3/HarfBuzzSharp.pdb", + "lib/netstandard1.3/HarfBuzzSharp.xml", + "lib/netstandard2.0/HarfBuzzSharp.dll", + "lib/netstandard2.0/HarfBuzzSharp.pdb", + "lib/netstandard2.0/HarfBuzzSharp.xml", + "lib/netstandard2.1/HarfBuzzSharp.dll", + "lib/netstandard2.1/HarfBuzzSharp.pdb", + "lib/netstandard2.1/HarfBuzzSharp.xml", + "lib/tizen40/HarfBuzzSharp.dll", + "lib/tizen40/HarfBuzzSharp.pdb", + "lib/tizen40/HarfBuzzSharp.xml", + "lib/uap10.0.10240/HarfBuzzSharp.dll", + "lib/uap10.0.10240/HarfBuzzSharp.pdb", + "lib/uap10.0.10240/HarfBuzzSharp.xml", + "lib/uap10.0.16299/HarfBuzzSharp.dll", + "lib/uap10.0.16299/HarfBuzzSharp.pdb", + "lib/uap10.0.16299/HarfBuzzSharp.xml", + "lib/xamarinios1.0/HarfBuzzSharp.dll", + "lib/xamarinios1.0/HarfBuzzSharp.pdb", + "lib/xamarinios1.0/HarfBuzzSharp.xml", + "lib/xamarinmac2.0/HarfBuzzSharp.dll", + "lib/xamarinmac2.0/HarfBuzzSharp.pdb", + "lib/xamarinmac2.0/HarfBuzzSharp.xml", + "lib/xamarintvos1.0/HarfBuzzSharp.dll", + "lib/xamarintvos1.0/HarfBuzzSharp.pdb", + "lib/xamarintvos1.0/HarfBuzzSharp.xml", + "lib/xamarinwatchos1.0/HarfBuzzSharp.dll", + "lib/xamarinwatchos1.0/HarfBuzzSharp.pdb", + "lib/xamarinwatchos1.0/HarfBuzzSharp.xml" + ] + }, + "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": { + "sha512": "aKa5J1RqjXKAtdcZJp5wjC78klfBIzJHM6CneN76lFmQ9LLRJA9Oa0TkIDaV8lVLDKMAy5fCKHXFlXUK1YfL/g==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.linux/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.linux.nuspec", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libHarfBuzzSharp.so", + "runtimes/linux-arm64/native/libHarfBuzzSharp.so", + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so", + "runtimes/linux-x64/native/libHarfBuzzSharp.so" + ] + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": { + "sha512": "nycYH/WLJ6ogm+I+QSFCdPJsdxSb5GANWYbQyp1vsd/KjXN56RVUJWPhbgP2GKb/Y7mrsHM7EProqVXlO/EMsA==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.macos/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.macos.nuspec", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libHarfBuzzSharp.dylib" + ] + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": { + "sha512": "DpF9JBzwws2dupOLnjME65hxQWWbN/GD40AoTkwB4S05WANvxo3n81AnQJKxWDCnrWfWhLPB36OF27TvEqzb/A==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.win32/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.win32.nuspec", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libHarfBuzzSharp.dll", + "runtimes/win-x64/native/libHarfBuzzSharp.dll", + "runtimes/win-x86/native/libHarfBuzzSharp.dll" + ] + }, + "Humanizer/2.14.1": { + "sha512": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", + "type": "package", + "path": "humanizer/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.2.14.1.nupkg.sha512", + "humanizer.nuspec", + "logo.png" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "Humanizer.Core.af/2.14.1": { + "sha512": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", + "type": "package", + "path": "humanizer.core.af/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.af.2.14.1.nupkg.sha512", + "humanizer.core.af.nuspec", + "lib/net6.0/af/Humanizer.resources.dll", + "lib/netstandard1.0/af/Humanizer.resources.dll", + "lib/netstandard2.0/af/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ar/2.14.1": { + "sha512": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", + "type": "package", + "path": "humanizer.core.ar/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ar.2.14.1.nupkg.sha512", + "humanizer.core.ar.nuspec", + "lib/net6.0/ar/Humanizer.resources.dll", + "lib/netstandard1.0/ar/Humanizer.resources.dll", + "lib/netstandard2.0/ar/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.az/2.14.1": { + "sha512": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", + "type": "package", + "path": "humanizer.core.az/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.az.2.14.1.nupkg.sha512", + "humanizer.core.az.nuspec", + "lib/net6.0/az/Humanizer.resources.dll", + "lib/netstandard1.0/az/Humanizer.resources.dll", + "lib/netstandard2.0/az/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bg/2.14.1": { + "sha512": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", + "type": "package", + "path": "humanizer.core.bg/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bg.2.14.1.nupkg.sha512", + "humanizer.core.bg.nuspec", + "lib/net6.0/bg/Humanizer.resources.dll", + "lib/netstandard1.0/bg/Humanizer.resources.dll", + "lib/netstandard2.0/bg/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bn-BD/2.14.1": { + "sha512": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", + "type": "package", + "path": "humanizer.core.bn-bd/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "humanizer.core.bn-bd.nuspec", + "lib/net6.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard1.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard2.0/bn-BD/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.cs/2.14.1": { + "sha512": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", + "type": "package", + "path": "humanizer.core.cs/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.cs.2.14.1.nupkg.sha512", + "humanizer.core.cs.nuspec", + "lib/net6.0/cs/Humanizer.resources.dll", + "lib/netstandard1.0/cs/Humanizer.resources.dll", + "lib/netstandard2.0/cs/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.da/2.14.1": { + "sha512": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", + "type": "package", + "path": "humanizer.core.da/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.da.2.14.1.nupkg.sha512", + "humanizer.core.da.nuspec", + "lib/net6.0/da/Humanizer.resources.dll", + "lib/netstandard1.0/da/Humanizer.resources.dll", + "lib/netstandard2.0/da/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.de/2.14.1": { + "sha512": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", + "type": "package", + "path": "humanizer.core.de/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.de.2.14.1.nupkg.sha512", + "humanizer.core.de.nuspec", + "lib/net6.0/de/Humanizer.resources.dll", + "lib/netstandard1.0/de/Humanizer.resources.dll", + "lib/netstandard2.0/de/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.el/2.14.1": { + "sha512": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", + "type": "package", + "path": "humanizer.core.el/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.el.2.14.1.nupkg.sha512", + "humanizer.core.el.nuspec", + "lib/net6.0/el/Humanizer.resources.dll", + "lib/netstandard1.0/el/Humanizer.resources.dll", + "lib/netstandard2.0/el/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.es/2.14.1": { + "sha512": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", + "type": "package", + "path": "humanizer.core.es/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.es.2.14.1.nupkg.sha512", + "humanizer.core.es.nuspec", + "lib/net6.0/es/Humanizer.resources.dll", + "lib/netstandard1.0/es/Humanizer.resources.dll", + "lib/netstandard2.0/es/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fa/2.14.1": { + "sha512": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", + "type": "package", + "path": "humanizer.core.fa/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fa.2.14.1.nupkg.sha512", + "humanizer.core.fa.nuspec", + "lib/net6.0/fa/Humanizer.resources.dll", + "lib/netstandard1.0/fa/Humanizer.resources.dll", + "lib/netstandard2.0/fa/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fi-FI/2.14.1": { + "sha512": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", + "type": "package", + "path": "humanizer.core.fi-fi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "humanizer.core.fi-fi.nuspec", + "lib/net6.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard1.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard2.0/fi-FI/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr/2.14.1": { + "sha512": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", + "type": "package", + "path": "humanizer.core.fr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr.2.14.1.nupkg.sha512", + "humanizer.core.fr.nuspec", + "lib/net6.0/fr/Humanizer.resources.dll", + "lib/netstandard1.0/fr/Humanizer.resources.dll", + "lib/netstandard2.0/fr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr-BE/2.14.1": { + "sha512": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", + "type": "package", + "path": "humanizer.core.fr-be/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr-be.2.14.1.nupkg.sha512", + "humanizer.core.fr-be.nuspec", + "lib/net6.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard1.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard2.0/fr-BE/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.he/2.14.1": { + "sha512": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", + "type": "package", + "path": "humanizer.core.he/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.he.2.14.1.nupkg.sha512", + "humanizer.core.he.nuspec", + "lib/net6.0/he/Humanizer.resources.dll", + "lib/netstandard1.0/he/Humanizer.resources.dll", + "lib/netstandard2.0/he/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hr/2.14.1": { + "sha512": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", + "type": "package", + "path": "humanizer.core.hr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hr.2.14.1.nupkg.sha512", + "humanizer.core.hr.nuspec", + "lib/net6.0/hr/Humanizer.resources.dll", + "lib/netstandard1.0/hr/Humanizer.resources.dll", + "lib/netstandard2.0/hr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hu/2.14.1": { + "sha512": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", + "type": "package", + "path": "humanizer.core.hu/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hu.2.14.1.nupkg.sha512", + "humanizer.core.hu.nuspec", + "lib/net6.0/hu/Humanizer.resources.dll", + "lib/netstandard1.0/hu/Humanizer.resources.dll", + "lib/netstandard2.0/hu/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hy/2.14.1": { + "sha512": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", + "type": "package", + "path": "humanizer.core.hy/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hy.2.14.1.nupkg.sha512", + "humanizer.core.hy.nuspec", + "lib/net6.0/hy/Humanizer.resources.dll", + "lib/netstandard1.0/hy/Humanizer.resources.dll", + "lib/netstandard2.0/hy/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.id/2.14.1": { + "sha512": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", + "type": "package", + "path": "humanizer.core.id/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.id.2.14.1.nupkg.sha512", + "humanizer.core.id.nuspec", + "lib/net6.0/id/Humanizer.resources.dll", + "lib/netstandard1.0/id/Humanizer.resources.dll", + "lib/netstandard2.0/id/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.is/2.14.1": { + "sha512": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", + "type": "package", + "path": "humanizer.core.is/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.is.2.14.1.nupkg.sha512", + "humanizer.core.is.nuspec", + "lib/net6.0/is/Humanizer.resources.dll", + "lib/netstandard1.0/is/Humanizer.resources.dll", + "lib/netstandard2.0/is/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.it/2.14.1": { + "sha512": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", + "type": "package", + "path": "humanizer.core.it/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.it.2.14.1.nupkg.sha512", + "humanizer.core.it.nuspec", + "lib/net6.0/it/Humanizer.resources.dll", + "lib/netstandard1.0/it/Humanizer.resources.dll", + "lib/netstandard2.0/it/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ja/2.14.1": { + "sha512": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", + "type": "package", + "path": "humanizer.core.ja/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ja.2.14.1.nupkg.sha512", + "humanizer.core.ja.nuspec", + "lib/net6.0/ja/Humanizer.resources.dll", + "lib/netstandard1.0/ja/Humanizer.resources.dll", + "lib/netstandard2.0/ja/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ko-KR/2.14.1": { + "sha512": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", + "type": "package", + "path": "humanizer.core.ko-kr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "humanizer.core.ko-kr.nuspec", + "lib/netstandard1.0/ko-KR/Humanizer.resources.dll", + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ku/2.14.1": { + "sha512": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", + "type": "package", + "path": "humanizer.core.ku/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ku.2.14.1.nupkg.sha512", + "humanizer.core.ku.nuspec", + "lib/net6.0/ku/Humanizer.resources.dll", + "lib/netstandard1.0/ku/Humanizer.resources.dll", + "lib/netstandard2.0/ku/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.lv/2.14.1": { + "sha512": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", + "type": "package", + "path": "humanizer.core.lv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.lv.2.14.1.nupkg.sha512", + "humanizer.core.lv.nuspec", + "lib/net6.0/lv/Humanizer.resources.dll", + "lib/netstandard1.0/lv/Humanizer.resources.dll", + "lib/netstandard2.0/lv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ms-MY/2.14.1": { + "sha512": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", + "type": "package", + "path": "humanizer.core.ms-my/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ms-my.2.14.1.nupkg.sha512", + "humanizer.core.ms-my.nuspec", + "lib/netstandard1.0/ms-MY/Humanizer.resources.dll", + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.mt/2.14.1": { + "sha512": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", + "type": "package", + "path": "humanizer.core.mt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.mt.2.14.1.nupkg.sha512", + "humanizer.core.mt.nuspec", + "lib/netstandard1.0/mt/Humanizer.resources.dll", + "lib/netstandard2.0/mt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb/2.14.1": { + "sha512": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", + "type": "package", + "path": "humanizer.core.nb/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb.2.14.1.nupkg.sha512", + "humanizer.core.nb.nuspec", + "lib/net6.0/nb/Humanizer.resources.dll", + "lib/netstandard1.0/nb/Humanizer.resources.dll", + "lib/netstandard2.0/nb/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb-NO/2.14.1": { + "sha512": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", + "type": "package", + "path": "humanizer.core.nb-no/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb-no.2.14.1.nupkg.sha512", + "humanizer.core.nb-no.nuspec", + "lib/net6.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard1.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard2.0/nb-NO/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nl/2.14.1": { + "sha512": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", + "type": "package", + "path": "humanizer.core.nl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nl.2.14.1.nupkg.sha512", + "humanizer.core.nl.nuspec", + "lib/net6.0/nl/Humanizer.resources.dll", + "lib/netstandard1.0/nl/Humanizer.resources.dll", + "lib/netstandard2.0/nl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pl/2.14.1": { + "sha512": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", + "type": "package", + "path": "humanizer.core.pl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pl.2.14.1.nupkg.sha512", + "humanizer.core.pl.nuspec", + "lib/net6.0/pl/Humanizer.resources.dll", + "lib/netstandard1.0/pl/Humanizer.resources.dll", + "lib/netstandard2.0/pl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pt/2.14.1": { + "sha512": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", + "type": "package", + "path": "humanizer.core.pt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pt.2.14.1.nupkg.sha512", + "humanizer.core.pt.nuspec", + "lib/net6.0/pt/Humanizer.resources.dll", + "lib/netstandard1.0/pt/Humanizer.resources.dll", + "lib/netstandard2.0/pt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ro/2.14.1": { + "sha512": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", + "type": "package", + "path": "humanizer.core.ro/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ro.2.14.1.nupkg.sha512", + "humanizer.core.ro.nuspec", + "lib/net6.0/ro/Humanizer.resources.dll", + "lib/netstandard1.0/ro/Humanizer.resources.dll", + "lib/netstandard2.0/ro/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ru/2.14.1": { + "sha512": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", + "type": "package", + "path": "humanizer.core.ru/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ru.2.14.1.nupkg.sha512", + "humanizer.core.ru.nuspec", + "lib/net6.0/ru/Humanizer.resources.dll", + "lib/netstandard1.0/ru/Humanizer.resources.dll", + "lib/netstandard2.0/ru/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sk/2.14.1": { + "sha512": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", + "type": "package", + "path": "humanizer.core.sk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sk.2.14.1.nupkg.sha512", + "humanizer.core.sk.nuspec", + "lib/net6.0/sk/Humanizer.resources.dll", + "lib/netstandard1.0/sk/Humanizer.resources.dll", + "lib/netstandard2.0/sk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sl/2.14.1": { + "sha512": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", + "type": "package", + "path": "humanizer.core.sl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sl.2.14.1.nupkg.sha512", + "humanizer.core.sl.nuspec", + "lib/net6.0/sl/Humanizer.resources.dll", + "lib/netstandard1.0/sl/Humanizer.resources.dll", + "lib/netstandard2.0/sl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr/2.14.1": { + "sha512": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", + "type": "package", + "path": "humanizer.core.sr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr.2.14.1.nupkg.sha512", + "humanizer.core.sr.nuspec", + "lib/net6.0/sr/Humanizer.resources.dll", + "lib/netstandard1.0/sr/Humanizer.resources.dll", + "lib/netstandard2.0/sr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "sha512": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", + "type": "package", + "path": "humanizer.core.sr-latn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "humanizer.core.sr-latn.nuspec", + "lib/net6.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard1.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard2.0/sr-Latn/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sv/2.14.1": { + "sha512": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", + "type": "package", + "path": "humanizer.core.sv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sv.2.14.1.nupkg.sha512", + "humanizer.core.sv.nuspec", + "lib/net6.0/sv/Humanizer.resources.dll", + "lib/netstandard1.0/sv/Humanizer.resources.dll", + "lib/netstandard2.0/sv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.th-TH/2.14.1": { + "sha512": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", + "type": "package", + "path": "humanizer.core.th-th/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.th-th.2.14.1.nupkg.sha512", + "humanizer.core.th-th.nuspec", + "lib/netstandard1.0/th-TH/Humanizer.resources.dll", + "lib/netstandard2.0/th-TH/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.tr/2.14.1": { + "sha512": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", + "type": "package", + "path": "humanizer.core.tr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.tr.2.14.1.nupkg.sha512", + "humanizer.core.tr.nuspec", + "lib/net6.0/tr/Humanizer.resources.dll", + "lib/netstandard1.0/tr/Humanizer.resources.dll", + "lib/netstandard2.0/tr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uk/2.14.1": { + "sha512": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", + "type": "package", + "path": "humanizer.core.uk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uk.2.14.1.nupkg.sha512", + "humanizer.core.uk.nuspec", + "lib/net6.0/uk/Humanizer.resources.dll", + "lib/netstandard1.0/uk/Humanizer.resources.dll", + "lib/netstandard2.0/uk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "sha512": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", + "type": "package", + "path": "humanizer.core.uz-cyrl-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-cyrl-uz.nuspec", + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "sha512": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", + "type": "package", + "path": "humanizer.core.uz-latn-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-latn-uz.nuspec", + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Latn-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.vi/2.14.1": { + "sha512": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", + "type": "package", + "path": "humanizer.core.vi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.vi.2.14.1.nupkg.sha512", + "humanizer.core.vi.nuspec", + "lib/net6.0/vi/Humanizer.resources.dll", + "lib/netstandard1.0/vi/Humanizer.resources.dll", + "lib/netstandard2.0/vi/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-CN/2.14.1": { + "sha512": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", + "type": "package", + "path": "humanizer.core.zh-cn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "humanizer.core.zh-cn.nuspec", + "lib/net6.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard1.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard2.0/zh-CN/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "sha512": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", + "type": "package", + "path": "humanizer.core.zh-hans/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "humanizer.core.zh-hans.nuspec", + "lib/net6.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hans/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "sha512": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", + "type": "package", + "path": "humanizer.core.zh-hant/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "humanizer.core.zh-hant.nuspec", + "lib/net6.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hant/Humanizer.resources.dll", + "logo.png" + ] + }, + "LigerShark.WebOptimizer.Core/3.0.426": { + "sha512": "Mc4FFKL40n2f4ognnwDrvFxLt+2CdsovhCobaS8u2HXriS2OP8uMDwDIwmE2irlAW+HhR04a+wF1XImtFPxxRg==", + "type": "package", + "path": "ligershark.weboptimizer.core/3.0.426", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "build/LigerShark.WebOptimizer.Core.props", + "build/LigerShark.WebOptimizer.Core.targets", + "lib/net6.0/WebOptimizer.Core.dll", + "lib/net6.0/WebOptimizer.Core.xml", + "lib/net8.0/WebOptimizer.Core.dll", + "lib/net8.0/WebOptimizer.Core.xml", + "ligershark.weboptimizer.core.3.0.426.nupkg.sha512", + "ligershark.weboptimizer.core.nuspec", + "logo.png" + ] + }, + "linq2db/5.4.1": { + "sha512": "qyH32MbFK6T55KsEcQYTbPFfkOa1Mo65lY/Zo8SFVMy0pwkQBCTnA/RUxyG5+l3D/mgfPz85PH3upDrtklSMrw==", + "type": "package", + "path": "linq2db/5.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MIT-LICENSE.txt", + "README.md", + "images/icon.png", + "lib/net45/linq2db.dll", + "lib/net45/linq2db.xml", + "lib/net46/linq2db.dll", + "lib/net46/linq2db.xml", + "lib/net472/linq2db.dll", + "lib/net472/linq2db.xml", + "lib/net6.0/linq2db.dll", + "lib/net6.0/linq2db.xml", + "lib/netcoreapp3.1/linq2db.dll", + "lib/netcoreapp3.1/linq2db.xml", + "lib/netstandard2.0/linq2db.dll", + "lib/netstandard2.0/linq2db.xml", + "lib/netstandard2.1/linq2db.dll", + "lib/netstandard2.1/linq2db.xml", + "linq2db.5.4.1.nupkg.sha512", + "linq2db.nuspec" + ] + }, + "MailKit/4.8.0": { + "sha512": "zZ1UoM4FUnSFUJ9fTl5CEEaejR0DNP6+FDt1OfXnjg4igZntcir1tg/8Ufd6WY5vrpmvToAjluYqjVM24A+5lA==", + "type": "package", + "path": "mailkit/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/ExchangeOAuth2.md", + "docs/FAQ.md", + "docs/GMailOAuth2.md", + "docs/README.md", + "icons/mailkit-50.png", + "lib/net462/MailKit.dll", + "lib/net462/MailKit.dll.config", + "lib/net462/MailKit.pdb", + "lib/net462/MailKit.xml", + "lib/net47/MailKit.dll", + "lib/net47/MailKit.dll.config", + "lib/net47/MailKit.pdb", + "lib/net47/MailKit.xml", + "lib/net48/MailKit.dll", + "lib/net48/MailKit.dll.config", + "lib/net48/MailKit.pdb", + "lib/net48/MailKit.xml", + "lib/net6.0/MailKit.dll", + "lib/net6.0/MailKit.dll.config", + "lib/net6.0/MailKit.pdb", + "lib/net6.0/MailKit.xml", + "lib/net8.0/MailKit.dll", + "lib/net8.0/MailKit.dll.config", + "lib/net8.0/MailKit.pdb", + "lib/net8.0/MailKit.xml", + "lib/netstandard2.0/MailKit.dll", + "lib/netstandard2.0/MailKit.dll.config", + "lib/netstandard2.0/MailKit.pdb", + "lib/netstandard2.0/MailKit.xml", + "lib/netstandard2.1/MailKit.dll", + "lib/netstandard2.1/MailKit.dll.config", + "lib/netstandard2.1/MailKit.pdb", + "lib/netstandard2.1/MailKit.xml", + "mailkit.4.8.0.nupkg.sha512", + "mailkit.nuspec" + ] + }, + "MaxMind.Db/4.1.0": { + "sha512": "lEjCFX0TUQCRmFS8xrXIQSi+4omJ1Fwy0gAHlbnjg8cgSBa0cllP5zOEftQ23EP247EbnF7mNCQ3JsG/bMkHAA==", + "type": "package", + "path": "maxmind.db/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MaxMind-logo.png", + "README.md", + "lib/net6.0/MaxMind.Db.dll", + "lib/net6.0/MaxMind.Db.xml", + "lib/net7.0/MaxMind.Db.dll", + "lib/net7.0/MaxMind.Db.xml", + "lib/net8.0/MaxMind.Db.dll", + "lib/net8.0/MaxMind.Db.xml", + "lib/netstandard2.0/MaxMind.Db.dll", + "lib/netstandard2.0/MaxMind.Db.xml", + "lib/netstandard2.1/MaxMind.Db.dll", + "lib/netstandard2.1/MaxMind.Db.xml", + "maxmind.db.4.1.0.nupkg.sha512", + "maxmind.db.nuspec" + ] + }, + "MaxMind.GeoIP2/5.2.0": { + "sha512": "E8i6yQPlAznLTfS8w208uY3oqCg6i7sQ9cxKmlDdhFMXVLfm4sKphOTMsIWdAHJCV7RxW2a3DlqxAPkQrqmqlA==", + "type": "package", + "path": "maxmind.geoip2/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MaxMind-logo.png", + "README.md", + "lib/net6.0/MaxMind.GeoIP2.dll", + "lib/net6.0/MaxMind.GeoIP2.xml", + "lib/net7.0/MaxMind.GeoIP2.dll", + "lib/net7.0/MaxMind.GeoIP2.xml", + "lib/net8.0/MaxMind.GeoIP2.dll", + "lib/net8.0/MaxMind.GeoIP2.xml", + "lib/netstandard2.0/MaxMind.GeoIP2.dll", + "lib/netstandard2.0/MaxMind.GeoIP2.xml", + "lib/netstandard2.1/MaxMind.GeoIP2.dll", + "lib/netstandard2.1/MaxMind.GeoIP2.xml", + "maxmind.geoip2.5.2.0.nupkg.sha512", + "maxmind.geoip2.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.32": { + "sha512": "tULjwFie6fYm4o6WfD+aHTTrps2I22MQVZpmEWaJumFmzZWA1nHsKezuCBl/u/iKiXtN3npL6MoINaiLHURr/A==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection/3.1.32": { + "sha512": "D46awzK+Q0jP7Bq0cQlsxQrhg7MBhlxG2z+U+9EzcbjcjaDzQvaD5/cxD+qKdu9bHMcSFf9fMr5wizSBPPai1Q==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml", + "microsoft.aspnetcore.dataprotection.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.32": { + "sha512": "MPL4iVyiaRxnOUY5VATHjvhDWaAEFb77KFiUxVRklv3Z3v+STofUr1UG/aCt1O9cgN7FVTDaC5A7U+zsLub8Xg==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "microsoft.aspnetcore.dataprotection.abstractions.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.JsonPatch/8.0.10": { + "sha512": "pLEDpobrApzc+9IgnlwMfWHfVaOWdNlBFgfggxFgMw57sn/iTkPMwc8eaufcKcLyCCNZQ1r6GRLsIIzUMtH8eg==", + "type": "package", + "path": "microsoft.aspnetcore.jsonpatch/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net462/Microsoft.AspNetCore.JsonPatch.xml", + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", + "microsoft.aspnetcore.jsonpatch.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.jsonpatch.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.10": { + "sha512": "2DIFj+w15yFIQbh4AgQQC8m0UJfhiF20s3h/DlTyiPGgNfijZ9TxqauYqaj81hF5Pc9wUg9agvxlH+4eUFjoRg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml", + "microsoft.aspnetcore.mvc.newtonsoftjson.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": { + "sha512": "M0h+ChPgydX2xY17agiphnAVa/Qh05RAP8eeuqGGhQKT10claRBlLNO6d2/oSV8zy0RLHzwLnNZm5xuC/gckGA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", + "microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/8.0.10": { + "sha512": "FM83yTM+cyfHWMAyh86KXh7ZGrwOQLyGDG6LB3erO8kxwmdMN5zBkYxJmIfXhjRL07+q1mpO7gqUkBvyGy6NfQ==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "build/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Language/6.0.0": { + "sha512": "yCtBr1GSGzJrrp1NJUb4ltwFYMKHw/tJLnIDvg9g/FnkGIEzmE19tbCQqXARIJv5kdtBgsoVIdGLL+zmjxvM/A==", + "type": "package", + "path": "microsoft.aspnetcore.razor.language/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", + "microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512", + "microsoft.aspnetcore.razor.language.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.rtf", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "build/Microsoft.CodeAnalysis.Analyzers.targets", + "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_Default.editorconfig", + "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_Default.editorconfig", + "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_Default.editorconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "sha512": "d02ybMhUJl1r/dI6SkJPHrTiTzXBYCZeJdOLMckV+jyoMU/GGkjqFX/sRbv1K0QmlpwwKuLTiYVQvfYC+8ox2g==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.4.0.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "sha512": "2UVTGtyQGgTCazvnT6t82f+7AV2L+kqJdyb61rT9GQed4yK+tVh5IkaKcsm70VqyZQhBbDqsfZFNHnY65xhrRw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Razor/6.0.0": { + "sha512": "uqdzuQXxD7XrJCbIbbwpI/LOv0PBJ9VIR0gdvANTHOfK5pjTaCir+XcwvYvBZ5BIzd0KGzyiamzlEWw1cK1q0w==", + "type": "package", + "path": "microsoft.codeanalysis.razor/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", + "microsoft.codeanalysis.razor.6.0.0.nupkg.sha512", + "microsoft.codeanalysis.razor.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/5.2.0": { + "sha512": "3alfyqRN3ELRtdvU1dGtLBRNQqprr3TJ0WrUJfMISPwg1nPUN2P3Lelah68IKWuV27Ceb7ig95hWNHFTSXfxMg==", + "type": "package", + "path": "microsoft.data.sqlclient/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net462/Microsoft.Data.SqlClient.dll", + "lib/net462/Microsoft.Data.SqlClient.xml", + "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/Microsoft.Data.SqlClient.dll", + "lib/net6.0/Microsoft.Data.SqlClient.xml", + "lib/net6.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/Microsoft.Data.SqlClient.dll", + "lib/net8.0/Microsoft.Data.SqlClient.xml", + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "microsoft.data.sqlclient.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net462/Microsoft.Data.SqlClient.dll", + "ref/net462/Microsoft.Data.SqlClient.xml", + "ref/net6.0/Microsoft.Data.SqlClient.dll", + "ref/net6.0/Microsoft.Data.SqlClient.xml", + "ref/net8.0/Microsoft.Data.SqlClient.dll", + "ref/net8.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "sha512": "po1jhvFd+8pbfvJR/puh+fkHi0GRanAdvayh/0e47yaM6CXWZ6opUjCMFuYlAnD2LcbyvQE7fPJKvogmaUcN+w==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.SqlServer/8.0.10": { + "sha512": "Cz0qWHBA4UsM46BI/nehilD8dyglAYZ59gBkbgUzOnq9y4g52jb5R6wu7lKOyOi/pJx/VSt/Tt5LAbtxa27ZJw==", + "type": "package", + "path": "microsoft.extensions.caching.sqlserver/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/net462/Microsoft.Extensions.Caching.SqlServer.xml", + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.xml", + "microsoft.extensions.caching.sqlserver.8.0.10.nupkg.sha512", + "microsoft.extensions.caching.sqlserver.nuspec" + ] + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/8.0.10": { + "sha512": "60BGmEIij4UjMf6iG9hUQy6+aZC5X4UVNpJ0O/TU2Dt3z/XnNuC/vgjtpbfrhYdkeVegqFwGIHnWk/kEI4eddA==", + "type": "package", + "path": "microsoft.extensions.caching.stackexchangeredis/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net462/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "microsoft.extensions.caching.stackexchangeredis.8.0.10.nupkg.sha512", + "microsoft.extensions.caching.stackexchangeredis.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "sha512": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.32": { + "sha512": "sS+U28IfgZSQUS2b3MayPdYGBJlHOWwgnfAZ77bZLkgU0z+lJz7lgzrKQUm9SgKF+OAc5B9kWJV5PB6l7mWWZA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.3.1.32.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.32": { + "sha512": "00J6eE920t5vfPnEHBSGyj1Ya9lG6WYsMwqvLZ0nMPPTD2UxkaL+FNJM5DNSnMFJtV84KkUudPRngmNiCkqhuA==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.3.1.32.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/6.0.16": { + "sha512": "OVX5tlKg6LY+XKqlUn7i9KY+6Liut0iewWff2DNr7129i/NJ8rpUzbmxavPydZgcLREEWHklXZiPKCS895tNIQ==", + "type": "package", + "path": "microsoft.extensions.objectpool/6.0.16", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.ObjectPool.dll", + "lib/net461/Microsoft.Extensions.ObjectPool.xml", + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net6.0/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.6.0.16.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/8.0.2": { + "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "type": "package", + "path": "microsoft.extensions.options/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.2.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.66.1": { + "sha512": "mE+m3pZ7zSKocSubKXxwZcUrCzLflC86IdLxrVjS8tialy0b1L+aECBqRBC/ykcPlB4y7skg49TaTiA+O2UfDw==", + "type": "package", + "path": "microsoft.identity.client/4.66.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.Identity.Client.dll", + "lib/net462/Microsoft.Identity.Client.xml", + "lib/net472/Microsoft.Identity.Client.dll", + "lib/net472/Microsoft.Identity.Client.xml", + "lib/net6.0-android31.0/Microsoft.Identity.Client.dll", + "lib/net6.0-android31.0/Microsoft.Identity.Client.xml", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml", + "lib/net6.0/Microsoft.Identity.Client.dll", + "lib/net6.0/Microsoft.Identity.Client.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.66.1.nupkg.sha512", + "microsoft.identity.client.nuspec" + ] + }, + "Microsoft.Identity.Client.Extensions.Msal/4.65.0": { + "sha512": "JIOBFMAyVSqGWP4dNoST+A9BRJMGC8m73BNbR1oKA8nUjGyR8Fd4eOOME/VDrd26I5JWU4RtmWqpt20lpp2r5w==", + "type": "package", + "path": "microsoft.identity.client.extensions.msal/4.65.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "microsoft.identity.client.extensions.msal.4.65.0.nupkg.sha512", + "microsoft.identity.client.extensions.msal.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", + "type": "package", + "path": "microsoft.netcore.platforms/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.SqlServer.Server/1.0.0": { + "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "type": "package", + "path": "microsoft.sqlserver.server/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.SqlServer.Server.dll", + "lib/net46/Microsoft.SqlServer.Server.pdb", + "lib/net46/Microsoft.SqlServer.Server.xml", + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", + "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", + "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", + "microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "microsoft.sqlserver.server.nuspec" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MimeKit/4.8.0": { + "sha512": "U24wp4LKED+sBRzyrWICE+3bSwptsTrPOcCIXbW5zfeThCNzQx5NCo8Wus+Rmi+EUkQrCwlI/3sVfejeq9tuxQ==", + "type": "package", + "path": "mimekit/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/FAQ.md", + "docs/README.md", + "icons/mimekit-50.png", + "lib/net462/MimeKit.dll", + "lib/net462/MimeKit.dll.config", + "lib/net462/MimeKit.pdb", + "lib/net462/MimeKit.xml", + "lib/net47/MimeKit.dll", + "lib/net47/MimeKit.dll.config", + "lib/net47/MimeKit.pdb", + "lib/net47/MimeKit.xml", + "lib/net48/MimeKit.dll", + "lib/net48/MimeKit.dll.config", + "lib/net48/MimeKit.pdb", + "lib/net48/MimeKit.xml", + "lib/net6.0/MimeKit.dll", + "lib/net6.0/MimeKit.dll.config", + "lib/net6.0/MimeKit.pdb", + "lib/net6.0/MimeKit.xml", + "lib/net8.0/MimeKit.dll", + "lib/net8.0/MimeKit.dll.config", + "lib/net8.0/MimeKit.pdb", + "lib/net8.0/MimeKit.xml", + "lib/netstandard2.0/MimeKit.dll", + "lib/netstandard2.0/MimeKit.dll.config", + "lib/netstandard2.0/MimeKit.pdb", + "lib/netstandard2.0/MimeKit.xml", + "lib/netstandard2.1/MimeKit.dll", + "lib/netstandard2.1/MimeKit.dll.config", + "lib/netstandard2.1/MimeKit.pdb", + "lib/netstandard2.1/MimeKit.xml", + "mimekit.4.8.0.nupkg.sha512", + "mimekit.nuspec" + ] + }, + "MySqlConnector/2.3.7": { + "sha512": "YiVOxvJ+vAYW8NT9gHv8RxKCDFCSXAObF3z0Ou/8WRv8Lsn2QsxaPW5xEwPE+xCcAq6BGkrI8GTOC09Xg09blQ==", + "type": "package", + "path": "mysqlconnector/2.3.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/MySqlConnector.dll", + "lib/net462/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net48/MySqlConnector.dll", + "lib/net48/MySqlConnector.xml", + "lib/net6.0/MySqlConnector.dll", + "lib/net6.0/MySqlConnector.xml", + "lib/net7.0/MySqlConnector.dll", + "lib/net7.0/MySqlConnector.xml", + "lib/net8.0/MySqlConnector.dll", + "lib/net8.0/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.2.3.7.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Newtonsoft.Json.Bson/1.0.2": { + "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.pdb", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", + "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", + "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.2.nupkg.sha512", + "newtonsoft.json.bson.nuspec" + ] + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "sha512": "QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==", + "type": "package", + "path": "nito.asyncex.coordination/5.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.AsyncEx.Coordination.dll", + "lib/net461/Nito.AsyncEx.Coordination.xml", + "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll", + "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml", + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll", + "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml", + "nito.asyncex.coordination.5.1.2.nupkg.sha512", + "nito.asyncex.coordination.nuspec" + ] + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "sha512": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==", + "type": "package", + "path": "nito.asyncex.tasks/5.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.AsyncEx.Tasks.dll", + "lib/net461/Nito.AsyncEx.Tasks.xml", + "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll", + "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml", + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll", + "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml", + "nito.asyncex.tasks.5.1.2.nupkg.sha512", + "nito.asyncex.tasks.nuspec" + ] + }, + "Nito.Collections.Deque/1.1.1": { + "sha512": "CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==", + "type": "package", + "path": "nito.collections.deque/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.Collections.Deque.dll", + "lib/net461/Nito.Collections.Deque.xml", + "lib/netstandard1.0/Nito.Collections.Deque.dll", + "lib/netstandard1.0/Nito.Collections.Deque.xml", + "lib/netstandard2.0/Nito.Collections.Deque.dll", + "lib/netstandard2.0/Nito.Collections.Deque.xml", + "nito.collections.deque.1.1.1.nupkg.sha512", + "nito.collections.deque.nuspec" + ] + }, + "Nito.Disposables/2.2.1": { + "sha512": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==", + "type": "package", + "path": "nito.disposables/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.Disposables.dll", + "lib/net461/Nito.Disposables.xml", + "lib/netstandard1.0/Nito.Disposables.dll", + "lib/netstandard1.0/Nito.Disposables.xml", + "lib/netstandard2.0/Nito.Disposables.dll", + "lib/netstandard2.0/Nito.Disposables.xml", + "lib/netstandard2.1/Nito.Disposables.dll", + "lib/netstandard2.1/Nito.Disposables.xml", + "nito.disposables.2.2.1.nupkg.sha512", + "nito.disposables.nuspec" + ] + }, + "Npgsql/8.0.5": { + "sha512": "zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==", + "type": "package", + "path": "npgsql/8.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net7.0/Npgsql.dll", + "lib/net7.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.8.0.5.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "NUglify/1.21.9": { + "sha512": "ULyI/scrIRAo2In6cnaCc/QkWUt+wB6pBVt5lrVddOKyamsCAm1XgArkk4px9tVn6SipjhbTt4M38QPlpoET+g==", + "type": "package", + "path": "nuglify/1.21.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/NUglify.dll", + "lib/net35/NUglify.xml", + "lib/net40/NUglify.dll", + "lib/net40/NUglify.xml", + "lib/net5.0/NUglify.dll", + "lib/net5.0/NUglify.xml", + "lib/netstandard1.3/NUglify.dll", + "lib/netstandard1.3/NUglify.xml", + "lib/netstandard2.0/NUglify.dll", + "lib/netstandard2.0/NUglify.xml", + "nuglify.1.21.9.nupkg.sha512", + "nuglify.nuspec", + "nuglify.png" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", + "type": "package", + "path": "pipelines.sockets.unofficial/2.2.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Pipelines.Sockets.Unofficial.dll", + "lib/net461/Pipelines.Sockets.Unofficial.xml", + "lib/net472/Pipelines.Sockets.Unofficial.dll", + "lib/net472/Pipelines.Sockets.Unofficial.xml", + "lib/net5.0/Pipelines.Sockets.Unofficial.dll", + "lib/net5.0/Pipelines.Sockets.Unofficial.xml", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", + "pipelines.sockets.unofficial.2.2.8.nupkg.sha512", + "pipelines.sockets.unofficial.nuspec" + ] + }, + "QuestPDF/2024.10.1": { + "sha512": "pjPmQ/K5yI9EDuLceHa+HTPYMLAN0Lgpfmhsf4SxNhkU/nJ3Qc9k2d9wSg+1DNrub6hh2uJZx5xOk2jN6CNlew==", + "type": "package", + "path": "questpdf/2024.10.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Contributors.md", + "Description.md", + "Documentation.xml", + "ExternalDependencyLicenses/emsdk.txt", + "ExternalDependencyLicenses/expat.txt", + "ExternalDependencyLicenses/harfbuzz.txt", + "ExternalDependencyLicenses/icu.txt", + "ExternalDependencyLicenses/libjpeg-turbo.txt", + "ExternalDependencyLicenses/libpng.txt", + "ExternalDependencyLicenses/libwebp.txt", + "ExternalDependencyLicenses/ninja-build.txt", + "ExternalDependencyLicenses/readme.txt", + "ExternalDependencyLicenses/skia.txt", + "ExternalDependencyLicenses/wuffs.txt", + "ExternalDependencyLicenses/zlib.txt", + "LatoFont/Lato-Black.ttf", + "LatoFont/Lato-BlackItalic.ttf", + "LatoFont/Lato-Bold.ttf", + "LatoFont/Lato-BoldItalic.ttf", + "LatoFont/Lato-ExtraBold.ttf", + "LatoFont/Lato-ExtraBoldItalic.ttf", + "LatoFont/Lato-ExtraLight.ttf", + "LatoFont/Lato-ExtraLightItalic.ttf", + "LatoFont/Lato-Italic.ttf", + "LatoFont/Lato-Light.ttf", + "LatoFont/Lato-LightItalic.ttf", + "LatoFont/Lato-Medium.ttf", + "LatoFont/Lato-MediumItalic.ttf", + "LatoFont/Lato-Regular.ttf", + "LatoFont/Lato-SemiBold.ttf", + "LatoFont/Lato-SemiBoldItalic.ttf", + "LatoFont/Lato-Thin.ttf", + "LatoFont/Lato-ThinItalic.ttf", + "LatoFont/OFL.txt", + "Logo.png", + "PackageLicense.md", + "PackageReadme.md", + "ReleaseNotes.txt", + "build/QuestPDF.targets", + "build/net4/QuestPDF.targets", + "buildTransitive/QuestPDF.targets", + "buildTransitive/net4/QuestPDF.targets", + "lib/net6.0/QuestPDF.dll", + "lib/net6.0/QuestPDF.xml", + "lib/net8.0/QuestPDF.dll", + "lib/net8.0/QuestPDF.xml", + "lib/netstandard2.0/QuestPDF.dll", + "lib/netstandard2.0/QuestPDF.xml", + "questpdf.2024.10.1.nupkg.sha512", + "questpdf.nuspec", + "runtimes/linux-arm64/native/libQuestPdfSkia.so", + "runtimes/linux-musl-x64/native/libQuestPdfSkia.so", + "runtimes/linux-x64/native/libQuestPdfSkia.so", + "runtimes/osx-arm64/native/libQuestPdfSkia.dylib", + "runtimes/osx-x64/native/libQuestPdfSkia.dylib", + "runtimes/win-x64/native/QuestPdfSkia.dll", + "runtimes/win-x86/native/QuestPdfSkia.dll" + ] + }, + "RBush/3.2.0": { + "sha512": "ijGh9N0zZ7JfXk3oQkWCwK8SwSSByexbyh/MjbCjNxOft9eG5ZqKC1vdgiYq78h4IZRFmN4s3JZ/b10Jipud5w==", + "type": "package", + "path": "rbush/3.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/RBush.dll", + "lib/net6.0/RBush.xml", + "lib/netcoreapp3.1/RBush.dll", + "lib/netcoreapp3.1/RBush.xml", + "lib/netstandard1.2/RBush.dll", + "lib/netstandard1.2/RBush.xml", + "rbush.3.2.0.nupkg.sha512", + "rbush.nuspec", + "readme.md" + ] + }, + "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" + ] + }, + "ShimSkiaSharp/2.0.0.1": { + "sha512": "UcUtnhIlriwCmgThNdCjNqfjX1JCMxrx3xzYrcXovMVoxMWi8ulQAwa21vz2NiyaXkHfu4fYcNH2aeLVYxHq9Q==", + "type": "package", + "path": "shimskiasharp/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/ShimSkiaSharp.dll", + "lib/net6.0/ShimSkiaSharp.dll", + "lib/net8.0/ShimSkiaSharp.dll", + "lib/netstandard2.0/ShimSkiaSharp.dll", + "shimskiasharp.2.0.0.1.nupkg.sha512", + "shimskiasharp.nuspec" + ] + }, + "SixLabors.Fonts/1.0.0": { + "sha512": "LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==", + "type": "package", + "path": "sixlabors.fonts/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/SixLabors.Fonts.dll", + "lib/netcoreapp3.1/SixLabors.Fonts.xml", + "lib/netstandard2.0/SixLabors.Fonts.dll", + "lib/netstandard2.0/SixLabors.Fonts.xml", + "lib/netstandard2.1/SixLabors.Fonts.dll", + "lib/netstandard2.1/SixLabors.Fonts.xml", + "sixlabors.fonts.1.0.0.nupkg.sha512", + "sixlabors.fonts.128.png", + "sixlabors.fonts.nuspec" + ] + }, + "SkiaSharp/2.88.8": { + "sha512": "bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==", + "type": "package", + "path": "skiasharp/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll", + "lib/monoandroid1.0/SkiaSharp.dll", + "lib/monoandroid1.0/SkiaSharp.pdb", + "lib/monoandroid1.0/SkiaSharp.xml", + "lib/net462/SkiaSharp.dll", + "lib/net462/SkiaSharp.pdb", + "lib/net462/SkiaSharp.xml", + "lib/net6.0-android30.0/SkiaSharp.dll", + "lib/net6.0-android30.0/SkiaSharp.pdb", + "lib/net6.0-android30.0/SkiaSharp.xml", + "lib/net6.0-ios13.6/SkiaSharp.dll", + "lib/net6.0-ios13.6/SkiaSharp.pdb", + "lib/net6.0-ios13.6/SkiaSharp.xml", + "lib/net6.0-maccatalyst13.5/SkiaSharp.dll", + "lib/net6.0-maccatalyst13.5/SkiaSharp.pdb", + "lib/net6.0-maccatalyst13.5/SkiaSharp.xml", + "lib/net6.0-macos10.15/SkiaSharp.dll", + "lib/net6.0-macos10.15/SkiaSharp.pdb", + "lib/net6.0-macos10.15/SkiaSharp.xml", + "lib/net6.0-tizen7.0/SkiaSharp.dll", + "lib/net6.0-tizen7.0/SkiaSharp.pdb", + "lib/net6.0-tizen7.0/SkiaSharp.xml", + "lib/net6.0-tvos13.4/SkiaSharp.dll", + "lib/net6.0-tvos13.4/SkiaSharp.pdb", + "lib/net6.0-tvos13.4/SkiaSharp.xml", + "lib/net6.0/SkiaSharp.dll", + "lib/net6.0/SkiaSharp.pdb", + "lib/net6.0/SkiaSharp.xml", + "lib/netcoreapp3.1/SkiaSharp.dll", + "lib/netcoreapp3.1/SkiaSharp.pdb", + "lib/netcoreapp3.1/SkiaSharp.xml", + "lib/netstandard1.3/SkiaSharp.dll", + "lib/netstandard1.3/SkiaSharp.pdb", + "lib/netstandard1.3/SkiaSharp.xml", + "lib/netstandard2.0/SkiaSharp.dll", + "lib/netstandard2.0/SkiaSharp.pdb", + "lib/netstandard2.0/SkiaSharp.xml", + "lib/netstandard2.1/SkiaSharp.dll", + "lib/netstandard2.1/SkiaSharp.pdb", + "lib/netstandard2.1/SkiaSharp.xml", + "lib/tizen40/SkiaSharp.dll", + "lib/tizen40/SkiaSharp.pdb", + "lib/tizen40/SkiaSharp.xml", + "lib/uap10.0.10240/SkiaSharp.dll", + "lib/uap10.0.10240/SkiaSharp.pdb", + "lib/uap10.0.10240/SkiaSharp.xml", + "lib/uap10.0.16299/SkiaSharp.dll", + "lib/uap10.0.16299/SkiaSharp.pdb", + "lib/uap10.0.16299/SkiaSharp.xml", + "lib/xamarinios1.0/SkiaSharp.dll", + "lib/xamarinios1.0/SkiaSharp.pdb", + "lib/xamarinios1.0/SkiaSharp.xml", + "lib/xamarinmac2.0/SkiaSharp.dll", + "lib/xamarinmac2.0/SkiaSharp.pdb", + "lib/xamarinmac2.0/SkiaSharp.xml", + "lib/xamarintvos1.0/SkiaSharp.dll", + "lib/xamarintvos1.0/SkiaSharp.pdb", + "lib/xamarintvos1.0/SkiaSharp.xml", + "lib/xamarinwatchos1.0/SkiaSharp.dll", + "lib/xamarinwatchos1.0/SkiaSharp.pdb", + "lib/xamarinwatchos1.0/SkiaSharp.xml", + "skiasharp.2.88.8.nupkg.sha512", + "skiasharp.nuspec" + ] + }, + "SkiaSharp.HarfBuzz/2.88.8": { + "sha512": "ajSyJ2D17R0kZ4FwKwFrJTsYs3D3Y9iRBLhNecROR7dOxC6VTFaMPXJuwQB8KYpAqgmb2JAJFEgZ3i8MaaIw1g==", + "type": "package", + "path": "skiasharp.harfbuzz/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net462/SkiaSharp.HarfBuzz.dll", + "lib/net462/SkiaSharp.HarfBuzz.pdb", + "lib/net462/SkiaSharp.HarfBuzz.xml", + "lib/net6.0/SkiaSharp.HarfBuzz.dll", + "lib/net6.0/SkiaSharp.HarfBuzz.pdb", + "lib/net6.0/SkiaSharp.HarfBuzz.xml", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.dll", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.pdb", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.xml", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.dll", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.xml", + "skiasharp.harfbuzz.2.88.8.nupkg.sha512", + "skiasharp.harfbuzz.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.8": { + "sha512": "/DoKtdyvRgCC5GR/SH+ps3ZiOjmf0BYpAyrhWQELFOO1hdcqddrDVJjDNCOJ41vV+NlS5b3kcDoZZ7jLhFjyXg==", + "type": "package", + "path": "skiasharp.nativeassets.linux.nodependencies/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Linux.NoDependencies.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Linux.NoDependencies.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libSkiaSharp.so", + "runtimes/linux-arm64/native/libSkiaSharp.so", + "runtimes/linux-musl-x64/native/libSkiaSharp.so", + "runtimes/linux-x64/native/libSkiaSharp.so", + "skiasharp.nativeassets.linux.nodependencies.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.linux.nodependencies.nuspec" + ] + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "sha512": "6Kn5TSkKlfyS6azWHF3Jk2sW5C4jCE5uSshM/5AbfFrR+5n6qM5XEnz9h4VaVl7LTxBvHvMkuPb/3bpbq0vxTw==", + "type": "package", + "path": "skiasharp.nativeassets.macos/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libSkiaSharp.dylib", + "skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.macos.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "sha512": "O9QXoWEXA+6cweR4h3BOnwMz+pO9vL9mXdjLrpDd0w1QzCgWmLQBxa1VgySDITiH7nQndrDG1h6937zm9pLj1Q==", + "type": "package", + "path": "skiasharp.nativeassets.win32/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libSkiaSharp.dll", + "runtimes/win-x64/native/libSkiaSharp.dll", + "runtimes/win-x86/native/libSkiaSharp.dll", + "skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.win32.nuspec" + ] + }, + "StackExchange.Redis/2.7.27": { + "sha512": "Uqc2OQHglqj9/FfGQ6RkKFkZfHySfZlfmbCl+hc+u2I/IqunfelQ7QJi7ZhvAJxUtu80pildVX6NPLdDaUffOw==", + "type": "package", + "path": "stackexchange.redis/2.7.27", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/StackExchange.Redis.dll", + "lib/net461/StackExchange.Redis.xml", + "lib/net472/StackExchange.Redis.dll", + "lib/net472/StackExchange.Redis.xml", + "lib/net6.0/StackExchange.Redis.dll", + "lib/net6.0/StackExchange.Redis.xml", + "lib/netcoreapp3.1/StackExchange.Redis.dll", + "lib/netcoreapp3.1/StackExchange.Redis.xml", + "lib/netstandard2.0/StackExchange.Redis.dll", + "lib/netstandard2.0/StackExchange.Redis.xml", + "stackexchange.redis.2.7.27.nupkg.sha512", + "stackexchange.redis.nuspec" + ] + }, + "Svg.Custom/2.0.0.1": { + "sha512": "RDQkecvotRs6Cadg0d8IxoXMSkYzVhrYkBWOlS0cW/Krm7Fzr+/LbXdUuXYRnKDoRoSRzzP9GAKmv5Z9oZTM1w==", + "type": "package", + "path": "svg.custom/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Svg.Custom.dll", + "lib/net8.0/Svg.Custom.dll", + "lib/netstandard2.0/Svg.Custom.dll", + "svg.custom.2.0.0.1.nupkg.sha512", + "svg.custom.nuspec" + ] + }, + "Svg.Model/2.0.0.1": { + "sha512": "lHAW6yYC62oKAXmTol2f0Ke6je5VkGTilSvnk4ynZ8577o7/eCnvZyPJcoFPryOX+s+6aAUA1rbbcK1JfsQzEA==", + "type": "package", + "path": "svg.model/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Model.dll", + "lib/net6.0/Svg.Model.dll", + "lib/net8.0/Svg.Model.dll", + "lib/netstandard2.0/Svg.Model.dll", + "svg.model.2.0.0.1.nupkg.sha512", + "svg.model.nuspec" + ] + }, + "Svg.Skia/2.0.0.1": { + "sha512": "yn1+xr8sXV88qdAQbv+O+9Sf8Ymp0SFxDNGvyNWEr8OdyEtBndnzPPW5uHLIxzmsH4JFHaTOpL+wDF8Vj05iFQ==", + "type": "package", + "path": "svg.skia/2.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Skia.dll", + "lib/net6.0/Svg.Skia.dll", + "lib/net8.0/Svg.Skia.dll", + "lib/netstandard2.0/Svg.Skia.dll", + "svg.skia.2.0.0.1.nupkg.sha512", + "svg.skia.nuspec" + ] + }, + "System.ClientModel/1.1.0": { + "sha512": "UocOlCkxLZrG2CKMAAImPcldJTxeesHnHGHwhJ0pNlZEvEXcWKuQvVOER2/NiOkJGRJk978SNdw3j6/7O9H1lg==", + "type": "package", + "path": "system.clientmodel/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net6.0/System.ClientModel.dll", + "lib/net6.0/System.ClientModel.xml", + "lib/netstandard2.0/System.ClientModel.dll", + "lib/netstandard2.0/System.ClientModel.xml", + "system.clientmodel.1.1.0.nupkg.sha512", + "system.clientmodel.nuspec" + ] + }, + "System.CodeDom/7.0.0": { + "sha512": "GLltyqEsE5/3IE+zYRP5sNa1l44qKl9v+bfdMcwg+M9qnQf47wK3H0SUR/T+3N4JEQXF3vV4CSuuo0rsg+nq2A==", + "type": "package", + "path": "system.codedom/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.CodeDom.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "lib/net462/System.CodeDom.dll", + "lib/net462/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/net7.0/System.CodeDom.dll", + "lib/net7.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.7.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/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.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/8.0.1": { + "sha512": "gPYFPDyohW2gXNhdQRSjtmeS6FymL2crg4Sral1wtvEJ7DUqFCDWDVbbLobASbzxfic8U1hQEdC7hmg9LHncMw==", + "type": "package", + "path": "system.configuration.configurationmanager/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/net7.0/System.Configuration.ConfigurationManager.dll", + "lib/net7.0/System.Configuration.ConfigurationManager.xml", + "lib/net8.0/System.Configuration.ConfigurationManager.dll", + "lib/net8.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.8.0.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.1": { + "sha512": "vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/8.0.1": { + "sha512": "n1ZP7NM2Gkn/MgD8+eOT5MulMj6wfeQMNS2Pizvq5GHCZfjlFMXV2irQlQmJhwA2VABC57M0auudO89Iu2uRLg==", + "type": "package", + "path": "system.diagnostics.eventlog/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/net7.0/System.Diagnostics.EventLog.dll", + "lib/net7.0/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.8.0.1.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.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.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Formats.Asn1/8.0.1": { + "sha512": "XqKba7Mm/koKSjKMfW82olQdmfbI5yqeoLV/tidRp7fbh5rmHAQ5raDI/7SU0swTzv+jgqtUGkzmFxuUg0it1A==", + "type": "package", + "path": "system.formats.asn1/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Formats.Asn1.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "lib/net462/System.Formats.Asn1.dll", + "lib/net462/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/net7.0/System.Formats.Asn1.dll", + "lib/net7.0/System.Formats.Asn1.xml", + "lib/net8.0/System.Formats.Asn1.dll", + "lib/net8.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.8.0.1.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "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.IdentityModel.Tokens.Jwt/6.35.0": { + "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.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.IO.FileSystem.AccessControl/5.0.0": { + "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Hashing/6.0.0": { + "sha512": "Rfm2jYCaUeGysFEZjDe7j1R4x6Z6BzumS/vUT5a1AA/AWJuGX71PoGB0RmpyX3VmrGqVnAwtfMn39OHR8Y/5+g==", + "type": "package", + "path": "system.io.hashing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Hashing.dll", + "lib/net461/System.IO.Hashing.xml", + "lib/net6.0/System.IO.Hashing.dll", + "lib/net6.0/System.IO.Hashing.xml", + "lib/netstandard2.0/System.IO.Hashing.dll", + "lib/netstandard2.0/System.IO.Hashing.xml", + "system.io.hashing.6.0.0.nupkg.sha512", + "system.io.hashing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Packaging/8.0.0": { + "sha512": "8g1V4YRpdGAxFcK8v9OjuMdIOJSpF30Zb1JGicwVZhly3I994WFyBdV6mQEo8d3T+URQe55/M0U0eIH0Hts1bg==", + "type": "package", + "path": "system.io.packaging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Packaging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Packaging.targets", + "lib/net462/System.IO.Packaging.dll", + "lib/net462/System.IO.Packaging.xml", + "lib/net6.0/System.IO.Packaging.dll", + "lib/net6.0/System.IO.Packaging.xml", + "lib/net7.0/System.IO.Packaging.dll", + "lib/net7.0/System.IO.Packaging.xml", + "lib/net8.0/System.IO.Packaging.dll", + "lib/net8.0/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.8.0.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/5.0.1": { + "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==", + "type": "package", + "path": "system.io.pipelines/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/netcoreapp3.0/System.IO.Pipelines.dll", + "lib/netcoreapp3.0/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netcoreapp2.0/System.IO.Pipelines.dll", + "ref/netcoreapp2.0/System.IO.Pipelines.xml", + "system.io.pipelines.5.0.1.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq.Async/6.0.1": { + "sha512": "0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==", + "type": "package", + "path": "system.linq.async/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Logo.png", + "lib/net48/System.Linq.Async.dll", + "lib/net48/System.Linq.Async.xml", + "lib/net6.0/System.Linq.Async.dll", + "lib/net6.0/System.Linq.Async.xml", + "lib/netstandard2.0/System.Linq.Async.dll", + "lib/netstandard2.0/System.Linq.Async.xml", + "lib/netstandard2.1/System.Linq.Async.dll", + "lib/netstandard2.1/System.Linq.Async.xml", + "ref/net48/System.Linq.Async.dll", + "ref/net48/System.Linq.Async.xml", + "ref/net6.0/System.Linq.Async.dll", + "ref/net6.0/System.Linq.Async.xml", + "ref/netstandard2.0/System.Linq.Async.dll", + "ref/netstandard2.0/System.Linq.Async.xml", + "ref/netstandard2.1/System.Linq.Async.dll", + "ref/netstandard2.1/System.Linq.Async.xml", + "system.linq.async.6.0.1.nupkg.sha512", + "system.linq.async.nuspec" + ] + }, + "System.Linq.Dynamic.Core/1.4.6": { + "sha512": "GZJ996kvIKH0nnKysDWy+le7k0Hoq1iSY7S5sNq6AF1bXPQGidaXjiOJNX4VCUuVWpbe28Ygb6mDSwgY+UhHLA==", + "type": "package", + "path": "system.linq.dynamic.core/1.4.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PackageReadme.md", + "lib/net35/System.Linq.Dynamic.Core.dll", + "lib/net35/System.Linq.Dynamic.Core.pdb", + "lib/net35/System.Linq.Dynamic.Core.xml", + "lib/net40/System.Linq.Dynamic.Core.dll", + "lib/net40/System.Linq.Dynamic.Core.pdb", + "lib/net40/System.Linq.Dynamic.Core.xml", + "lib/net45/System.Linq.Dynamic.Core.dll", + "lib/net45/System.Linq.Dynamic.Core.pdb", + "lib/net45/System.Linq.Dynamic.Core.xml", + "lib/net452/System.Linq.Dynamic.Core.dll", + "lib/net452/System.Linq.Dynamic.Core.pdb", + "lib/net452/System.Linq.Dynamic.Core.xml", + "lib/net46/System.Linq.Dynamic.Core.dll", + "lib/net46/System.Linq.Dynamic.Core.pdb", + "lib/net46/System.Linq.Dynamic.Core.xml", + "lib/net5.0/System.Linq.Dynamic.Core.dll", + "lib/net5.0/System.Linq.Dynamic.Core.pdb", + "lib/net5.0/System.Linq.Dynamic.Core.xml", + "lib/net6.0/System.Linq.Dynamic.Core.dll", + "lib/net6.0/System.Linq.Dynamic.Core.pdb", + "lib/net6.0/System.Linq.Dynamic.Core.xml", + "lib/net7.0/System.Linq.Dynamic.Core.dll", + "lib/net7.0/System.Linq.Dynamic.Core.pdb", + "lib/net7.0/System.Linq.Dynamic.Core.xml", + "lib/net8.0/System.Linq.Dynamic.Core.dll", + "lib/net8.0/System.Linq.Dynamic.Core.pdb", + "lib/net8.0/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.xml", + "lib/netstandard1.3/System.Linq.Dynamic.Core.dll", + "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb", + "lib/netstandard1.3/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.0/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.0/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.1/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.1/System.Linq.Dynamic.Core.xml", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml", + "logo.png", + "system.linq.dynamic.core.1.4.6.nupkg.sha512", + "system.linq.dynamic.core.nuspec" + ] + }, + "System.Management/7.0.2": { + "sha512": "/qEUN91mP/MUQmJnM5y5BdT7ZoPuVrtxnFlbJ8a3kBJGhe2wCzBfnPFtK2wTtEEcf3DMGR9J00GZZfg6HRI6yA==", + "type": "package", + "path": "system.management/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "lib/net462/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/net7.0/System.Management.dll", + "lib/net7.0/System.Management.xml", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/net7.0/System.Management.dll", + "runtimes/win/lib/net7.0/System.Management.xml", + "system.management.7.0.2.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory.Data/6.0.0": { + "sha512": "ntFHArH3I4Lpjf5m4DCXQHJuGwWPNVJPaAvM95Jy/u+2Yzt2ryiyIN04LAogkjP9DeRcEOiviAjQotfmPq/FrQ==", + "type": "package", + "path": "system.memory.data/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Memory.Data.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Memory.Data.dll", + "lib/net461/System.Memory.Data.xml", + "lib/net6.0/System.Memory.Data.dll", + "lib/net6.0/System.Memory.Data.xml", + "lib/netstandard2.0/System.Memory.Data.dll", + "lib/netstandard2.0/System.Memory.Data.xml", + "system.memory.data.6.0.0.nupkg.sha512", + "system.memory.data.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Net.NameResolution/4.3.0": { + "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "type": "package", + "path": "system.net.nameresolution/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.3.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.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.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.Metadata/5.0.0": { + "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "type": "package", + "path": "system.reflection.metadata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Reflection.Metadata.dll", + "lib/net461/System.Reflection.Metadata.xml", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.5.0.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "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.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/8.0.0": { + "sha512": "4TmlmvGp4kzZomm7J2HJn6IIx0UUrQyhBDyb5O1XiunZlQImXW+B8b7W/sTPcXhSf9rp5NR5aDtQllwbB5elOQ==", + "type": "package", + "path": "system.runtime.caching/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/net7.0/System.Runtime.Caching.dll", + "lib/net7.0/System.Runtime.Caching.xml", + "lib/net8.0/System.Runtime.Caching.dll", + "lib/net8.0/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net7.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net7.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net8.0/System.Runtime.Caching.xml", + "system.runtime.caching.8.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.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.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "sha512": "ULmp3xoOwNYjOYp4JZ2NK/6NdTgiN1GQXzVVN1njQ7LOZ0d0B9vyMnhyqbIi9Qw4JXj1JgCsitkTShboHRx7Eg==", + "type": "package", + "path": "system.security.cryptography.pkcs/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "lib/net462/System.Security.Cryptography.Pkcs.dll", + "lib/net462/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.8.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "type": "package", + "path": "system.security.cryptography.protecteddata/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Xml/6.0.1": { + "sha512": "5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==", + "type": "package", + "path": "system.security.cryptography.xml/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/net6.0/System.Security.Cryptography.Xml.dll", + "lib/net6.0/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.6.0.1.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Http/8.0.0": { + "sha512": "Qwkoe0F+2e/2LiNwiIgfBTJTw11flv208UwS38ru+GR7nZk2VdGvAE8tqGB0RQIGra73Rux9jKNgfy1XtfXdLg==", + "type": "package", + "path": "system.servicemodel.http/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.ServiceModel.Http.dll", + "lib/net8.0/System.ServiceModel.Http.pdb", + "lib/net8.0/cs/System.ServiceModel.Http.resources.dll", + "lib/net8.0/de/System.ServiceModel.Http.resources.dll", + "lib/net8.0/es/System.ServiceModel.Http.resources.dll", + "lib/net8.0/fr/System.ServiceModel.Http.resources.dll", + "lib/net8.0/it/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ja/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ko/System.ServiceModel.Http.resources.dll", + "lib/net8.0/pl/System.ServiceModel.Http.resources.dll", + "lib/net8.0/pt-BR/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ru/System.ServiceModel.Http.resources.dll", + "lib/net8.0/tr/System.ServiceModel.Http.resources.dll", + "lib/net8.0/zh-Hans/System.ServiceModel.Http.resources.dll", + "lib/net8.0/zh-Hant/System.ServiceModel.Http.resources.dll", + "system.servicemodel.http.8.0.0.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.Primitives/8.0.0": { + "sha512": "hVzK77Bl00H+1V7ho7h03tKlgxAIKssV3eUnRdH+gTCZCK4Ywnv2CR35AV9ly/tRpvsGwNL1d/jkAwB1MWw3Fw==", + "type": "package", + "path": "system.servicemodel.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.ServiceModel.Primitives.dll", + "lib/net8.0/System.ServiceModel.Primitives.pdb", + "lib/net8.0/cs/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/de/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/es/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/fr/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/it/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ja/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ko/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/pl/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/pt-BR/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ru/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/tr/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/zh-Hans/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/zh-Hant/System.ServiceModel.Primitives.resources.dll", + "ref/net8.0/System.ServiceModel.Primitives.dll", + "system.servicemodel.primitives.8.0.0.nupkg.sha512", + "system.servicemodel.primitives.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/4.5.1": { + "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "type": "package", + "path": "system.text.encoding.codepages/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "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/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.5.1.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/6.0.10": { + "sha512": "NSB0kDipxn2ychp88NXWfFRFlmi1bst/xynOutbnpEfRCT9JZkZ7KOmF/I/hNKo2dILiMGnqblm+j1sggdLB9g==", + "type": "package", + "path": "system.text.json/6.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netcoreapp3.1/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net461/System.Text.Json.dll", + "lib/net461/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/netcoreapp3.1/System.Text.Json.dll", + "lib/netcoreapp3.1/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.6.0.10.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.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" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "WebMarkupMin.AspNet.Common/2.17.0": { + "sha512": "HNMEVKwHnA9eGb7iAsihm9oKK5xTfuWb2bq6J7Gx6CTZSYi9HnYbo+ejzzmlTATRPiD9UqpYqwbecr0i09aJFg==", + "type": "package", + "path": "webmarkupmin.aspnet.common/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net40/WebMarkupMin.AspNet.Common.dll", + "lib/net40/WebMarkupMin.AspNet.Common.xml", + "lib/net45/WebMarkupMin.AspNet.Common.dll", + "lib/net45/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard1.3/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard1.3/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard2.0/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard2.0/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.xml", + "readme.txt", + "webmarkupmin.aspnet.common.2.17.0.nupkg.sha512", + "webmarkupmin.aspnet.common.nuspec" + ] + }, + "WebMarkupMin.AspNetCore8/2.17.0": { + "sha512": "516pUZ5oXqK3FxV5bvX/L/Vor+iyZP7aP4Si6hs5nSIoXtXgz81X+4UTopxx/Wh8+jlYzWXsLC0pVxsKVPqHvw==", + "type": "package", + "path": "webmarkupmin.aspnetcore8/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net8.0/WebMarkupMin.AspNetCore8.dll", + "lib/net8.0/WebMarkupMin.AspNetCore8.xml", + "readme.txt", + "webmarkupmin.aspnetcore8.2.17.0.nupkg.sha512", + "webmarkupmin.aspnetcore8.nuspec" + ] + }, + "WebMarkupMin.Core/2.17.0": { + "sha512": "TKCwf7usSSqKkXzc+rfc11K1GGA5KUnj241ImDRRPvpfgekUsg9FbqZuhqbOCjkEw4WDEKWN6EODPBBtP5g5hA==", + "type": "package", + "path": "webmarkupmin.core/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net40-client/WebMarkupMin.Core.dll", + "lib/net40-client/WebMarkupMin.Core.xml", + "lib/net45/WebMarkupMin.Core.dll", + "lib/net45/WebMarkupMin.Core.xml", + "lib/netstandard1.3/WebMarkupMin.Core.dll", + "lib/netstandard1.3/WebMarkupMin.Core.xml", + "lib/netstandard2.0/WebMarkupMin.Core.dll", + "lib/netstandard2.0/WebMarkupMin.Core.xml", + "lib/netstandard2.1/WebMarkupMin.Core.dll", + "lib/netstandard2.1/WebMarkupMin.Core.xml", + "readme.txt", + "webmarkupmin.core.2.17.0.nupkg.sha512", + "webmarkupmin.core.nuspec" + ] + }, + "WebMarkupMin.NUglify/2.17.0": { + "sha512": "ZS/qge/fL98fsul12z9Q4C24Rbpu9Epw+QQpPoF6ksifWt/3TH2CQWSUV4iDeorQsSlVRUbKfpVor7R2uQK/cA==", + "type": "package", + "path": "webmarkupmin.nuglify/2.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "PACKAGE-DESCRIPTION.md", + "icon.png", + "lib/net40-client/WebMarkupMin.NUglify.dll", + "lib/net40-client/WebMarkupMin.NUglify.xml", + "lib/net45/WebMarkupMin.NUglify.dll", + "lib/net45/WebMarkupMin.NUglify.xml", + "lib/netstandard1.3/WebMarkupMin.NUglify.dll", + "lib/netstandard1.3/WebMarkupMin.NUglify.xml", + "lib/netstandard2.0/WebMarkupMin.NUglify.dll", + "lib/netstandard2.0/WebMarkupMin.NUglify.xml", + "nuglify-license.txt", + "readme.txt", + "webmarkupmin.nuglify.2.17.0.nupkg.sha512", + "webmarkupmin.nuglify.nuspec" + ] + }, + "Nop.Core/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Libraries/Nop.Core/Nop.Core.csproj", + "msbuildProject": "../../../../NopCommerce/Libraries/Nop.Core/Nop.Core.csproj" + }, + "Nop.Data/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Libraries/Nop.Data/Nop.Data.csproj", + "msbuildProject": "../../../../NopCommerce/Libraries/Nop.Data/Nop.Data.csproj" + }, + "Nop.Services/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Libraries/Nop.Services/Nop.Services.csproj", + "msbuildProject": "../../../../NopCommerce/Libraries/Nop.Services/Nop.Services.csproj" + }, + "Nop.Web/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Presentation/Nop.Web/Nop.Web.csproj", + "msbuildProject": "../../../../NopCommerce/Presentation/Nop.Web/Nop.Web.csproj" + }, + "Nop.Web.Framework/4.70.0": { + "type": "project", + "path": "../../../../NopCommerce/Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj", + "msbuildProject": "../../../../NopCommerce/Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Nop.Web >= 4.70.0" + ] + }, + "packageFolders": { + "C:\\Users\\Ádám\\.nuget\\packages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.TestPlugin\\Nop.Plugin.Misc.TestPlugin.csproj", + "projectName": "Nop.Plugin.Misc.TestPlugin", + "projectPath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.TestPlugin\\Nop.Plugin.Misc.TestPlugin.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.TestPlugin\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "projectPath": "D:\\REPOS\\MANGO\\source\\NopCommerce\\Presentation\\Nop.Web\\Nop.Web.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/obj/project.nuget.cache b/Nop.Plugin.Misc.TestPlugin/obj/project.nuget.cache new file mode 100644 index 0000000..e28dc8b --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/project.nuget.cache @@ -0,0 +1,234 @@ +{ + "version": 2, + "dgSpecHash": "bzfKhOAULJI=", + "success": true, + "projectFilePath": "D:\\REPOS\\MANGO\\source\\Nopcommerce.Common\\4.70\\Plugins\\Nop.Plugin.Misc.TestPlugin\\Nop.Plugin.Misc.TestPlugin.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Ádám\\.nuget\\packages\\advancedstringbuilder\\0.1.1\\advancedstringbuilder.0.1.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\autofac\\8.1.0\\autofac.8.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\autofac.extensions.dependencyinjection\\10.0.0\\autofac.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\automapper\\13.0.1\\automapper.13.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.core\\1.44.1\\azure.core.1.44.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.extensions.aspnetcore.dataprotection.blobs\\1.3.4\\azure.extensions.aspnetcore.dataprotection.blobs.1.3.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.extensions.aspnetcore.dataprotection.keys\\1.2.4\\azure.extensions.aspnetcore.dataprotection.keys.1.2.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.identity\\1.13.0\\azure.identity.1.13.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.security.keyvault.keys\\4.6.0\\azure.security.keyvault.keys.4.6.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.storage.blobs\\12.22.2\\azure.storage.blobs.12.22.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.storage.common\\12.21.1\\azure.storage.common.12.21.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\bouncycastle.cryptography\\2.4.0\\bouncycastle.cryptography.2.4.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\closedxml\\0.104.1\\closedxml.0.104.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\closedxml.parser\\1.2.0\\closedxml.parser.1.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\documentformat.openxml\\3.0.1\\documentformat.openxml.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\documentformat.openxml.framework\\3.0.1\\documentformat.openxml.framework.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\excelnumberformat\\1.1.0\\excelnumberformat.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\excss\\4.2.3\\excss.4.2.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\firebirdsql.data.firebirdclient\\10.0.0\\firebirdsql.data.firebirdclient.10.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator\\5.2.0\\fluentmigrator.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.abstractions\\5.2.0\\fluentmigrator.abstractions.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.mysql\\5.1.0\\fluentmigrator.extensions.mysql.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.oracle\\5.1.0\\fluentmigrator.extensions.oracle.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.postgres\\5.1.0\\fluentmigrator.extensions.postgres.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.snowflake\\5.1.0\\fluentmigrator.extensions.snowflake.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.sqlserver\\5.1.0\\fluentmigrator.extensions.sqlserver.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner\\5.1.0\\fluentmigrator.runner.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.core\\5.1.0\\fluentmigrator.runner.core.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.db2\\5.1.0\\fluentmigrator.runner.db2.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.firebird\\5.1.0\\fluentmigrator.runner.firebird.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.hana\\5.1.0\\fluentmigrator.runner.hana.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.mysql\\5.1.0\\fluentmigrator.runner.mysql.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.oracle\\5.1.0\\fluentmigrator.runner.oracle.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.postgres\\5.1.0\\fluentmigrator.runner.postgres.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.redshift\\5.1.0\\fluentmigrator.runner.redshift.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.snowflake\\5.1.0\\fluentmigrator.runner.snowflake.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.sqlite\\5.1.0\\fluentmigrator.runner.sqlite.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.sqlserver\\5.1.0\\fluentmigrator.runner.sqlserver.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation\\11.5.1\\fluentvalidation.11.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation.aspnetcore\\11.3.0\\fluentvalidation.aspnetcore.11.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\11.5.1\\fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis\\1.68.0\\google.apis.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis.auth\\1.68.0\\google.apis.auth.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis.core\\1.68.0\\google.apis.core.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp\\7.3.0.2\\harfbuzzsharp.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.linux\\7.3.0.2\\harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.macos\\7.3.0.2\\harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.win32\\7.3.0.2\\harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer\\2.14.1\\humanizer.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.af\\2.14.1\\humanizer.core.af.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ar\\2.14.1\\humanizer.core.ar.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.az\\2.14.1\\humanizer.core.az.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.bg\\2.14.1\\humanizer.core.bg.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.bn-bd\\2.14.1\\humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.cs\\2.14.1\\humanizer.core.cs.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.da\\2.14.1\\humanizer.core.da.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.de\\2.14.1\\humanizer.core.de.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.el\\2.14.1\\humanizer.core.el.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.es\\2.14.1\\humanizer.core.es.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fa\\2.14.1\\humanizer.core.fa.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fi-fi\\2.14.1\\humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fr\\2.14.1\\humanizer.core.fr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fr-be\\2.14.1\\humanizer.core.fr-be.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.he\\2.14.1\\humanizer.core.he.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hr\\2.14.1\\humanizer.core.hr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hu\\2.14.1\\humanizer.core.hu.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hy\\2.14.1\\humanizer.core.hy.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.id\\2.14.1\\humanizer.core.id.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.is\\2.14.1\\humanizer.core.is.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.it\\2.14.1\\humanizer.core.it.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ja\\2.14.1\\humanizer.core.ja.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ko-kr\\2.14.1\\humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ku\\2.14.1\\humanizer.core.ku.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.lv\\2.14.1\\humanizer.core.lv.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ms-my\\2.14.1\\humanizer.core.ms-my.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.mt\\2.14.1\\humanizer.core.mt.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nb\\2.14.1\\humanizer.core.nb.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nb-no\\2.14.1\\humanizer.core.nb-no.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nl\\2.14.1\\humanizer.core.nl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.pl\\2.14.1\\humanizer.core.pl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.pt\\2.14.1\\humanizer.core.pt.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ro\\2.14.1\\humanizer.core.ro.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ru\\2.14.1\\humanizer.core.ru.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sk\\2.14.1\\humanizer.core.sk.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sl\\2.14.1\\humanizer.core.sl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sr\\2.14.1\\humanizer.core.sr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sr-latn\\2.14.1\\humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sv\\2.14.1\\humanizer.core.sv.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.th-th\\2.14.1\\humanizer.core.th-th.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.tr\\2.14.1\\humanizer.core.tr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uk\\2.14.1\\humanizer.core.uk.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uz-cyrl-uz\\2.14.1\\humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uz-latn-uz\\2.14.1\\humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.vi\\2.14.1\\humanizer.core.vi.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-cn\\2.14.1\\humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-hans\\2.14.1\\humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-hant\\2.14.1\\humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\ligershark.weboptimizer.core\\3.0.426\\ligershark.weboptimizer.core.3.0.426.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\linq2db\\5.4.1\\linq2db.5.4.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mailkit\\4.8.0\\mailkit.4.8.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\maxmind.db\\4.1.0\\maxmind.db.4.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\maxmind.geoip2\\5.2.0\\maxmind.geoip2.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\3.1.32\\microsoft.aspnetcore.cryptography.internal.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.dataprotection\\3.1.32\\microsoft.aspnetcore.dataprotection.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.dataprotection.abstractions\\3.1.32\\microsoft.aspnetcore.dataprotection.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\8.0.10\\microsoft.aspnetcore.jsonpatch.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\8.0.10\\microsoft.aspnetcore.mvc.newtonsoftjson.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.extensions\\6.0.0\\microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.runtimecompilation\\8.0.10\\microsoft.aspnetcore.mvc.razor.runtimecompilation.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\6.0.0\\microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.0\\microsoft.codeanalysis.common.4.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.0\\microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.razor\\6.0.0\\microsoft.codeanalysis.razor.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.0\\microsoft.data.sqlclient.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.2.0\\microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.sqlserver\\8.0.10\\microsoft.extensions.caching.sqlserver.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.stackexchangeredis\\8.0.10\\microsoft.extensions.caching.stackexchangeredis.8.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.32\\microsoft.extensions.fileproviders.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.32\\microsoft.extensions.hosting.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.objectpool\\6.0.16\\microsoft.extensions.objectpool.6.0.16.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identity.client\\4.66.1\\microsoft.identity.client.4.66.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.65.0\\microsoft.identity.client.extensions.msal.4.65.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mimekit\\4.8.0\\mimekit.4.8.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mysqlconnector\\2.3.7\\mysqlconnector.2.3.7.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.asyncex.coordination\\5.1.2\\nito.asyncex.coordination.5.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.asyncex.tasks\\5.1.2\\nito.asyncex.tasks.5.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.collections.deque\\1.1.1\\nito.collections.deque.1.1.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.disposables\\2.2.1\\nito.disposables.2.2.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\npgsql\\8.0.5\\npgsql.8.0.5.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nuglify\\1.21.9\\nuglify.1.21.9.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\pipelines.sockets.unofficial\\2.2.8\\pipelines.sockets.unofficial.2.2.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\questpdf\\2024.10.1\\questpdf.2024.10.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\rbush\\3.2.0\\rbush.3.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\shimskiasharp\\2.0.0.1\\shimskiasharp.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\sixlabors.fonts\\1.0.0\\sixlabors.fonts.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp\\2.88.8\\skiasharp.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.harfbuzz\\2.88.8\\skiasharp.harfbuzz.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.linux.nodependencies\\2.88.8\\skiasharp.nativeassets.linux.nodependencies.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.8\\skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.8\\skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\stackexchange.redis\\2.7.27\\stackexchange.redis.2.7.27.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.custom\\2.0.0.1\\svg.custom.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.model\\2.0.0.1\\svg.model.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.skia\\2.0.0.1\\svg.skia.2.0.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.clientmodel\\1.1.0\\system.clientmodel.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.codedom\\7.0.0\\system.codedom.7.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.1\\system.configuration.configurationmanager.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.1\\system.diagnostics.eventlog.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.formats.asn1\\8.0.1\\system.formats.asn1.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.filesystem.accesscontrol\\5.0.0\\system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.hashing\\6.0.0\\system.io.hashing.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.packaging\\8.0.0\\system.io.packaging.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.pipelines\\5.0.1\\system.io.pipelines.5.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.async\\6.0.1\\system.linq.async.6.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.dynamic.core\\1.4.6\\system.linq.dynamic.core.1.4.6.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.management\\7.0.2\\system.management.7.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.memory.data\\6.0.0\\system.memory.data.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.caching\\8.0.0\\system.runtime.caching.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.pkcs\\8.0.0\\system.security.cryptography.pkcs.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.xml\\6.0.1\\system.security.cryptography.xml.6.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.servicemodel.http\\8.0.0\\system.servicemodel.http.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.servicemodel.primitives\\8.0.0\\system.servicemodel.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.json\\6.0.10\\system.text.json.6.0.10.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.aspnet.common\\2.17.0\\webmarkupmin.aspnet.common.2.17.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.aspnetcore8\\2.17.0\\webmarkupmin.aspnetcore8.2.17.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.core\\2.17.0\\webmarkupmin.core.2.17.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.nuglify\\2.17.0\\webmarkupmin.nuglify.2.17.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/plugin.json b/Nop.Plugin.Misc.TestPlugin/plugin.json new file mode 100644 index 0000000..f847f51 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/plugin.json @@ -0,0 +1,13 @@ +{ + "Group": "Misc", + "FriendlyName": "AgeVerification", + "SystemName": "FlirtyFluffersAgeVerification", + "Version": "1.00", + "SupportedVersions": [ + "4.70" + ], + "Author": "Adam Gelencser", + "DisplayOrder": 1, + "FileName": "Nop.Plugin.Misc.TestPlugin.dll", + "Description": "" +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Components/WidgetsACAgeVerificationViewComponent.cs b/Nop.Plugin.Widgets.ACAgeVerification/Components/WidgetsACAgeVerificationViewComponent.cs new file mode 100644 index 0000000..3e7ca72 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Components/WidgetsACAgeVerificationViewComponent.cs @@ -0,0 +1,89 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Core; +using Nop.Core.Caching; +using Nop.Plugin.Widgets.ACAgeVerification.Infrastructure.Cache; +using Nop.Plugin.Widgets.ACAgeVerification.Models; +using Nop.Services.Configuration; +using Nop.Services.Media; +using Nop.Web.Framework.Components; + +namespace Nop.Plugin.Widgets.ACAgeVerification.Components; + +public class WidgetsACAgeVerificationViewComponent : NopViewComponent +{ + protected readonly IStoreContext _storeContext; + protected readonly IStaticCacheManager _staticCacheManager; + protected readonly ISettingService _settingService; + protected readonly IPictureService _pictureService; + protected readonly IWebHelper _webHelper; + + public WidgetsACAgeVerificationViewComponent(IStoreContext storeContext, + IStaticCacheManager staticCacheManager, + ISettingService settingService, + IPictureService pictureService, + IWebHelper webHelper) + { + _storeContext = storeContext; + _staticCacheManager = staticCacheManager; + _settingService = settingService; + _pictureService = pictureService; + _webHelper = webHelper; + } + + /// A task that represents the asynchronous operation + public async Task InvokeAsync(string widgetZone, object additionalData) + { + var store = await _storeContext.GetCurrentStoreAsync(); + var nivoSliderSettings = await _settingService.LoadSettingAsync(store.Id); + + var model = new PublicInfoModel + { + Picture1Url = await GetPictureUrlAsync(nivoSliderSettings.Picture1Id), + Text1 = nivoSliderSettings.Text1, + Link1 = nivoSliderSettings.Link1, + AltText1 = nivoSliderSettings.AltText1, + + Picture2Url = await GetPictureUrlAsync(nivoSliderSettings.Picture2Id), + Text2 = nivoSliderSettings.Text2, + Link2 = nivoSliderSettings.Link2, + AltText2 = nivoSliderSettings.AltText2, + + Picture3Url = await GetPictureUrlAsync(nivoSliderSettings.Picture3Id), + Text3 = nivoSliderSettings.Text3, + Link3 = nivoSliderSettings.Link3, + AltText3 = nivoSliderSettings.AltText3, + + Picture4Url = await GetPictureUrlAsync(nivoSliderSettings.Picture4Id), + Text4 = nivoSliderSettings.Text4, + Link4 = nivoSliderSettings.Link4, + AltText4 = nivoSliderSettings.AltText4, + + Picture5Url = await GetPictureUrlAsync(nivoSliderSettings.Picture5Id), + Text5 = nivoSliderSettings.Text5, + Link5 = nivoSliderSettings.Link5, + AltText5 = nivoSliderSettings.AltText5 + }; + + if (string.IsNullOrEmpty(model.Picture1Url) && string.IsNullOrEmpty(model.Picture2Url) && + string.IsNullOrEmpty(model.Picture3Url) && string.IsNullOrEmpty(model.Picture4Url) && + string.IsNullOrEmpty(model.Picture5Url)) + //no pictures uploaded + return Content(""); + + return View("~/Plugins/Widgets.NivoSlider/Views/PublicInfo.cshtml", model); + } + + /// A task that represents the asynchronous operation + protected async Task GetPictureUrlAsync(int pictureId) + { + var cacheKey = _staticCacheManager.PrepareKeyForDefaultCache(ModelCacheEventConsumer.PICTURE_URL_MODEL_KEY, + pictureId, _webHelper.IsCurrentConnectionSecured() ? Uri.UriSchemeHttps : Uri.UriSchemeHttp); + + return await _staticCacheManager.GetAsync(cacheKey, async () => + { + //little hack here. nulls aren't cacheable so set it to "" + var url = await _pictureService.GetPictureUrlAsync(pictureId, showDefaultPicture: false) ?? ""; + return url; + }); + } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/README b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/README new file mode 100644 index 0000000..2e5185c --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/README @@ -0,0 +1 @@ +Nivo Slider is "The Most Awesome jQuery Image Slider". See http://nivo.dev7studios.com for more info. \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/license.txt b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/license.txt new file mode 100644 index 0000000..664436d --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/license.txt @@ -0,0 +1,22 @@ + Copyright (c) 2010-2012 Dev7studios + + Permission is hereby granted, free of charge, to any person + obtaining a copy of this software and associated documentation + files (the "Software"), to deal in the Software without + restriction, including without limitation the rights to use, + copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following + conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES + OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT + HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR + OTHER DEALINGS IN THE SOFTWARE. diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/nivo-slider.css b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/nivo-slider.css new file mode 100644 index 0000000..ca110e9 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/nivo-slider.css @@ -0,0 +1,114 @@ +/* + * jQuery Nivo Slider v3.2 + * http://nivo.dev7studios.com + * + * Copyright 2012, Dev7studios + * Free to use and abuse under the MIT license. + * http://www.opensource.org/licenses/mit-license.php + */ + +/* The Nivo Slider styles */ +.nivoSlider { + position:relative; + width:100%; + height:auto; + overflow: hidden; +} +.nivoSlider img { + position:absolute; + top:0px; + left:0px; + max-width: none; +} +.nivo-main-image { + display: block !important; + position: relative !important; + width: 100% !important; + height: auto; +} + +/* If an image is wrapped in a link */ +.nivoSlider a.nivo-imageLink { + position:absolute; + top:0px; + left:0px; + width:100%; + height:100%; + border:0; + padding:0; + margin:0; + z-index:6; + display:none; + background:white; + filter:alpha(opacity=0); + opacity:0; +} +/* The slices and boxes in the Slider */ +.nivo-slice { + display:block; + position:absolute; + z-index:5; + height:100%; + top:0; +} +.nivo-box { + display:block; + position:absolute; + z-index:5; + overflow:hidden; +} +.nivo-box img { display:block; } + +/* Caption styles */ +.nivo-caption { + position:absolute; + left:0px; + bottom:0px; + background:#000; + color:#fff; + width:100%; + z-index:8; + padding: 5px 10px; + opacity: 0.8; + overflow: hidden; + display: none; + -moz-opacity: 0.8; + filter:alpha(opacity=8); + -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ + -moz-box-sizing: border-box; /* Firefox, other Gecko */ + box-sizing: border-box; /* Opera/IE 8+ */ +} +.nivo-caption p { + padding:5px; + margin:0; +} +.nivo-caption a { + display:inline !important; +} +.nivo-html-caption { + display:none; +} +/* Direction nav styles (e.g. Next & Prev) */ +.nivo-directionNav a { + position:absolute; + top:45%; + z-index:8; + cursor:pointer; +} +.nivo-prevNav { + left:0px; +} +.nivo-nextNav { + right:0px; +} +/* Control nav styles (e.g. 1,2,3...) */ +.nivo-controlNav { + text-align:center; + padding: 15px 0; +} +.nivo-controlNav a { + cursor:pointer; +} +.nivo-controlNav a.active { + font-weight:bold; +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/sample-images/banner_01.webp b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/sample-images/banner_01.webp new file mode 100644 index 0000000000000000000000000000000000000000..2e25f52ed97362a4b5b3cb4254bc21a852a5818a GIT binary patch literal 62310 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/sample-images/banner_02.webp b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/sample-images/banner_02.webp new file mode 100644 index 0000000000000000000000000000000000000000..d8ac3d41816c5953a987f79d01332571e3728759 GIT binary patch literal 55500 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/bar/arrows.png b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/bar/arrows.png new file mode 100644 index 0000000000000000000000000000000000000000..8f562bd81836e8c835dc968751a1a9760a679928 GIT binary patch literal 824 zcmV-81IPS{P)(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ;zDYzuRCwCdnXhx=KorM6WSAi?u5ma}hwHhzIB<29=kC9%ySj7W;#vg`RL{i) zhf5U|yv(GzZ1(MDb2Im5GB6?J?RR&--}hrD*XtFf#lRgf@A&NkoPm;YEEV5L$8UxB zt~4*2DxO&a-{jL~7vKmSv;(kA@IA0H0Bzg5_$~S#n)Ix23S@>AwOJ+3Up>J-2-w); zzXgz+cAE+CcL6)pO5nGwyv7pXQ6_t+<-lG8cq7{=lvTisg5N3dJ#U~37lM%ooSTYmfrEKLfES9Zmvd0m?HtD%+1CD{U2R~gy%Y#9n(vf|y>j|v^ zyDDNXm#ek?By!J3kaEWzc3%UI9i48w)X&v%gJZs1dEXW!&16TwLg};uo<;eF3Q5;@ zUlo2T#Rze;9QfX?jIA@LhobPeW>_j5w^!oH>0EhF!`Z}o8U$I6Ycw=zV~))0F;x!PM2YOeOXvft>CgRxl%6U+p4b zzw9bgU%KvbEeFo-&Li|#vn3^GcU`-6VmVuyb8E8A9f2MgcHC08f?RuTg{ZMn`6tT5 zw3OTVQi}O7tpxta6-ozU>Bua4IwXboK54SX&jA4Ddbz!~r#v120000(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ=he8jc6r^nnr|1i9*sBsN>|l+s%D)eZFKI zrgPx%-s9f;-E&XA^W76dDaHFR0q@ByRk4IR9woE4Tm7*v?zu)hXB#8t9fksJ^zCJoS`VxShJIPI>l-_VQ$qL|p zBog_2b8}M`MNtND?M|mtJ~%j#r>3Tw0aUa3gvYEDvFP=BJ7;EQpsMPP!D6w9a5#*< zzP?VD3i4Jww%KgXTrOuiRwxu8Nm7+*8r}e`9UmX>_Vo0a4t95UBb`p~GDgt5=2!wy zU0YjQS1Og{{{H?OISz$Fawd}*1Mne$du;xV9228faCDOZ*cKNTAGNf!__EpTr|awM z=;-Kx!{LZ8EG)bn85#Ktz$?aQjjP785$jPq0Ne*qJ3Bkuy1l(UI6Xc68GwfXJ}}U& za>QKJe4$uOO1cC<)gz^p(l=@aH%Vp3Q_F~usZLbX3VpIJGL`1Mm2BQ+@tyV9pd;^O z?~GLLK$ibuQ+k)h#N?ga0rd7YRR*Y>8^LZl<*JN-3S40bhHqlRVanfsJh;W=CKkDh z6S;4J1J+p4sNB0=k(3ZZjKDg8MfbhEz25rz`T;(%s;VlXQ0SZa`T0C6ZT=(#0Oj+? z14;m_#bWX2t*tH0&CRKaL_*DGv)bdwk42x)Ck_t}i@99xrN`rW3gC)uaIGK2kOGMV z{bg%w3mqLDmu7VE`~6}h60sg09zJbuZhp?d^|n9*2Wn-a{a}B8|H;bAN>ms2$;rvR zlamvrSS-F?T3Y(Msi`RnKn@0jFBCR(Q9BEyKx^XiV_;k8!U_QZ5{ZNg07FAV9%C9j9#3_De}4@CtgWrl z-rn9`qu2|^Lh*XNRsc9ZKL-G~TrR6wj_c~`>;RC<DwX=xs2PGu?Q4|M%dW020RV!*;BGpdR`dy1S6AxT z*w{`gmHM}{vr}wnXdvzF?FmC^!^ny%0It!|(T^2Hi3I|IX8>fo-M%<5Ft8d5h5pbP z;dDBGOD2=CY&QENfExD0+l;IbxLdgzKutQG{#H?xSTGoT!S@sZWS`IXY-eXDRxB2y zjA||xl-_;bYOqDV`jW|HS7T#i@bdDKY;0_(XJ==$t*uRTyWJ=h3ctJE?rE-1E^+#C zD;*Le`8`JX2LNiv$Hza(WHR4fTwMGVjYhjz2UNo%b#lG3-X;(;4HgV15Gu%~YLHFM rD4W#KjPQ#|nLjt0feAO7!~X^V+7UM$e>T6y00000NkvXXu0mjfjABY9 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/bar/loading.gif b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/bar/loading.gif new file mode 100644 index 0000000000000000000000000000000000000000..1560b646cff2cc4fd292d7fdb6f7adc7eb484b4a GIT binary patch literal 1737 zcmaLXeN0p99l-I&!tEQiv~W&~lv_&SmI|fRw)eE0zR=T_(^9a!crF*Q_O?JP*50BW za+x#6J*VfyIVLB@`G?mSW{fe8%LJS?j`_k2*Er)fUT2(h#u;OrF~)0*amLK)uKSPd z_ve%6mwfVklPAzh+MD7sAOkM}c>DG(0N}=r8~gU{i^XCdkH_!#XEK??hY#PmbLYsB zBQ-TOdcEFcGGQ3zcDqxl)R{A9Dk>_n+3b@iPo6$~y0EaYd-v|n&dz8wdiLzuYuB#f zIId7A#>dBxA3q+6M7D3=e*gY`mSv?<>Cn*7!Gi~r$>gb1r$~|%i^V5SoY=pAe_2@> zpU;2v=+TQ8FUH2ka=F~gmoFiN$BrF){rdHrH*e0LKY#i1-Mo2odV2cVvuD?@ zUw`o6!QH!euU@^nxVSh!KY#Duy<4|#J%9fE_U+r-wrx9k^5pF7Y2!hz{_K}ehqtPf73O8@wtkGyFib|)`J9qAU_vSxN)!U+Q3$?~abhem{rh;Yf zPOJW1?#m|PBZ)!HR~tu$H1Sk?EIk|_G;Yi!he6f93Ps{~w+!$1-$w+3U+n~t&M}Ot zdSwI42rFvpj1a?ZjJW9IPwE??&E&#p9=}A*VhFMy6cm+?16Q*P7E0tZ7Ed$$XgM+i z94(M9MQ3b;8w!dQGl;PjLVE4Y?<_P{QXeB^>`CbQFBvD_OT*#R6y9XGLopA~j#=m{7->pd6t>(Yi=3 zP}uo3V`jwsY7W}yU|ZK5z%f|Z?m9z~uy*yuIRu5uFfoVs{~5H(gmaYV0%%rtm$QvL z{~uwK+1e_?@y3>z>U)~d^%(jpL%ul0QBAF>DcN4YPSb$5Y$@O`J^)4H(vAG6fyV-$ zpp9QFT`ozb8GCfYP#22&x;IILw01D;WQQ6$Rd7I-5KT1ikgn+a(|F~;N5`@Dq1(|Cs^MXKy8P08>2 ze(zaIH}OH&tXIpzRp|f=nv{at6&u#2!XbvJ4yIM4%e%g~!%0&*vz<+T(e8jvJ$eoV zB?T~K5as2YK8NWfo<~YPgTv`>IqKsqR5<(dp)cEDK=00n>#89cvunA{%L%$M)}%E- z+Y7LTL0WhsE#TMm`-=Xj>PZ!`)~ z(K&8wwg6)N&3|FkYgh7U3x!zd`r4lqi5ZME;n0{F5#}>?i)rEJH#GeJiA|m+eZ8DO zSU?f>fl#Gzi`dPes#t)+aBX={4?$xdcO&byCid?1(awZqf1}Z}+v{|OO zt|T#wanNsY&NCKu;zG`1RYSh)xbINpDJ|DFE; D?d&fs literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/arrows.png b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/arrows.png new file mode 100644 index 0000000000000000000000000000000000000000..5a3c7df3ab661d25a2c1f8f473e21984d6a59faa GIT binary patch literal 1380 zcmeAS@N?(olHy`uVBq!ia0vp^0YGfS!3HEhs@wJeDajJoh?3y^w370~qErUQl>DSr z1<%~X^wgl##FWaylc_cg49rTIArU1JzCKpT`MG+DAT@dwxdlMoK*Q`S3KEmEQ%e+* zQqwc@Y?a>c-mj#PnPRIHZt82`Ti~3Uk?B!Ylp0*+7m{3+ootz+WN)WnQ(*-(AUCxn zQK2F?C$HG5!d3}vt`(3C64qBz04piUwpD^SD#ABF!8yMuRl!uxSU1_g&``n5OwZ87 z)XdCKN5ROz&`93^h|F{iO{`4Ktc=VRpg;*|TTx1yRgjAt)Gi>;Rw<*Tq`*pFzr4I$ zuiRKKzbIYb(9+TpWQLKEE>MMTab;dfVufyAu`f(~1RD^r68eAMwS&*t9 zlvv ztM~P_^2{qPNz6-5^>ndS0-B(gnVDi`Xm0N0X5eVy1JwS z>1J#M)9aF-T$-DjR|3v4~Pj*wm=R%;iu*SQ+p9GSu0IdUckV>c*E1hF{I+w zo0}W64h4v?C5SG}fAr$Xs|ObvVq5%5bsmY_vAUt2(Uy1AbIIblTzXuEFCM&l@?!Fq z;3~a8jop)HRiD}W(7vF6bNc_fS#yqD*{rjAdcSZ*mixb=A9PPb#d+AiV^ zx-7FQ`qGvCChQC?*|>~(k37pSz8Bwg&u4A=zN9~up{?t=$i_&9^D$H6nT~E2e7|A( z3#lV%jC;agrn1gEHtpJ!eG(sMDQ=o@FO229+nuERSHTr3wfeSe1Re-fOWl1WV)tnI zym@n&6d&)s`$;N8c^2n4@ec}>Q|k1Sxt@2}DqLf7F{zMGy~p0x^Md6(YeL_RkZ4kar}5GnbhLL zoU-O8S4G#2uMF!~w=QR$p*(AQ;YRib!%c5Y#hzCuA_r+VC|nsMK?LUsB?ZRj74?j4 Z44=PVU90H(-~p)I^K|udS?83{1OUrF?nwXu literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/bullets.png b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/bullets.png new file mode 100644 index 0000000000000000000000000000000000000000..a84c9c0bdcca94fc2633b96616173322e2639e9d GIT binary patch literal 1281 zcmV+c1^)VpP)(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ=he8jc6r^nnr|1i9*sBsN>|l+s%D)eZFKI zrgPx%-s9f;-E&XA^W76dDaHFR0q@ByRk4IR9woE4Tm7*v?zu)hXB#8t9fksJ^zCJoS`VxShJIPI>l-_VQ$qL|p zBog_2b8}M`MNtND?M|mtJ~%j#r>3Tw0aUa3gvYEDvFP=BJ7;EQpsMPP!D6w9a5#*< zzP?VD3i4Jww%KgXTrOuiRwxu8Nm7+*8r}e`9UmX>_Vo0a4t95UBb`p~GDgt5=2!wy zU0YjQS1Og{{{H?OISz$Fawd}*1Mne$du;xV9228faCDOZ*cKNTAGNf!__EpTr|awM z=;-Kx!{LZ8EG)bn85#Ktz$?aQjjP785$jPq0Ne*qJ3Bkuy1l(UI6Xc68GwfXJ}}U& za>QKJe4$uOO1cC<)gz^p(l=@aH%Vp3Q_F~usZLbX3VpIJGL`1Mm2BQ+@tyV9pd;^O z?~GLLK$ibuQ+k)h#N?ga0rd7YRR*Y>8^LZl<*JN-3S40bhHqlRVanfsJh;W=CKkDh z6S;4J1J+p4sNB0=k(3ZZjKDg8MfbhEz25rz`T;(%s;VlXQ0SZa`T0C6ZT=(#0Oj+? z14;m_#bWX2t*tH0&CRKaL_*DGv)bdwk42x)Ck_t}i@99xrN`rW3gC)uaIGK2kOGMV z{bg%w3mqLDmu7VE`~6}h60sg09zJbuZhp?d^|n9*2Wn-a{a}B8|H;bAN>ms2$;rvR zlamvrSS-F?T3Y(Msi`RnKn@0jFBCR(Q9BEyKx^XiV_;k8!U_QZ5{ZNg07FAV9%C9j9#3_De}4@CtgWrl z-rn9`qu2|^Lh*XNRsc9ZKL-G~TrR6wj_c~`>;RC<DwX=xs2PGu?Q4|M%dW020RV!*;BGpdR`dy1S6AxT z*w{`gmHM}{vr}wnXdvzF?FmC^!^ny%0It!|(T^2Hi3I|IX8>fo-M%<5Ft8d5h5pbP z;dDBGOD2=CY&QENfExD0+l;IbxLdgzKutQG{#H?xSTGoT!S@sZWS`IXY-eXDRxB2y zjA||xl-_;bYOqDV`jW|HS7T#i@bdDKY;0_(XJ==$t*uRTyWJ=h3ctJE?rE-1E^+#C zD;*Le`8`JX2LNiv$Hza(WHR4fTwMGVjYhjz2UNo%b#lG3-X;(;4HgV15Gu%~YLHFM rD4W#KjPQ#|nLjt0feAO7!~X^V+7UM$e>T6y00000NkvXXu0mjfjABY9 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/custom.css b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/custom.css new file mode 100644 index 0000000..c490e04 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/custom.css @@ -0,0 +1,126 @@ + +/* GLOBAL */ + +.theme-custom { + position: relative; + margin: 0 auto 60px; +} +.theme-custom .nivoSlider { + position: relative; + z-index: 0; + background: #fff url('loading.gif') 50% 50% no-repeat; +} +.theme-custom .nivoSlider img { + display: none; + position: absolute; + top: 0px; + left: 0px; +} +.theme-custom .nivoSlider a { + display: block; + border: 0; +} + +/* BULLET NAVIGATION */ + +.theme-custom .nivo-controlNav { + position: absolute; + bottom: 0; + z-index: 1; + width: 100%; + padding: 20px 0; + text-align: center; + font-size: 0; +} +.theme-custom .nivo-controlNav a { + display: inline-block; + width: 14px; + height: 14px; + margin: 0 7px; + box-shadow: 0 0 1px 0 rgba(0,0,0,0.2); + background-color: #fff; + font-size: 0; +} +.theme-custom .nivo-controlNav a.active { + background-color: #4ab2f1; +} + +/* DIRECTIONAL NAVIGATION */ + +.theme-custom .nivo-directionNav a { + display: block; + width: 40px; + height: 60px; + border:0; + background: rgba(255,255,255,0.8) url('arrows.png') no-repeat; + font-size: 0; + opacity: 0; + -webkit-transition: all 200ms ease-in-out; + -moz-transition: all 200ms ease-in-out; + -o-transition: all 200ms ease-in-out; + transition: all 200ms ease-in-out; +} +.theme-custom a.nivo-prevNav { + left: 0; + background-position: left center; +} +.theme-custom a.nivo-nextNav { + right: 0; + background-position: right center; +} +.theme-custom:hover .nivo-directionNav a { + opacity: 0.9; +} +.theme-custom .nivo-directionNav a:hover { + background-color: rgba(255,255,255,1); +} + +/* CAPTION */ + +.theme-custom .nivo-caption { + background-color: 333; +} +.theme-custom .nivo-caption a { + color: #fff; +} +.theme-custom .nivo-caption a:hover { + color: #4ab2f1; +} + +/* THUMBNAILS */ + +.theme-custom .nivo-controlNav.nivo-thumbs-enabled { + width: 100%; +} +.theme-custom .nivo-controlNav.nivo-thumbs-enabled a { + width: auto; + height: auto; + background: none; + margin-bottom: 5px; +} +.theme-custom .nivo-controlNav.nivo-thumbs-enabled img { + display: block; + width: 120px; + height: auto; +} + +/* RESPONSIVE */ + +@media all and (max-width: 1000px) { +.theme-custom { + max-width: 600px; + margin: -20px auto 40px; +} +.theme-custom .nivo-directionNav { + display: none; +} +} + +@media all and (min-width: 1001px) { +.theme-custom { + margin: -30px 0 60px; +} +.theme-custom .nivo-directionNav { + display: none; /* remove to use directional navigation */ +} +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/loading.gif b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/custom/loading.gif new file mode 100644 index 0000000000000000000000000000000000000000..e552f291bb52810f9a64f99159d23c6e7aceb05d GIT binary patch literal 1588 zcmZXUdo+}39LJw|=h8cx)eNI%G&H0_GZJBR+1_#6A(u&mlFK-n8e^1ORN5LtGqTcb zDj6k_T-s1BF=CTTvR#oVxm4079Z_2yo!Yl;&+hEm=bz`F-+4a2@8vu{xVv#2!DztnwqMrsuBnU;D5*D%WQ8~!3Jk8-_^#-8jC>( zOg`f9I_S;%I{funfa@T4xR;uodwFZgN57c(K&D^;7teAxTHsXF-As7>X+)3x_`rb6 zBz+emyXM8C@AU=?RE|XQ$wD8~`jh6^<{_afhnZ(6njqxS+Qai|2Es0@Cu90VLlskQ zj-mVJ@4&8>d*b}GtRzj;+F}j$LQvD%1`zB}DYz7y*qnX6BeA%P zM6Vg;zv5^>4;8l=6}J?&AIESE6muor2)RGsKX1#)lA>BVYfHOF4dj`SLMa0J=T_nm zmOjm*;vi4=fZrD_!kE7er1AD|WWNBnSGS40{y5&tXqu>7g;ccsme6p8@6a=<#rx{4 z5zs|>;V5q#&2F3>qdOpw^$2}=JR;POF-F=MOQ~7(Zi#Tr(D?dQ^(kHJP54raJ{2uv z*p5PmyAj}EVj2{jKC-7VqUL7Hig=Sy_81f}x>zO}n`!sp+112ZVw35ymX=!FStyqd zC@43G+(Asw=R^uqn}-spCxpJv8a#Km_sdS>tliDdCk&)Z`}Lfq*cU&8tJgrKnMX#) z1M<_POPNQJs=8aaO2b!rBWCsuBEIzm^={wfE(KDdA0OQited~&6+sJ#NM=owsFl8e!^*J$JGCx1spjxcMn0TLVl!`2(lVas9Z5(Dn1`t~ruJO+9 z9d9e1NT{kW>|0k!+B#S+OEMtC@YKu%4o`@KXgP@ylz3FpKRx|MG)9TB8Xf>s|jjmc5W_n-h2;7hOxrJOw?m8G~WOz227jVHp$>4eCQ78rD~=>xX!@DPa0%#DqmBpKkgw$joOFIXvplG*NIFpy6 zbAx(R4T)krNF;*qgLi=g+gEkwJyRd!)a#ETPGYQ8H9r^OZhM}!lj!s8@Vi7D(a>n0 z6#*yG4jD#^^{vc-f0db|44>&ykBQv;)5Pfni6tzJY!09$hbaJZ5$^oA0XJ ziFKUu&EubQTo&nz^UU|a5s}qHAcd!(ih*v*zIVA!!V_;UTCb)fS8=dX=_zPwu|Di` z`r!LO`(-WQb$ChOufiwxaqKdO=hGBh!p`M{<{!^ddTh0L7yzS*eyy^=nrtd-{E+VG z^%*#Phe@NGhHdQ-Twt;8#77N%kdT~jO;--hsT~i~t(bEsZaIuAlJ)p@Q1j$iBoGQ~ z2;zez;{Hm%pB$%Ol@*_s&#Y12z-WO0fY1buP|y~%IvM%9^lWSfU5342j^xo!!^QX4 z509rKTqf0OUif6^!W5TX5JS*5D7=C5P~XbfK@={opgpu;lEuppl=p>G=Ii=SpCu#f gu7!9AZ)eplQSQ!veQ(-U8t1ylUG6?>KLxD%6X;S+F#rGn literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/dark/arrows.png b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/dark/arrows.png new file mode 100644 index 0000000000000000000000000000000000000000..fe7f378c4011120aa117614d00cf70ea9f88ad5d GIT binary patch literal 3088 zcmV+r4Da)aP)KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z0003yNkl<(|-&NJiyAy!*!NNEuQ=@kU+>@>Qf=z>{uk3d4| z#bSvESn&WkgKcp2y-j7%1H7*qruyLje=N%q&MX#-s4PnujYczY$b3G(MZ{NY?elm% z-k<;Kd?ZN{iO5uI{SwFVjY}D3eiM;<5n0D^T)mQ6tyYnUOhu$%=H_rX{BbGcdES%O zdRM7bYL`M31VI!8!BlHqAY!xI?WW+EFbse5JpW+k2O_!yfJT;OpUU@rVrC#BbJ-u) zSZhHkWtbV5nTQA|P1En~cB_<94P(sXX0yq|FmxKza=ENB^V;|Q8UXB$$78+U@9z}= zK)cd=7IZOxky1kd0000KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z0004XNkl1|T!0I8A#=l}+lQYk5wzz5I) z>@yf#3Ac8UD+p3;kpyXX-@KU=tC*z7p9ACv(+nTO4D*q@W3^h1nR!!H)dc{QQg*63 zo6qNaTCdmVF~)}&V=W>8fSfbhwr$$Bz2q32y!-jz1;fFZmDrBftRgX7g!Gfj1Ne<=o27O=pj@S9^N>@##EBd?1N6 zRf8~I6rS70a(l^Uz9fVis4x`Za5zG3=1bPzCQb&j0t&-t-3+dV(%Xc~v4b0fDhE!= z!5vvk}-~_g*b) kGht=trMvok^M3z*02NEVY8T7bH~;_u07*qoM6N<$g5a*$rT_o{ literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/dark/dark.css b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/dark/dark.css new file mode 100644 index 0000000..06d7548 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/dark/dark.css @@ -0,0 +1,102 @@ +/* +Skin Name: Nivo Slider Dark Theme +Skin URI: http://nivo.dev7studios.com +Description: A dark skin for the Nivo Slider. +Version: 1.0 +Author: Gilbert Pellegrom +Author URI: http://dev7studios.com +Supports Thumbs: true +*/ + +.theme-dark.slider-wrapper { + background: #222; + padding: 10px; +} +.theme-dark .nivoSlider { + position:relative; + background:#fff url(loading.gif) no-repeat 50% 50%; + margin-bottom:10px; + overflow: visible; +} +.theme-dark .nivoSlider img { + position:absolute; + top:0px; + left:0px; + display:none; +} +.theme-dark .nivoSlider a { + border:0; + display:block; +} + +.theme-dark .nivo-controlNav { + text-align: left; + padding: 0; + position: relative; + z-index: 10; +} +.theme-dark .nivo-controlNav a { + display:inline-block; + width:10px; + height:10px; + background:url(bullets.png) no-repeat 0 2px; + text-indent:-9999px; + border:0; + margin: 0 2px; +} +.theme-dark .nivo-controlNav a.active { + background-position:0 100%; +} + +.theme-dark .nivo-directionNav a { + display:block; + width:30px; + height:30px; + background: url(arrows.png) no-repeat; + text-indent:-9999px; + border:0; + top: auto; + bottom: -36px; + z-index: 11; +} +.theme-dark .nivo-directionNav a:hover { + background-color: #333; + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + border-radius: 2px; +} +.theme-dark a.nivo-nextNav { + background-position:-16px 50%; + right:0px; +} +.theme-dark a.nivo-prevNav { + background-position:11px 50%; + left: auto; + right: 35px; +} + +.theme-dark .nivo-caption { + font-family: Helvetica, Arial, sans-serif; +} +.theme-dark .nivo-caption a { + color:#fff; + border-bottom:1px dotted #fff; +} +.theme-dark .nivo-caption a:hover { + color:#fff; +} + +.theme-dark .nivo-controlNav.nivo-thumbs-enabled { + width: 80%; +} +.theme-dark .nivo-controlNav.nivo-thumbs-enabled a { + width: auto; + height: auto; + background: none; + margin-bottom: 5px; +} +.theme-dark .nivo-controlNav.nivo-thumbs-enabled img { + display: block; + width: 120px; + height: auto; +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/dark/loading.gif b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/dark/loading.gif new file mode 100644 index 0000000000000000000000000000000000000000..1560b646cff2cc4fd292d7fdb6f7adc7eb484b4a GIT binary patch literal 1737 zcmaLXeN0p99l-I&!tEQiv~W&~lv_&SmI|fRw)eE0zR=T_(^9a!crF*Q_O?JP*50BW za+x#6J*VfyIVLB@`G?mSW{fe8%LJS?j`_k2*Er)fUT2(h#u;OrF~)0*amLK)uKSPd z_ve%6mwfVklPAzh+MD7sAOkM}c>DG(0N}=r8~gU{i^XCdkH_!#XEK??hY#PmbLYsB zBQ-TOdcEFcGGQ3zcDqxl)R{A9Dk>_n+3b@iPo6$~y0EaYd-v|n&dz8wdiLzuYuB#f zIId7A#>dBxA3q+6M7D3=e*gY`mSv?<>Cn*7!Gi~r$>gb1r$~|%i^V5SoY=pAe_2@> zpU;2v=+TQ8FUH2ka=F~gmoFiN$BrF){rdHrH*e0LKY#i1-Mo2odV2cVvuD?@ zUw`o6!QH!euU@^nxVSh!KY#Duy<4|#J%9fE_U+r-wrx9k^5pF7Y2!hz{_K}ehqtPf73O8@wtkGyFib|)`J9qAU_vSxN)!U+Q3$?~abhem{rh;Yf zPOJW1?#m|PBZ)!HR~tu$H1Sk?EIk|_G;Yi!he6f93Ps{~w+!$1-$w+3U+n~t&M}Ot zdSwI42rFvpj1a?ZjJW9IPwE??&E&#p9=}A*VhFMy6cm+?16Q*P7E0tZ7Ed$$XgM+i z94(M9MQ3b;8w!dQGl;PjLVE4Y?<_P{QXeB^>`CbQFBvD_OT*#R6y9XGLopA~j#=m{7->pd6t>(Yi=3 zP}uo3V`jwsY7W}yU|ZK5z%f|Z?m9z~uy*yuIRu5uFfoVs{~5H(gmaYV0%%rtm$QvL z{~uwK+1e_?@y3>z>U)~d^%(jpL%ul0QBAF>DcN4YPSb$5Y$@O`J^)4H(vAG6fyV-$ zpp9QFT`ozb8GCfYP#22&x;IILw01D;WQQ6$Rd7I-5KT1ikgn+a(|F~;N5`@Dq1(|Cs^MXKy8P08>2 ze(zaIH}OH&tXIpzRp|f=nv{at6&u#2!XbvJ4yIM4%e%g~!%0&*vz<+T(e8jvJ$eoV zB?T~K5as2YK8NWfo<~YPgTv`>IqKsqR5<(dp)cEDK=00n>#89cvunA{%L%$M)}%E- z+Y7LTL0WhsE#TMm`-=Xj>PZ!`)~ z(K&8wwg6)N&3|FkYgh7U3x!zd`r4lqi5ZME;n0{F5#}>?i)rEJH#GeJiA|m+eZ8DO zSU?f>fl#Gzi`dPes#t)+aBX={4?$xdcO&byCid?1(awZqf1}Z}+v{|OO zt|T#wanNsY&NCKu;zG`1RYSh)xbINpDJ|DFE; D?d&fs literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/default/arrows.png b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/default/arrows.png new file mode 100644 index 0000000000000000000000000000000000000000..8f562bd81836e8c835dc968751a1a9760a679928 GIT binary patch literal 824 zcmV-81IPS{P)(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ;zDYzuRCwCdnXhx=KorM6WSAi?u5ma}hwHhzIB<29=kC9%ySj7W;#vg`RL{i) zhf5U|yv(GzZ1(MDb2Im5GB6?J?RR&--}hrD*XtFf#lRgf@A&NkoPm;YEEV5L$8UxB zt~4*2DxO&a-{jL~7vKmSv;(kA@IA0H0Bzg5_$~S#n)Ix23S@>AwOJ+3Up>J-2-w); zzXgz+cAE+CcL6)pO5nGwyv7pXQ6_t+<-lG8cq7{=lvTisg5N3dJ#U~37lM%ooSTYmfrEKLfES9Zmvd0m?HtD%+1CD{U2R~gy%Y#9n(vf|y>j|v^ zyDDNXm#ek?By!J3kaEWzc3%UI9i48w)X&v%gJZs1dEXW!&16TwLg};uo<;eF3Q5;@ zUlo2T#Rze;9QfX?jIA@LhobPeW>_j5w^!oH>0EhF!`Z}o8U$I6Ycw=zV~))0F;x!PM2YOeOXvft>CgRxl%6U+p4b zzw9bgU%KvbEeFo-&Li|#vn3^GcU`-6VmVuyb8E8A9f2MgcHC08f?RuTg{ZMn`6tT5 zw3OTVQi}O7tpxta6-ozU>Bua4IwXboK54SX&jA4Ddbz!~r#v120000(_`g8%^e{{R4h=>PzAFaQARU;qF*m;eA5Z<1fd zMgRZ=he8jc6r^nnr|1i9*sBsN>|l+s%D)eZFKI zrgPx%-s9f;-E&XA^W76dDaHFR0q@ByRk4IR9woE4Tm7*v?zu)hXB#8t9fksJ^zCJoS`VxShJIPI>l-_VQ$qL|p zBog_2b8}M`MNtND?M|mtJ~%j#r>3Tw0aUa3gvYEDvFP=BJ7;EQpsMPP!D6w9a5#*< zzP?VD3i4Jww%KgXTrOuiRwxu8Nm7+*8r}e`9UmX>_Vo0a4t95UBb`p~GDgt5=2!wy zU0YjQS1Og{{{H?OISz$Fawd}*1Mne$du;xV9228faCDOZ*cKNTAGNf!__EpTr|awM z=;-Kx!{LZ8EG)bn85#Ktz$?aQjjP785$jPq0Ne*qJ3Bkuy1l(UI6Xc68GwfXJ}}U& za>QKJe4$uOO1cC<)gz^p(l=@aH%Vp3Q_F~usZLbX3VpIJGL`1Mm2BQ+@tyV9pd;^O z?~GLLK$ibuQ+k)h#N?ga0rd7YRR*Y>8^LZl<*JN-3S40bhHqlRVanfsJh;W=CKkDh z6S;4J1J+p4sNB0=k(3ZZjKDg8MfbhEz25rz`T;(%s;VlXQ0SZa`T0C6ZT=(#0Oj+? z14;m_#bWX2t*tH0&CRKaL_*DGv)bdwk42x)Ck_t}i@99xrN`rW3gC)uaIGK2kOGMV z{bg%w3mqLDmu7VE`~6}h60sg09zJbuZhp?d^|n9*2Wn-a{a}B8|H;bAN>ms2$;rvR zlamvrSS-F?T3Y(Msi`RnKn@0jFBCR(Q9BEyKx^XiV_;k8!U_QZ5{ZNg07FAV9%C9j9#3_De}4@CtgWrl z-rn9`qu2|^Lh*XNRsc9ZKL-G~TrR6wj_c~`>;RC<DwX=xs2PGu?Q4|M%dW020RV!*;BGpdR`dy1S6AxT z*w{`gmHM}{vr}wnXdvzF?FmC^!^ny%0It!|(T^2Hi3I|IX8>fo-M%<5Ft8d5h5pbP z;dDBGOD2=CY&QENfExD0+l;IbxLdgzKutQG{#H?xSTGoT!S@sZWS`IXY-eXDRxB2y zjA||xl-_;bYOqDV`jW|HS7T#i@bdDKY;0_(XJ==$t*uRTyWJ=h3ctJE?rE-1E^+#C zD;*Le`8`JX2LNiv$Hza(WHR4fTwMGVjYhjz2UNo%b#lG3-X;(;4HgV15Gu%~YLHFM rD4W#KjPQ#|nLjt0feAO7!~X^V+7UM$e>T6y00000NkvXXu0mjfjABY9 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/default/default.css b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/default/default.css new file mode 100644 index 0000000..eea0ef3 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/default/default.css @@ -0,0 +1,93 @@ +/* +Skin Name: Nivo Slider Default Theme +Skin URI: http://nivo.dev7studios.com +Description: The default skin for the Nivo Slider. +Version: 1.3 +Author: Gilbert Pellegrom +Author URI: http://dev7studios.com +Supports Thumbs: true +*/ + +.theme-default .nivoSlider { + position:relative; + background:#fff url(loading.gif) no-repeat 50% 50%; + margin-bottom:10px; + -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a; + -moz-box-shadow: 0px 1px 5px 0px #4a4a4a; + box-shadow: 0px 1px 5px 0px #4a4a4a; +} +.theme-default .nivoSlider img { + position:absolute; + top:0px; + left:0px; + display:none; +} +.theme-default .nivoSlider a { + border:0; + display:block; +} + +.theme-default .nivo-controlNav { + text-align: center; + padding: 20px 0; +} +.theme-default .nivo-controlNav a { + display:inline-block; + width:22px; + height:22px; + background:url(bullets.png) no-repeat; + text-indent:-9999px; + border:0; + margin: 0 2px; +} +.theme-default .nivo-controlNav a.active { + background-position:0 -22px; +} + +.theme-default .nivo-directionNav a { + display:block; + width:30px; + height:30px; + background:url(arrows.png) no-repeat; + text-indent:-9999px; + border:0; + opacity: 0; + -webkit-transition: all 200ms ease-in-out; + -moz-transition: all 200ms ease-in-out; + -o-transition: all 200ms ease-in-out; + transition: all 200ms ease-in-out; +} +.theme-default:hover .nivo-directionNav a { opacity: 1; } +.theme-default a.nivo-nextNav { + background-position:-30px 0; + right:15px; +} +.theme-default a.nivo-prevNav { + left:15px; +} + +.theme-default .nivo-caption { + font-family: Helvetica, Arial, sans-serif; +} +.theme-default .nivo-caption a { + color:#fff; + border-bottom:1px dotted #fff; +} +.theme-default .nivo-caption a:hover { + color:#fff; +} + +.theme-default .nivo-controlNav.nivo-thumbs-enabled { + width: 100%; +} +.theme-default .nivo-controlNav.nivo-thumbs-enabled a { + width: auto; + height: auto; + background: none; + margin-bottom: 5px; +} +.theme-default .nivo-controlNav.nivo-thumbs-enabled img { + display: block; + width: 120px; + height: auto; +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/default/loading.gif b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/default/loading.gif new file mode 100644 index 0000000000000000000000000000000000000000..1560b646cff2cc4fd292d7fdb6f7adc7eb484b4a GIT binary patch literal 1737 zcmaLXeN0p99l-I&!tEQiv~W&~lv_&SmI|fRw)eE0zR=T_(^9a!crF*Q_O?JP*50BW za+x#6J*VfyIVLB@`G?mSW{fe8%LJS?j`_k2*Er)fUT2(h#u;OrF~)0*amLK)uKSPd z_ve%6mwfVklPAzh+MD7sAOkM}c>DG(0N}=r8~gU{i^XCdkH_!#XEK??hY#PmbLYsB zBQ-TOdcEFcGGQ3zcDqxl)R{A9Dk>_n+3b@iPo6$~y0EaYd-v|n&dz8wdiLzuYuB#f zIId7A#>dBxA3q+6M7D3=e*gY`mSv?<>Cn*7!Gi~r$>gb1r$~|%i^V5SoY=pAe_2@> zpU;2v=+TQ8FUH2ka=F~gmoFiN$BrF){rdHrH*e0LKY#i1-Mo2odV2cVvuD?@ zUw`o6!QH!euU@^nxVSh!KY#Duy<4|#J%9fE_U+r-wrx9k^5pF7Y2!hz{_K}ehqtPf73O8@wtkGyFib|)`J9qAU_vSxN)!U+Q3$?~abhem{rh;Yf zPOJW1?#m|PBZ)!HR~tu$H1Sk?EIk|_G;Yi!he6f93Ps{~w+!$1-$w+3U+n~t&M}Ot zdSwI42rFvpj1a?ZjJW9IPwE??&E&#p9=}A*VhFMy6cm+?16Q*P7E0tZ7Ed$$XgM+i z94(M9MQ3b;8w!dQGl;PjLVE4Y?<_P{QXeB^>`CbQFBvD_OT*#R6y9XGLopA~j#=m{7->pd6t>(Yi=3 zP}uo3V`jwsY7W}yU|ZK5z%f|Z?m9z~uy*yuIRu5uFfoVs{~5H(gmaYV0%%rtm$QvL z{~uwK+1e_?@y3>z>U)~d^%(jpL%ul0QBAF>DcN4YPSb$5Y$@O`J^)4H(vAG6fyV-$ zpp9QFT`ozb8GCfYP#22&x;IILw01D;WQQ6$Rd7I-5KT1ikgn+a(|F~;N5`@Dq1(|Cs^MXKy8P08>2 ze(zaIH}OH&tXIpzRp|f=nv{at6&u#2!XbvJ4yIM4%e%g~!%0&*vz<+T(e8jvJ$eoV zB?T~K5as2YK8NWfo<~YPgTv`>IqKsqR5<(dp)cEDK=00n>#89cvunA{%L%$M)}%E- z+Y7LTL0WhsE#TMm`-=Xj>PZ!`)~ z(K&8wwg6)N&3|FkYgh7U3x!zd`r4lqi5ZME;n0{F5#}>?i)rEJH#GeJiA|m+eZ8DO zSU?f>fl#Gzi`dPes#t)+aBX={4?$xdcO&byCid?1(awZqf1}Z}+v{|OO zt|T#wanNsY&NCKu;zG`1RYSh)xbINpDJ|DFE; D?d&fs literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/light/arrows.png b/Nop.Plugin.Widgets.ACAgeVerification/Content/nivoslider/themes/light/arrows.png new file mode 100644 index 0000000000000000000000000000000000000000..1c5d881fab643bc80cb011162463311c9ae1b08e GIT binary patch literal 3247 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 D?d&fs literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Controllers/WidgetsNivoSliderController.cs b/Nop.Plugin.Widgets.ACAgeVerification/Controllers/WidgetsNivoSliderController.cs new file mode 100644 index 0000000..40cbf79 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Controllers/WidgetsNivoSliderController.cs @@ -0,0 +1,192 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Core; +using Nop.Plugin.Widgets.NivoSlider.Models; +using Nop.Services.Configuration; +using Nop.Services.Localization; +using Nop.Services.Media; +using Nop.Services.Messages; +using Nop.Services.Security; +using Nop.Web.Framework; +using Nop.Web.Framework.Controllers; +using Nop.Web.Framework.Mvc.Filters; + +namespace Nop.Plugin.Widgets.NivoSlider.Controllers; + +[AuthorizeAdmin] +[Area(AreaNames.ADMIN)] +[AutoValidateAntiforgeryToken] +public class WidgetsNivoSliderController : BasePluginController +{ + protected readonly ILocalizationService _localizationService; + protected readonly INotificationService _notificationService; + protected readonly IPermissionService _permissionService; + protected readonly IPictureService _pictureService; + protected readonly ISettingService _settingService; + protected readonly IStoreContext _storeContext; + + public WidgetsNivoSliderController(ILocalizationService localizationService, + INotificationService notificationService, + IPermissionService permissionService, + IPictureService pictureService, + ISettingService settingService, + IStoreContext storeContext) + { + _localizationService = localizationService; + _notificationService = notificationService; + _permissionService = permissionService; + _pictureService = pictureService; + _settingService = settingService; + _storeContext = storeContext; + } + + public async Task Configure() + { + if (!await _permissionService.AuthorizeAsync(StandardPermissionProvider.ManageWidgets)) + return AccessDeniedView(); + + //load settings for a chosen store scope + var storeScope = await _storeContext.GetActiveStoreScopeConfigurationAsync(); + var nivoSliderSettings = await _settingService.LoadSettingAsync(storeScope); + var model = new ConfigurationModel + { + Picture1Id = nivoSliderSettings.Picture1Id, + Text1 = nivoSliderSettings.Text1, + Link1 = nivoSliderSettings.Link1, + AltText1 = nivoSliderSettings.AltText1, + Picture2Id = nivoSliderSettings.Picture2Id, + Text2 = nivoSliderSettings.Text2, + Link2 = nivoSliderSettings.Link2, + AltText2 = nivoSliderSettings.AltText2, + Picture3Id = nivoSliderSettings.Picture3Id, + Text3 = nivoSliderSettings.Text3, + Link3 = nivoSliderSettings.Link3, + AltText3 = nivoSliderSettings.AltText3, + Picture4Id = nivoSliderSettings.Picture4Id, + Text4 = nivoSliderSettings.Text4, + Link4 = nivoSliderSettings.Link4, + AltText4 = nivoSliderSettings.AltText4, + Picture5Id = nivoSliderSettings.Picture5Id, + Text5 = nivoSliderSettings.Text5, + Link5 = nivoSliderSettings.Link5, + AltText5 = nivoSliderSettings.AltText5, + ActiveStoreScopeConfiguration = storeScope + }; + + if (storeScope > 0) + { + model.Picture1Id_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Picture1Id, storeScope); + model.Text1_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Text1, storeScope); + model.Link1_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Link1, storeScope); + model.AltText1_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.AltText1, storeScope); + model.Picture2Id_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Picture2Id, storeScope); + model.Text2_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Text2, storeScope); + model.Link2_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Link2, storeScope); + model.AltText2_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.AltText2, storeScope); + model.Picture3Id_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Picture3Id, storeScope); + model.Text3_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Text3, storeScope); + model.Link3_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Link3, storeScope); + model.AltText3_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.AltText3, storeScope); + model.Picture4Id_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Picture4Id, storeScope); + model.Text4_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Text4, storeScope); + model.Link4_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Link4, storeScope); + model.AltText4_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.AltText4, storeScope); + model.Picture5Id_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Picture5Id, storeScope); + model.Text5_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Text5, storeScope); + model.Link5_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.Link5, storeScope); + model.AltText5_OverrideForStore = await _settingService.SettingExistsAsync(nivoSliderSettings, x => x.AltText5, storeScope); + } + + return View("~/Plugins/Widgets.NivoSlider/Views/Configure.cshtml", model); + } + + [HttpPost] + public async Task Configure(ConfigurationModel model) + { + if (!await _permissionService.AuthorizeAsync(StandardPermissionProvider.ManageWidgets)) + return AccessDeniedView(); + + //load settings for a chosen store scope + var storeScope = await _storeContext.GetActiveStoreScopeConfigurationAsync(); + var nivoSliderSettings = await _settingService.LoadSettingAsync(storeScope); + + //get previous picture identifiers + var previousPictureIds = new[] + { + nivoSliderSettings.Picture1Id, + nivoSliderSettings.Picture2Id, + nivoSliderSettings.Picture3Id, + nivoSliderSettings.Picture4Id, + nivoSliderSettings.Picture5Id + }; + + nivoSliderSettings.Picture1Id = model.Picture1Id; + nivoSliderSettings.Text1 = model.Text1; + nivoSliderSettings.Link1 = model.Link1; + nivoSliderSettings.AltText1 = model.AltText1; + nivoSliderSettings.Picture2Id = model.Picture2Id; + nivoSliderSettings.Text2 = model.Text2; + nivoSliderSettings.Link2 = model.Link2; + nivoSliderSettings.AltText2 = model.AltText2; + nivoSliderSettings.Picture3Id = model.Picture3Id; + nivoSliderSettings.Text3 = model.Text3; + nivoSliderSettings.Link3 = model.Link3; + nivoSliderSettings.AltText3 = model.AltText3; + nivoSliderSettings.Picture4Id = model.Picture4Id; + nivoSliderSettings.Text4 = model.Text4; + nivoSliderSettings.Link4 = model.Link4; + nivoSliderSettings.AltText4 = model.AltText4; + nivoSliderSettings.Picture5Id = model.Picture5Id; + nivoSliderSettings.Text5 = model.Text5; + nivoSliderSettings.Link5 = model.Link5; + nivoSliderSettings.AltText5 = model.AltText5; + + /* We do not clear cache after each setting update. + * This behavior can increase performance because cached settings will not be cleared + * and loaded from database after each update */ + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Picture1Id, model.Picture1Id_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Text1, model.Text1_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Link1, model.Link1_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.AltText1, model.AltText1_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Picture2Id, model.Picture2Id_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Text2, model.Text2_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Link2, model.Link2_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.AltText2, model.AltText2_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Picture3Id, model.Picture3Id_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Text3, model.Text3_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Link3, model.Link3_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.AltText3, model.AltText3_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Picture4Id, model.Picture4Id_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Text4, model.Text4_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Link4, model.Link4_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.AltText4, model.AltText4_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Picture5Id, model.Picture5Id_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Text5, model.Text5_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.Link5, model.Link5_OverrideForStore, storeScope, false); + await _settingService.SaveSettingOverridablePerStoreAsync(nivoSliderSettings, x => x.AltText5, model.AltText5_OverrideForStore, storeScope, false); + + //now clear settings cache + await _settingService.ClearCacheAsync(); + + //get current picture identifiers + var currentPictureIds = new[] + { + nivoSliderSettings.Picture1Id, + nivoSliderSettings.Picture2Id, + nivoSliderSettings.Picture3Id, + nivoSliderSettings.Picture4Id, + nivoSliderSettings.Picture5Id + }; + + //delete an old picture (if deleted or updated) + foreach (var pictureId in previousPictureIds.Except(currentPictureIds)) + { + var previousPicture = await _pictureService.GetPictureByIdAsync(pictureId); + if (previousPicture != null) + await _pictureService.DeletePictureAsync(previousPicture); + } + + _notificationService.SuccessNotification(await _localizationService.GetResourceAsync("Admin.Plugins.Saved")); + + return await Configure(); + } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Infrastructure/Cache/ModelCacheEventConsumer.cs b/Nop.Plugin.Widgets.ACAgeVerification/Infrastructure/Cache/ModelCacheEventConsumer.cs new file mode 100644 index 0000000..7a42591 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Infrastructure/Cache/ModelCacheEventConsumer.cs @@ -0,0 +1,50 @@ +using Nop.Core.Caching; +using Nop.Core.Domain.Configuration; +using Nop.Core.Events; +using Nop.Services.Events; + +namespace Nop.Plugin.Widgets.ACAgeVerification.Infrastructure.Cache; + +///

+/// Model cache event consumer (used for caching of presentation layer models) +/// +public class ModelCacheEventConsumer : + IConsumer>, + IConsumer>, + IConsumer> +{ + /// + /// Key for caching + /// + /// + /// {0} : picture id + /// {1} : connection type (http/https) + /// + public static CacheKey PICTURE_URL_MODEL_KEY = new("Nop.plugins.widgets.acageverification.pictureurl-{0}-{1}", PICTURE_URL_PATTERN_KEY); + public const string PICTURE_URL_PATTERN_KEY = "Nop.plugins.widgets.acageverification"; + + protected readonly IStaticCacheManager _staticCacheManager; + + public ModelCacheEventConsumer(IStaticCacheManager staticCacheManager) + { + _staticCacheManager = staticCacheManager; + } + + /// A task that represents the asynchronous operation + public async Task HandleEventAsync(EntityInsertedEvent eventMessage) + { + await _staticCacheManager.RemoveByPrefixAsync(PICTURE_URL_PATTERN_KEY); + } + + /// A task that represents the asynchronous operation + public async Task HandleEventAsync(EntityUpdatedEvent eventMessage) + { + await _staticCacheManager.RemoveByPrefixAsync(PICTURE_URL_PATTERN_KEY); + } + + /// A task that represents the asynchronous operation + public async Task HandleEventAsync(EntityDeletedEvent eventMessage) + { + await _staticCacheManager.RemoveByPrefixAsync(PICTURE_URL_PATTERN_KEY); + } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Models/ConfigurationModel.cs b/Nop.Plugin.Widgets.ACAgeVerification/Models/ConfigurationModel.cs new file mode 100644 index 0000000..2075e57 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Models/ConfigurationModel.cs @@ -0,0 +1,80 @@ +using System.ComponentModel.DataAnnotations; +using Nop.Web.Framework.Models; +using Nop.Web.Framework.Mvc.ModelBinding; + +namespace Nop.Plugin.Widgets.ACAgeVerification.Models; + +public record ConfigurationModel : BaseNopModel +{ + public int ActiveStoreScopeConfiguration { get; set; } + + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Picture")] + [UIHint("Picture")] + public int Picture1Id { get; set; } + public bool Picture1Id_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Text")] + public string Text1 { get; set; } + public bool Text1_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Link")] + public string Link1 { get; set; } + public bool Link1_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.AltText")] + public string AltText1 { get; set; } + public bool AltText1_OverrideForStore { get; set; } + + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Picture")] + [UIHint("Picture")] + public int Picture2Id { get; set; } + public bool Picture2Id_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Text")] + public string Text2 { get; set; } + public bool Text2_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Link")] + public string Link2 { get; set; } + public bool Link2_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.AltText")] + public string AltText2 { get; set; } + public bool AltText2_OverrideForStore { get; set; } + + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Picture")] + [UIHint("Picture")] + public int Picture3Id { get; set; } + public bool Picture3Id_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Text")] + public string Text3 { get; set; } + public bool Text3_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Link")] + public string Link3 { get; set; } + public bool Link3_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.AltText")] + public string AltText3 { get; set; } + public bool AltText3_OverrideForStore { get; set; } + + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Picture")] + [UIHint("Picture")] + public int Picture4Id { get; set; } + public bool Picture4Id_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Text")] + public string Text4 { get; set; } + public bool Text4_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Link")] + public string Link4 { get; set; } + public bool Link4_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.AltText")] + public string AltText4 { get; set; } + public bool AltText4_OverrideForStore { get; set; } + + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Picture")] + [UIHint("Picture")] + public int Picture5Id { get; set; } + public bool Picture5Id_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Text")] + public string Text5 { get; set; } + public bool Text5_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.Link")] + public string Link5 { get; set; } + public bool Link5_OverrideForStore { get; set; } + [NopResourceDisplayName("Plugins.Widgets.NivoSlider.AltText")] + public string AltText5 { get; set; } + public bool AltText5_OverrideForStore { get; set; } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Models/PublicInfoModel.cs b/Nop.Plugin.Widgets.ACAgeVerification/Models/PublicInfoModel.cs new file mode 100644 index 0000000..3a5e728 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Models/PublicInfoModel.cs @@ -0,0 +1,31 @@ +using Nop.Web.Framework.Models; + +namespace Nop.Plugin.Widgets.ACAgeVerification.Models; + +public record PublicInfoModel : BaseNopModel +{ + public string Picture1Url { get; set; } + public string Text1 { get; set; } + public string Link1 { get; set; } + public string AltText1 { get; set; } + + public string Picture2Url { get; set; } + public string Text2 { get; set; } + public string Link2 { get; set; } + public string AltText2 { get; set; } + + public string Picture3Url { get; set; } + public string Text3 { get; set; } + public string Link3 { get; set; } + public string AltText3 { get; set; } + + public string Picture4Url { get; set; } + public string Text4 { get; set; } + public string Link4 { get; set; } + public string AltText4 { get; set; } + + public string Picture5Url { get; set; } + public string Text5 { get; set; } + public string Link5 { get; set; } + public string AltText5 { get; set; } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/NivoSliderPlugin.cs b/Nop.Plugin.Widgets.ACAgeVerification/NivoSliderPlugin.cs new file mode 100644 index 0000000..a111ef9 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/NivoSliderPlugin.cs @@ -0,0 +1,130 @@ +using Nop.Core; +using Nop.Core.Infrastructure; +using Nop.Plugin.Widgets.ACAgeVerification.Components; +using Nop.Services.Cms; +using Nop.Services.Configuration; +using Nop.Services.Localization; +using Nop.Services.Media; +using Nop.Services.Plugins; +using Nop.Web.Framework.Infrastructure; + +namespace Nop.Plugin.Widgets.ACAgeVerification; + +/// +/// PLugin +/// +public class NivoSliderPlugin : BasePlugin, IWidgetPlugin +{ + protected readonly ILocalizationService _localizationService; + protected readonly IPictureService _pictureService; + protected readonly ISettingService _settingService; + protected readonly IWebHelper _webHelper; + protected readonly INopFileProvider _fileProvider; + + public NivoSliderPlugin(ILocalizationService localizationService, + IPictureService pictureService, + ISettingService settingService, + IWebHelper webHelper, + INopFileProvider fileProvider) + { + _localizationService = localizationService; + _pictureService = pictureService; + _settingService = settingService; + _webHelper = webHelper; + _fileProvider = fileProvider; + } + + /// + /// Gets widget zones where this widget should be rendered + /// + /// + /// A task that represents the asynchronous operation + /// The task result contains the widget zones + /// + public Task> GetWidgetZonesAsync() + { + return Task.FromResult>(new List { PublicWidgetZones.HomepageTop }); + } + + /// + /// Gets a configuration page URL + /// + public override string GetConfigurationPageUrl() + { + return _webHelper.GetStoreLocation() + "Admin/WidgetsNivoSlider/Configure"; + } + + /// + /// Gets a name of a view component for displaying widget + /// + /// Name of the widget zone + /// View component name + public Type GetWidgetViewComponent(string widgetZone) + { + return typeof(WidgetsNivoSliderViewComponent); + } + + /// + /// Install plugin + /// + /// A task that represents the asynchronous operation + public override async Task InstallAsync() + { + //pictures + var sampleImagesPath = _fileProvider.MapPath("~/Plugins/Widgets.NivoSlider/Content/nivoslider/sample-images/"); + + //settings + var settings = new NivoSliderSettings + { + Picture1Id = (await _pictureService.InsertPictureAsync(await _fileProvider.ReadAllBytesAsync(_fileProvider.Combine(sampleImagesPath, "banner_01.webp")), MimeTypes.ImageWebp, "banner_1")).Id, + Text1 = "", + Link1 = _webHelper.GetStoreLocation(), + Picture2Id = (await _pictureService.InsertPictureAsync(await _fileProvider.ReadAllBytesAsync(_fileProvider.Combine(sampleImagesPath, "banner_02.webp")), MimeTypes.ImageWebp, "banner_2")).Id, + Text2 = "", + Link2 = _webHelper.GetStoreLocation() + //Picture3Id = _pictureService.InsertPicture(File.ReadAllBytes(_fileProvider.Combine(sampleImagesPath,"banner3.jpg")), MimeTypes.ImagePJpeg, "banner_3").Id, + //Text3 = "", + //Link3 = _webHelper.GetStoreLocation(), + }; + await _settingService.SaveSettingAsync(settings); + + await _localizationService.AddOrUpdateLocaleResourceAsync(new Dictionary + { + ["Plugins.Widgets.NivoSlider.Picture1"] = "Picture 1", + ["Plugins.Widgets.NivoSlider.Picture2"] = "Picture 2", + ["Plugins.Widgets.NivoSlider.Picture3"] = "Picture 3", + ["Plugins.Widgets.NivoSlider.Picture4"] = "Picture 4", + ["Plugins.Widgets.NivoSlider.Picture5"] = "Picture 5", + ["Plugins.Widgets.NivoSlider.Picture"] = "Picture", + ["Plugins.Widgets.NivoSlider.Picture.Hint"] = "Upload picture.", + ["Plugins.Widgets.NivoSlider.Text"] = "Comment", + ["Plugins.Widgets.NivoSlider.Text.Hint"] = "Enter comment for picture. Leave empty if you don't want to display any text.", + ["Plugins.Widgets.NivoSlider.Link"] = "URL", + ["Plugins.Widgets.NivoSlider.Link.Hint"] = "Enter URL. Leave empty if you don't want this picture to be clickable.", + ["Plugins.Widgets.NivoSlider.AltText"] = "Image alternate text", + ["Plugins.Widgets.NivoSlider.AltText.Hint"] = "Enter alternate text that will be added to image." + }); + + await base.InstallAsync(); + } + + /// + /// Uninstall plugin + /// + /// A task that represents the asynchronous operation + public override async Task UninstallAsync() + { + //settings + await _settingService.DeleteSettingAsync(); + + //locales + await _localizationService.DeleteLocaleResourcesAsync("Plugins.Widgets.NivoSlider"); + + await base.UninstallAsync(); + } + + /// + /// Gets a value indicating whether to hide this plugin on the widget list page in the admin area + /// + public bool HideInWidgetList => false; +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/NivoSliderSettings.cs b/Nop.Plugin.Widgets.ACAgeVerification/NivoSliderSettings.cs new file mode 100644 index 0000000..d23acad --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/NivoSliderSettings.cs @@ -0,0 +1,31 @@ +using Nop.Core.Configuration; + +namespace Nop.Plugin.Widgets.ACAgeVerification; + +public class NivoSliderSettings : ISettings +{ + public int Picture1Id { get; set; } + public string Text1 { get; set; } + public string Link1 { get; set; } + public string AltText1 { get; set; } + + public int Picture2Id { get; set; } + public string Text2 { get; set; } + public string Link2 { get; set; } + public string AltText2 { get; set; } + + public int Picture3Id { get; set; } + public string Text3 { get; set; } + public string Link3 { get; set; } + public string AltText3 { get; set; } + + public int Picture4Id { get; set; } + public string Text4 { get; set; } + public string Link4 { get; set; } + public string AltText4 { get; set; } + + public int Picture5Id { get; set; } + public string Text5 { get; set; } + public string Link5 { get; set; } + public string AltText5 { get; set; } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Nop.Plugin.Widgets.ACAgeVerification.csproj b/Nop.Plugin.Widgets.ACAgeVerification/Nop.Plugin.Widgets.ACAgeVerification.csproj new file mode 100644 index 0000000..6d13278 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Nop.Plugin.Widgets.ACAgeVerification.csproj @@ -0,0 +1,166 @@ + + + + net8.0 + Copyright © Aycode, Ltd + Aycode, Ltd + Aycode, Ltd + + https://www.nopcommerce.com/ + https://github.com/nopSolutions/nopCommerce + Git + ..\..\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification + $(OutputPath) + + false + enable + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + PreserveNewest + + + + + + + + + + + + + + + diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Notes.txt b/Nop.Plugin.Widgets.ACAgeVerification/Notes.txt new file mode 100644 index 0000000..0641364 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Notes.txt @@ -0,0 +1,33 @@ +Important points when developing plugins + + +- All views (cshtml files) and web.config file should have "Build action" set to "Content" and "Copy to output directory" set to "Copy if newer" + +- When you develop a new plugin from scratch, and when a new class library is added to the solution, open its .csproj file (a main project file) in any text editor and replace its content with the following one + + + + net8.0 + ..\..\Presentation\Nop.Web\Plugins\PLUGIN_OUTPUT_DIRECTORY + $(OutputPath) + + false + enable + + + + + + + + + + + + + +Replace “PLUGIN_OUTPUT_DIRECTORY” in the code above with your real plugin output directory name. + +It’s not required. But this way we can use a new ASP.NET approach to add third-party references. It was introduced in .NET Core. Furthermore, references from already referenced libraries will be loaded automatically. It’s very convenient. \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Scripts/jquery.nivo.slider.js b/Nop.Plugin.Widgets.ACAgeVerification/Scripts/jquery.nivo.slider.js new file mode 100644 index 0000000..bb36cd4 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Scripts/jquery.nivo.slider.js @@ -0,0 +1,665 @@ +/* + * jQuery Nivo Slider v3.2 + * http://nivo.dev7studios.com + * + * Copyright 2012, Dev7studios + * Free to use and abuse under the MIT license. + * http://www.opensource.org/licenses/mit-license.php + */ + +(function ($) { + var NivoSlider = function (element, options) { + // Defaults are below + var settings = $.extend({}, $.fn.nivoSlider.defaults, options); + + // Useful variables. Play carefully. + var vars = { + currentSlide: 0, + currentImage: '', + totalSlides: 0, + running: false, + paused: false, + stop: false, + controlNavEl: false + }; + + // Get this slider + var slider = $(element); + slider.data('nivo:vars', vars).addClass('nivoSlider'); + + // Find our slider children + var kids = slider.children(); + kids.each(function () { + var child = $(this); + var link = ''; + if (!child.is('img')) { + if (child.is('a')) { + child.addClass('nivo-imageLink'); + link = child; + } + child = child.find('img:first'); + } + // Get img width & height + var childWidth = (childWidth === 0) ? child.attr('width') : child.width(), + childHeight = (childHeight === 0) ? child.attr('height') : child.height(); + + if (link !== '') { + link.css('display', 'none'); + } + child.css('display', 'none'); + vars.totalSlides++; + }); + + // If randomStart + if (settings.randomStart) { + settings.startSlide = Math.floor(Math.random() * vars.totalSlides); + } + + // Set startSlide + if (settings.startSlide > 0) { + if (settings.startSlide >= vars.totalSlides) { settings.startSlide = vars.totalSlides - 1; } + vars.currentSlide = settings.startSlide; + } + + // Get initial image + if ($(kids[vars.currentSlide]).is('img')) { + vars.currentImage = $(kids[vars.currentSlide]); + } else { + vars.currentImage = $(kids[vars.currentSlide]).find('img:first'); + } + + // Show initial link + if ($(kids[vars.currentSlide]).is('a')) { + $(kids[vars.currentSlide]).css('display', 'block'); + } + + // Set first background + var sliderImg = $('').addClass('nivo-main-image'); + sliderImg + .attr("alt", vars.currentImage.attr("alt")) + .attr("src", vars.currentImage.attr("src")) + .show(); + slider.append(sliderImg); + + // Detect Window Resize + $(window).resize(function () { + slider.children('img').width(slider.width()); + sliderImg.attr('src', vars.currentImage.attr('src')); + sliderImg.stop().height('auto'); + $('.nivo-slice').remove(); + $('.nivo-box').remove(); + }); + + //Create caption + slider.append($('
')); + + // Process caption function + var processCaption = function (settings) { + var nivoCaption = $('.nivo-caption', slider); + if (vars.currentImage.attr('title') != '' && vars.currentImage.attr('title') != undefined) { + var title = vars.currentImage.attr('title'); + if (title.substr(0, 1) == '#') title = $(title).html(); + + if (nivoCaption.css('display') == 'block') { + setTimeout(function () { + nivoCaption.html(title); + }, settings.animSpeed); + } else { + nivoCaption.html(title); + nivoCaption.stop().fadeIn(settings.animSpeed); + } + } else { + nivoCaption.stop().fadeOut(settings.animSpeed); + } + } + + //Process initial caption + processCaption(settings); + + // In the words of Super Mario "let's a go!" + var timer = 0; + if (!settings.manualAdvance && kids.length > 1) { + timer = setInterval(function () { nivoRun(slider, kids, settings, false); }, settings.pauseTime); + } + + // Add Direction nav + if (settings.directionNav) { + slider.append('
'); + + $(slider).on('click', 'a.nivo-prevNav', function () { + if (vars.running) { return false; } + clearInterval(timer); + timer = ''; + vars.currentSlide -= 2; + nivoRun(slider, kids, settings, 'prev'); + }); + + $(slider).on('click', 'a.nivo-nextNav', function () { + if (vars.running) { return false; } + clearInterval(timer); + timer = ''; + nivoRun(slider, kids, settings, 'next'); + }); + } + + // Add Control nav + if (settings.controlNav) { + vars.controlNavEl = $('
'); + slider.after(vars.controlNavEl); + for (var i = 0; i < kids.length; i++) { + if (settings.controlNavThumbs) { + vars.controlNavEl.addClass('nivo-thumbs-enabled'); + var child = kids.eq(i); + if (!child.is('img')) { + child = child.find('img:first'); + } + if (child.attr('data-thumb')) vars.controlNavEl.append('' + child.attr('); + } else { + vars.controlNavEl.append('' + (i + 1) + ''); + } + } + + //Set initial active link + $('a:eq(' + vars.currentSlide + ')', vars.controlNavEl).addClass('active'); + + $('a', vars.controlNavEl).bind('click', function () { + if (vars.running) return false; + if ($(this).hasClass('active')) return false; + clearInterval(timer); + timer = ''; + sliderImg.attr('src', vars.currentImage.attr('src')); + vars.currentSlide = $(this).attr('rel') - 1; + nivoRun(slider, kids, settings, 'control'); + }); + } + + //For pauseOnHover setting + if (settings.pauseOnHover) { + slider.hover(function () { + vars.paused = true; + clearInterval(timer); + timer = ''; + }, function () { + vars.paused = false; + // Restart the timer + if (timer === '' && !settings.manualAdvance) { + timer = setInterval(function () { nivoRun(slider, kids, settings, false); }, settings.pauseTime); + } + }); + } + + // Event when Animation finishes + slider.bind('nivo:animFinished', function () { + sliderImg.attr('src', vars.currentImage.attr('src')); + vars.running = false; + // Hide child links + $(kids).each(function () { + if ($(this).is('a')) { + $(this).css('display', 'none'); + } + }); + // Show current link + if ($(kids[vars.currentSlide]).is('a')) { + $(kids[vars.currentSlide]).css('display', 'block'); + } + // Restart the timer + if (timer === '' && !vars.paused && !settings.manualAdvance) { + timer = setInterval(function () { nivoRun(slider, kids, settings, false); }, settings.pauseTime); + } + // Trigger the afterChange callback + settings.afterChange.call(this); + }); + + // Add slices for slice animations + var createSlices = function (slider, settings, vars) { + if ($(vars.currentImage).parent().is('a')) $(vars.currentImage).parent().css('display', 'block'); + $('img[src="' + vars.currentImage.attr('src') + '"]', slider).not('.nivo-main-image,.nivo-control img').width(slider.width()).css('visibility', 'hidden').show(); + var sliceHeight = ($('img[src="' + vars.currentImage.attr('src') + '"]', slider).not('.nivo-main-image,.nivo-control img').parent().is('a')) ? $('img[src="' + vars.currentImage.attr('src') + '"]', slider).not('.nivo-main-image,.nivo-control img').parent().height() : $('img[src="' + vars.currentImage.attr('src') + '"]', slider).not('.nivo-main-image,.nivo-control img').height(); + + for (var i = 0; i < settings.slices; i++) { + var sliceWidth = Math.round(slider.width() / settings.slices); + + if (i === settings.slices - 1) { + slider.append( + $('
' + vars.currentImage.attr(
').css({ + left: (sliceWidth * i) + 'px', + width: (slider.width() - (sliceWidth * i)) + 'px', + height: sliceHeight + 'px', + opacity: '0', + overflow: 'hidden' + }) + ); + } else { + slider.append( + $('
' + vars.currentImage.attr(
').css({ + left: (sliceWidth * i) + 'px', + width: sliceWidth + 'px', + height: sliceHeight + 'px', + opacity: '0', + overflow: 'hidden' + }) + ); + } + } + + $('.nivo-slice', slider).height(sliceHeight); + sliderImg.stop().animate({ + height: $(vars.currentImage).height() + }, settings.animSpeed); + }; + + // Add boxes for box animations + var createBoxes = function (slider, settings, vars) { + if ($(vars.currentImage).parent().is('a')) $(vars.currentImage).parent().css('display', 'block'); + $('img[src="' + vars.currentImage.attr('src') + '"]', slider).not('.nivo-main-image,.nivo-control img').width(slider.width()).css('visibility', 'hidden').show(); + var boxWidth = Math.round(slider.width() / settings.boxCols), + boxHeight = Math.round($('img[src="' + vars.currentImage.attr('src') + '"]', slider).not('.nivo-main-image,.nivo-control img').height() / settings.boxRows); + + + for (var rows = 0; rows < settings.boxRows; rows++) { + for (var cols = 0; cols < settings.boxCols; cols++) { + if (cols === settings.boxCols - 1) { + slider.append( + $('
' + vars.currentImage.attr('alt') + '
').css({ + opacity: 0, + left: (boxWidth * cols) + 'px', + top: (boxHeight * rows) + 'px', + width: (slider.width() - (boxWidth * cols)) + 'px' + + }) + ); + $('.nivo-box[name="' + cols + '"]', slider).height($('.nivo-box[name="' + cols + '"] img', slider).height() + 'px'); + } else { + slider.append( + $('
' + vars.currentImage.attr('alt') + '
').css({ + opacity: 0, + left: (boxWidth * cols) + 'px', + top: (boxHeight * rows) + 'px', + width: boxWidth + 'px' + }) + ); + $('.nivo-box[name="' + cols + '"]', slider).height($('.nivo-box[name="' + cols + '"] img', slider).height() + 'px'); + } + } + } + + sliderImg.stop().animate({ + height: $(vars.currentImage).height() + }, settings.animSpeed); + }; + + // Private run method + var nivoRun = function (slider, kids, settings, nudge) { + // Get our vars + var vars = slider.data('nivo:vars'); + + // Trigger the lastSlide callback + if (vars && (vars.currentSlide === vars.totalSlides - 1)) { + settings.lastSlide.call(this); + } + + // Stop + if ((!vars || vars.stop) && !nudge) { return false; } + + // Trigger the beforeChange callback + settings.beforeChange.call(this); + + // Set current background before change + if (!nudge) { + sliderImg.attr('src', vars.currentImage.attr('src')); + } else { + if (nudge === 'prev') { + sliderImg.attr('src', vars.currentImage.attr('src')); + } + if (nudge === 'next') { + sliderImg.attr('src', vars.currentImage.attr('src')); + } + } + + vars.currentSlide++; + // Trigger the slideshowEnd callback + if (vars.currentSlide === vars.totalSlides) { + vars.currentSlide = 0; + settings.slideshowEnd.call(this); + } + if (vars.currentSlide < 0) { vars.currentSlide = (vars.totalSlides - 1); } + // Set vars.currentImage + if ($(kids[vars.currentSlide]).is('img')) { + vars.currentImage = $(kids[vars.currentSlide]); + } else { + vars.currentImage = $(kids[vars.currentSlide]).find('img:first'); + } + + // Set active links + if (settings.controlNav) { + $('a', vars.controlNavEl).removeClass('active'); + $('a:eq(' + vars.currentSlide + ')', vars.controlNavEl).addClass('active'); + } + + // Process caption + processCaption(settings); + + // Remove any slices from last transition + $('.nivo-slice', slider).remove(); + + // Remove any boxes from last transition + $('.nivo-box', slider).remove(); + + var currentEffect = settings.effect, + anims = ''; + + // Generate random effect + if (settings.effect === 'random') { + anims = new Array('sliceDownRight', 'sliceDownLeft', 'sliceUpRight', 'sliceUpLeft', 'sliceUpDown', 'sliceUpDownLeft', 'fold', 'fade', + 'boxRandom', 'boxRain', 'boxRainReverse', 'boxRainGrow', 'boxRainGrowReverse'); + currentEffect = anims[Math.floor(Math.random() * (anims.length + 1))]; + if (currentEffect === undefined) { currentEffect = 'fade'; } + } + + // Run random effect from specified set (eg: effect:'fold,fade') + if (settings.effect.indexOf(',') !== -1) { + anims = settings.effect.split(','); + currentEffect = anims[Math.floor(Math.random() * (anims.length))]; + if (currentEffect === undefined) { currentEffect = 'fade'; } + } + + // Custom transition as defined by "data-transition" attribute + if (vars.currentImage.attr('data-transition')) { + currentEffect = vars.currentImage.attr('data-transition'); + } + + // Run effects + vars.running = true; + var timeBuff = 0, + i = 0, + slices = '', + firstSlice = '', + totalBoxes = '', + boxes = ''; + + if (currentEffect === 'sliceDown' || currentEffect === 'sliceDownRight' || currentEffect === 'sliceDownLeft') { + createSlices(slider, settings, vars); + timeBuff = 0; + i = 0; + slices = $('.nivo-slice', slider); + if (currentEffect === 'sliceDownLeft') { slices = $('.nivo-slice', slider)._reverse(); } + + slices.each(function () { + var slice = $(this); + slice.css({ 'top': '0px' }); + if (i === settings.slices - 1) { + setTimeout(function () { + slice.animate({ opacity: '1.0' }, settings.animSpeed, '', function () { slider.trigger('nivo:animFinished'); }); + }, (100 + timeBuff)); + } else { + setTimeout(function () { + slice.animate({ opacity: '1.0' }, settings.animSpeed); + }, (100 + timeBuff)); + } + timeBuff += 50; + i++; + }); + } else if (currentEffect === 'sliceUp' || currentEffect === 'sliceUpRight' || currentEffect === 'sliceUpLeft') { + createSlices(slider, settings, vars); + timeBuff = 0; + i = 0; + slices = $('.nivo-slice', slider); + if (currentEffect === 'sliceUpLeft') { slices = $('.nivo-slice', slider)._reverse(); } + + slices.each(function () { + var slice = $(this); + slice.css({ 'bottom': '0px' }); + if (i === settings.slices - 1) { + setTimeout(function () { + slice.animate({ opacity: '1.0' }, settings.animSpeed, '', function () { slider.trigger('nivo:animFinished'); }); + }, (100 + timeBuff)); + } else { + setTimeout(function () { + slice.animate({ opacity: '1.0' }, settings.animSpeed); + }, (100 + timeBuff)); + } + timeBuff += 50; + i++; + }); + } else if (currentEffect === 'sliceUpDown' || currentEffect === 'sliceUpDownRight' || currentEffect === 'sliceUpDownLeft') { + createSlices(slider, settings, vars); + timeBuff = 0; + i = 0; + var v = 0; + slices = $('.nivo-slice', slider); + if (currentEffect === 'sliceUpDownLeft') { slices = $('.nivo-slice', slider)._reverse(); } + + slices.each(function () { + var slice = $(this); + if (i === 0) { + slice.css('top', '0px'); + i++; + } else { + slice.css('bottom', '0px'); + i = 0; + } + + if (v === settings.slices - 1) { + setTimeout(function () { + slice.animate({ opacity: '1.0' }, settings.animSpeed, '', function () { slider.trigger('nivo:animFinished'); }); + }, (100 + timeBuff)); + } else { + setTimeout(function () { + slice.animate({ opacity: '1.0' }, settings.animSpeed); + }, (100 + timeBuff)); + } + timeBuff += 50; + v++; + }); + } else if (currentEffect === 'fold') { + createSlices(slider, settings, vars); + timeBuff = 0; + i = 0; + + $('.nivo-slice', slider).each(function () { + var slice = $(this); + var origWidth = slice.width(); + slice.css({ top: '0px', width: '0px' }); + if (i === settings.slices - 1) { + setTimeout(function () { + slice.animate({ width: origWidth, opacity: '1.0' }, settings.animSpeed, '', function () { slider.trigger('nivo:animFinished'); }); + }, (100 + timeBuff)); + } else { + setTimeout(function () { + slice.animate({ width: origWidth, opacity: '1.0' }, settings.animSpeed); + }, (100 + timeBuff)); + } + timeBuff += 50; + i++; + }); + } else if (currentEffect === 'fade') { + createSlices(slider, settings, vars); + + firstSlice = $('.nivo-slice:first', slider); + firstSlice.css({ + 'width': slider.width() + 'px' + }); + + firstSlice.animate({ opacity: '1.0' }, (settings.animSpeed * 2), '', function () { slider.trigger('nivo:animFinished'); }); + } else if (currentEffect === 'slideInRight') { + createSlices(slider, settings, vars); + + firstSlice = $('.nivo-slice:first', slider); + firstSlice.css({ + 'width': '0px', + 'opacity': '1' + }); + + firstSlice.animate({ width: slider.width() + 'px' }, (settings.animSpeed * 2), '', function () { slider.trigger('nivo:animFinished'); }); + } else if (currentEffect === 'slideInLeft') { + createSlices(slider, settings, vars); + + firstSlice = $('.nivo-slice:first', slider); + firstSlice.css({ + 'width': '0px', + 'opacity': '1', + 'left': '', + 'right': '0px' + }); + + firstSlice.animate({ width: slider.width() + 'px' }, (settings.animSpeed * 2), '', function () { + // Reset positioning + firstSlice.css({ + 'left': '0px', + 'right': '' + }); + slider.trigger('nivo:animFinished'); + }); + } else if (currentEffect === 'boxRandom') { + createBoxes(slider, settings, vars); + + totalBoxes = settings.boxCols * settings.boxRows; + i = 0; + timeBuff = 0; + + boxes = shuffle($('.nivo-box', slider)); + boxes.each(function () { + var box = $(this); + if (i === totalBoxes - 1) { + setTimeout(function () { + box.animate({ opacity: '1' }, settings.animSpeed, '', function () { slider.trigger('nivo:animFinished'); }); + }, (100 + timeBuff)); + } else { + setTimeout(function () { + box.animate({ opacity: '1' }, settings.animSpeed); + }, (100 + timeBuff)); + } + timeBuff += 20; + i++; + }); + } else if (currentEffect === 'boxRain' || currentEffect === 'boxRainReverse' || currentEffect === 'boxRainGrow' || currentEffect === 'boxRainGrowReverse') { + createBoxes(slider, settings, vars); + + totalBoxes = settings.boxCols * settings.boxRows; + i = 0; + timeBuff = 0; + + // Split boxes into 2D array + var rowIndex = 0; + var colIndex = 0; + var box2Darr = []; + box2Darr[rowIndex] = []; + boxes = $('.nivo-box', slider); + if (currentEffect === 'boxRainReverse' || currentEffect === 'boxRainGrowReverse') { + boxes = $('.nivo-box', slider)._reverse(); + } + boxes.each(function () { + box2Darr[rowIndex][colIndex] = $(this); + colIndex++; + if (colIndex === settings.boxCols) { + rowIndex++; + colIndex = 0; + box2Darr[rowIndex] = []; + } + }); + + // Run animation + for (var cols = 0; cols < (settings.boxCols * 2) ; cols++) { + var prevCol = cols; + for (var rows = 0; rows < settings.boxRows; rows++) { + if (prevCol >= 0 && prevCol < settings.boxCols) { + /* Due to some weird JS bug with loop vars + being used in setTimeout, this is wrapped + with an anonymous function call */ + (function (row, col, time, i, totalBoxes) { + var box = $(box2Darr[row][col]); + var w = box.width(); + var h = box.height(); + if (currentEffect === 'boxRainGrow' || currentEffect === 'boxRainGrowReverse') { + box.width(0).height(0); + } + if (i === totalBoxes - 1) { + setTimeout(function () { + box.animate({ opacity: '1', width: w, height: h }, settings.animSpeed / 1.3, '', function () { slider.trigger('nivo:animFinished'); }); + }, (100 + time)); + } else { + setTimeout(function () { + box.animate({ opacity: '1', width: w, height: h }, settings.animSpeed / 1.3); + }, (100 + time)); + } + })(rows, prevCol, timeBuff, i, totalBoxes); + i++; + } + prevCol--; + } + timeBuff += 100; + } + } + }; + + // Shuffle an array + var shuffle = function (arr) { + for (var j, x, i = arr.length; i; j = parseInt(Math.random() * i, 10), x = arr[--i], arr[i] = arr[j], arr[j] = x); + return arr; + }; + + // For debugging + var trace = function (msg) { + if (this.console && typeof console.log !== 'undefined') { console.log(msg); } + }; + + // Start / Stop + this.stop = function () { + if (!$(element).data('nivo:vars').stop) { + $(element).data('nivo:vars').stop = true; + trace('Stop Slider'); + } + }; + + this.start = function () { + if ($(element).data('nivo:vars').stop) { + $(element).data('nivo:vars').stop = false; + trace('Start Slider'); + } + }; + + // Trigger the afterLoad callback + settings.afterLoad.call(this); + + return this; + }; + + $.fn.nivoSlider = function (options) { + return this.each(function (key, value) { + var element = $(this); + // Return early if this element already has a plugin instance + if (element.data('nivoslider')) { return element.data('nivoslider'); } + // Pass options to plugin constructor + var nivoslider = new NivoSlider(this, options); + // Store plugin object in this element's data + element.data('nivoslider', nivoslider); + }); + }; + + //Default settings + $.fn.nivoSlider.defaults = { + effect: 'random', + slices: 15, + boxCols: 8, + boxRows: 4, + animSpeed: 500, + pauseTime: 3000, + startSlide: 0, + directionNav: true, + controlNav: true, + controlNavThumbs: false, + pauseOnHover: true, + manualAdvance: false, + prevText: 'Prev', + nextText: 'Next', + randomStart: false, + beforeChange: function () { }, + afterChange: function () { }, + slideshowEnd: function () { }, + lastSlide: function () { }, + afterLoad: function () { } + }; + + $.fn._reverse = [].reverse; + +})(jQuery); \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Views/Configure.cshtml b/Nop.Plugin.Widgets.ACAgeVerification/Views/Configure.cshtml new file mode 100644 index 0000000..e673632 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Views/Configure.cshtml @@ -0,0 +1,259 @@ +@model Nop.Plugin.Widgets.NivoSlider.Models.ConfigurationModel + +@{ + Layout = "_ConfigurePlugin"; +} + +@await Component.InvokeAsync(typeof(StoreScopeConfigurationViewComponent)) +
+
+
+
+
+
+ @T("Plugins.Widgets.NivoSlider.Picture1") +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+
+
+ @T("Plugins.Widgets.NivoSlider.Picture2") +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+
+
+ @T("Plugins.Widgets.NivoSlider.Picture3") +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+
+
+ @T("Plugins.Widgets.NivoSlider.Picture4") +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+
+
+ @T("Plugins.Widgets.NivoSlider.Picture5") +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+ + +
+
+ + +
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
\ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Views/PublicInfo.cshtml b/Nop.Plugin.Widgets.ACAgeVerification/Views/PublicInfo.cshtml new file mode 100644 index 0000000..f136de7 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Views/PublicInfo.cshtml @@ -0,0 +1,78 @@ +@model Nop.Plugin.Widgets.NivoSlider.Models.PublicInfoModel +@{ + Layout = ""; +} + + + + + +
+
+ @{ + var dataSlide1 = new ViewDataDictionary(ViewData) + { + {"pictureUrl", Model.Picture1Url}, + { "text", Model.Text1}, + { "link", Model.Link1}, + {"alttext", Model.AltText1 } + }; + + @await Html.PartialAsync("~/Plugins/Widgets.NivoSlider/Views/_PublicInfo.SliderLine.cshtml", dataSlide1) + } + + @{ + var dataSlide2 = new ViewDataDictionary(ViewData) + { + {"pictureUrl", Model.Picture2Url}, + { "text", Model.Text2}, + { "link", Model.Link2}, + {"alttext", Model.AltText2 } + }; + + @await Html.PartialAsync("~/Plugins/Widgets.NivoSlider/Views/_PublicInfo.SliderLine.cshtml", dataSlide2) + } + + @{ + var dataSlide3 = new ViewDataDictionary(ViewData) + { + {"pictureUrl", Model.Picture3Url}, + { "text", Model.Text3}, + { "link", Model.Link3}, + {"alttext", Model.AltText3 }, + { "dataTransition", "slideInLeft"} + }; + + @await Html.PartialAsync("~/Plugins/Widgets.NivoSlider/Views/_PublicInfo.SliderLine.cshtml", dataSlide3) + } + + @{ + var dataSlide4 = new ViewDataDictionary(ViewData) + { + {"pictureUrl", Model.Picture4Url}, + { "text", Model.Text4}, + { "link", Model.Link4}, + {"alttext", Model.AltText4 } + }; + + @await Html.PartialAsync("~/Plugins/Widgets.NivoSlider/Views/_PublicInfo.SliderLine.cshtml", dataSlide4) + } + + @{ + var dataSlide5 = new ViewDataDictionary(ViewData) + { + {"pictureUrl", Model.Picture5Url}, + { "text", Model.Text5}, + { "link", Model.Link5}, + {"alttext", Model.AltText5 } + }; + + @await Html.PartialAsync("~/Plugins/Widgets.NivoSlider/Views/_PublicInfo.SliderLine.cshtml", dataSlide5) + } +
+
+ \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Views/_PublicInfo.SliderLine.cshtml b/Nop.Plugin.Widgets.ACAgeVerification/Views/_PublicInfo.SliderLine.cshtml new file mode 100644 index 0000000..0e78966 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Views/_PublicInfo.SliderLine.cshtml @@ -0,0 +1,23 @@ +@model Nop.Plugin.Widgets.NivoSlider.Models.PublicInfoModel + +@{ + var pictureUrl = ViewData["pictureUrl"]?.ToString() ?? ""; + var link = ViewData["link"]?.ToString() ?? ""; + var dataTransition = ViewData["dataTransition"]?.ToString() ?? ""; + var text = ViewData["text"]?.ToString() ?? ""; + var alttext = ViewData["alttext"]?.ToString() ?? ""; + + if (!string.IsNullOrEmpty(pictureUrl)) + { + if (!string.IsNullOrEmpty(link)) + { + + @alttext + + } + else + { + @alttext + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/Views/_ViewImports.cshtml b/Nop.Plugin.Widgets.ACAgeVerification/Views/_ViewImports.cshtml new file mode 100644 index 0000000..6b42f0b --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/Views/_ViewImports.cshtml @@ -0,0 +1,9 @@ +@inherits Nop.Web.Framework.Mvc.Razor.NopRazorPage +@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers +@addTagHelper *, Nop.Web.Framework + +@using Microsoft.AspNetCore.Mvc.ViewFeatures +@using Nop.Web.Areas.Admin.Components +@using Nop.Web.Framework.UI +@using Nop.Web.Framework.Extensions +@using System.Text.Encodings.Web \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/logo.jpg b/Nop.Plugin.Widgets.ACAgeVerification/logo.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cae3ce3f17ad9ee8604dab7af6726378985e81ae GIT binary patch literal 3118 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 +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plug.BBDD4880.Up2Date b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plug.BBDD4880.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.AssemblyInfo.cs b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.AssemblyInfo.cs new file mode 100644 index 0000000..68196b6 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Aycode, Ltd")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Aycode, Ltd")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Nop.Plugin.Widgets.ACAgeVerification")] +[assembly: System.Reflection.AssemblyTitleAttribute("Nop.Plugin.Widgets.ACAgeVerification")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/nopSolutions/nopCommerce")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.AssemblyInfoInputs.cache b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.AssemblyInfoInputs.cache new file mode 100644 index 0000000..4891bac --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +00bf73c111c4e87dab8a1847c939dae910f1edfffbaeb8885eaa490699deff55 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.GeneratedMSBuildEditorConfig.editorconfig b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..530aa1e --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.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 = Nop.Plugin.Widgets.ACAgeVerification +build_property.ProjectDir = D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.ACAgeVerification\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.GlobalUsings.g.cs b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.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/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.assets.cache b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..d967546adc55b37373ceef763d79384ed52db477 GIT binary patch literal 166891 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 SfUU00H}l=6ljpPf-v0skmwpBS literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.csproj.AssemblyReference.cache b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..5531ff7adee5f3f21b2daca9348a164726380ab6 GIT binary patch literal 66673 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 G&Ho2ZOiX+L literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.csproj.CoreCompileInputs.cache b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..0ed483a --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d045837726990de98f8755d86dc18de49fda97ff1b26f4158839276f62bed49a diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.csproj.FileListAbsolute.txt b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..776a855 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.csproj.FileListAbsolute.txt @@ -0,0 +1,351 @@ +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Nop.Web.deps.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Nop.Web.runtimeconfig.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Nop.Web.runtimeconfig.dev.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Nop.Web.staticwebassets.runtime.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Nop.Web.exe +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\license.txt +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\nivo-slider.css +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\README +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\sample-images\banner_01.webp +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\sample-images\banner_02.webp +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\bar\arrows.png +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\bar\bar.css +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\bar\bullets.png +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\bar\loading.gif +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\custom\arrows.png +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\custom\bullets.png +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\custom\custom.css +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\custom\loading.gif +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\dark\arrows.png +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\dark\bullets.png +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\dark\dark.css +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\dark\loading.gif +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\default\arrows.png +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\default\bullets.png +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\default\default.css +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\default\loading.gif +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\light\arrows.png +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\light\bullets.png +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\light\light.css +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Content\nivoslider\themes\light\loading.gif +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\logo.jpg +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\plugin.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Scripts\jquery.nivo.slider.js +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Views\Configure.cshtml +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Views\PublicInfo.cshtml +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Views\_PublicInfo.SliderLine.cshtml +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Views\_ViewImports.cshtml +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Nop.Plugin.Widgets.ACAgeVerification.deps.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Nop.Plugin.Widgets.ACAgeVerification.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\Nop.Plugin.Widgets.ACAgeVerification.pdb +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Authentication.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Authorization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Components.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Components.Endpoints.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Cors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Hosting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Http.Results.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.HttpLogging.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Identity.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Metadata.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.OutputCaching.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.RateLimiting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Razor.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.RequestDecompression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Routing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.Session.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.SignalR.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.CSharp.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Caching.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Caching.Memory.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Configuration.Binder.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Configuration.CommandLine.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Configuration.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.DependencyInjection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Diagnostics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Features.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.FileProviders.Composite.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.FileProviders.Physical.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.FileSystemGlobbing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Hosting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Identity.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Localization.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Logging.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Logging.Console.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Logging.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.ObjectPool.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Options.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Extensions.WebEncoders.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.JSInterop.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Net.Http.Headers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.VisualBasic.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.VisualBasic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Win32.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\Microsoft.Win32.Registry.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\mscorlib.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\netstandard.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.AppContext.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Buffers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Collections.Concurrent.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Collections.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Collections.Immutable.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Collections.NonGeneric.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Collections.Specialized.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.ComponentModel.Annotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.ComponentModel.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.ComponentModel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.ComponentModel.EventBasedAsync.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.ComponentModel.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.ComponentModel.TypeConverter.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Console.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Data.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Data.DataSetExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Data.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Diagnostics.Contracts.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Diagnostics.Debug.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Diagnostics.DiagnosticSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Diagnostics.EventLog.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Diagnostics.FileVersionInfo.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Diagnostics.Process.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Diagnostics.StackTrace.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Diagnostics.Tools.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Diagnostics.TraceSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Diagnostics.Tracing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Drawing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Drawing.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Dynamic.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Formats.Asn1.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Formats.Tar.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Globalization.Calendars.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Globalization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Globalization.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.Compression.Brotli.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.Compression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.Compression.FileSystem.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.Compression.ZipFile.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.FileSystem.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.FileSystem.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.FileSystem.DriveInfo.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.FileSystem.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.FileSystem.Watcher.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.IsolatedStorage.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.MemoryMappedFiles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.Pipelines.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.Pipes.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.Pipes.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.IO.UnmanagedMemoryStream.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Linq.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Linq.Expressions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Linq.Parallel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Linq.Queryable.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Memory.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.Http.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.HttpListener.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.Mail.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.NameResolution.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.NetworkInformation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.Ping.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.Quic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.Requests.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.Security.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.ServicePoint.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.Sockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.WebClient.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.WebHeaderCollection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.WebProxy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.WebSockets.Client.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Net.WebSockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Numerics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Numerics.Vectors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.ObjectModel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Reflection.DispatchProxy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Reflection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Reflection.Emit.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Reflection.Emit.ILGeneration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Reflection.Emit.Lightweight.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Reflection.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Reflection.Metadata.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Reflection.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Reflection.TypeExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Resources.Reader.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Resources.ResourceManager.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Resources.Writer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.Handles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.InteropServices.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.InteropServices.JavaScript.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.Intrinsics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.Loader.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.Numerics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.Serialization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.Serialization.Formatters.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.Serialization.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.Serialization.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Runtime.Serialization.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.Claims.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.Cryptography.Algorithms.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.Cryptography.Cng.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.Cryptography.Csp.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.Cryptography.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.Cryptography.Encoding.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.Cryptography.OpenSsl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.Cryptography.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.Cryptography.X509Certificates.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.Cryptography.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.Principal.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.Principal.Windows.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Security.SecureString.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.ServiceModel.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.ServiceProcess.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Text.Encoding.CodePages.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Text.Encoding.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Text.Encoding.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Text.Encodings.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Text.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Text.RegularExpressions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Threading.Channels.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Threading.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Threading.Overlapped.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Threading.RateLimiting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Threading.Tasks.Dataflow.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Threading.Tasks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Threading.Tasks.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Threading.Tasks.Parallel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Threading.Thread.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Threading.ThreadPool.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Threading.Timer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Transactions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Transactions.Local.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.ValueTuple.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Web.HttpUtility.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Windows.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Xml.Linq.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Xml.ReaderWriter.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Xml.Serialization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Xml.XDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Xml.XmlDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Xml.XmlSerializer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Xml.XPath.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\System.Xml.XPath.XDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.ACAgeVerification\refs\WindowsBase.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.ACAgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.ACAgeVerification.csproj.AssemblyReference.cache +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.ACAgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.ACAgeVerification.GeneratedMSBuildEditorConfig.editorconfig +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.ACAgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.ACAgeVerification.AssemblyInfoInputs.cache +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.ACAgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.ACAgeVerification.AssemblyInfo.cs +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.ACAgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.ACAgeVerification.csproj.CoreCompileInputs.cache +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.ACAgeVerification\obj\Debug\net8.0\Nop.Plug.BBDD4880.Up2Date +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.ACAgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.ACAgeVerification.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.ACAgeVerification\obj\Debug\net8.0\refint\Nop.Plugin.Widgets.ACAgeVerification.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.ACAgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.ACAgeVerification.pdb +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.ACAgeVerification\obj\Debug\net8.0\ref\Nop.Plugin.Widgets.ACAgeVerification.dll diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.dll b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.ACAgeVerification.dll new file mode 100644 index 0000000000000000000000000000000000000000..d6f4b18fc76168c009a7b5cf633ae2d3b8b6fb66 GIT binary patch literal 59392 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 gjGc!4Iq%utbIu(LcLxg^M#Ipb5`e3fg?8j< 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.AssemblyInfo.cs b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.AssemblyInfo.cs new file mode 100644 index 0000000..f5dfca1 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Nop Solutions, Ltd")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Nop Solutions, Ltd")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Nop.Plugin.Widgets.NivoSlider")] +[assembly: System.Reflection.AssemblyTitleAttribute("Nop.Plugin.Widgets.NivoSlider")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/nopSolutions/nopCommerce")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.AssemblyInfoInputs.cache b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.AssemblyInfoInputs.cache new file mode 100644 index 0000000..2159fc9 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6a86273be26f9068b392b5ab1cbd4c6d45fa287ec240d2c7df6b0a0ff9da0ab7 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.GeneratedMSBuildEditorConfig.editorconfig b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..48a19b9 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.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 = Nop.Plugin.Widgets.NivoSlider +build_property.ProjectDir = D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.NivoSlider\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.GlobalUsings.g.cs b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.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/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.assets.cache b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..3553765a80eb6f7277c8d6402df7e71907cf6622 GIT binary patch literal 166891 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 Up2Huo)wTI%zWa3Yd^X?vKZKHeUjP6A literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.csproj.AssemblyReference.cache b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.NivoSlider.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..7a63aedc98e99ad8b8d8b9487207d6226c09fb75 GIT binary patch literal 66673 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 EKS8KV`~Uy| literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/project.razor.vs.bin b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/project.razor.vs.bin new file mode 100644 index 0000000000000000000000000000000000000000..eed44672e487ffa8f680d857bac60e3f0ba2ef72 GIT binary patch literal 309 zcmbQve6!reD#o`oFFP^D*U``2Kit(R#w{nasHD;@r!*}swWv6zxF|U$Ag44vGp{(t zFTX$!!qyAVOi52IDb{mzc1%wVOD)Pw%S=uz$;{7-$xq6PaY;=oO^?Y-EwRuuh$$$_ z&q_@$(JM-<$}iF@E7nWO%)41jeT#{4onCS=$T?G%`-VB|8tWM>20HK%)8q*g7;dT% Iqn~900GyF@CIA2c literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/ref/Nop.Plugin.Widgets.ACAgeVerification.dll b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/ref/Nop.Plugin.Widgets.ACAgeVerification.dll new file mode 100644 index 0000000000000000000000000000000000000000..d3aa10b17c2d9ed1f94add285c4ae1f6e2f0a4b5 GIT binary patch literal 20480 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/refint/Nop.Plugin.Widgets.ACAgeVerification.dll b/Nop.Plugin.Widgets.ACAgeVerification/obj/Debug/net8.0/refint/Nop.Plugin.Widgets.ACAgeVerification.dll new file mode 100644 index 0000000000000000000000000000000000000000..d3aa10b17c2d9ed1f94add285c4ae1f6e2f0a4b5 GIT binary patch literal 20480 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.ACAgeVerification.csproj.nuget.dgspec.json b/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.ACAgeVerification.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e0eb1f1 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.ACAgeVerification.csproj.nuget.dgspec.json @@ -0,0 +1,617 @@ +{ + "format": 1, + "restore": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.ACAgeVerification\\Nop.Plugin.Widgets.ACAgeVerification.csproj": {} + }, + "projects": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj", + "projectName": "Nop.Core", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[13.0.1, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs": { + "target": "Package", + "version": "[1.3.4, )" + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys": { + "target": "Package", + "version": "[1.2.3, )" + }, + "Azure.Identity": { + "target": "Package", + "version": "[1.11.2, )" + }, + "Humanizer": { + "target": "Package", + "version": "[2.14.1, )" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": { + "target": "Package", + "version": "[8.0.4, )" + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": { + "target": "Package", + "version": "[8.0.4, )" + }, + "Microsoft.Extensions.Caching.SqlServer": { + "target": "Package", + "version": "[8.0.4, )" + }, + "Microsoft.Extensions.Caching.StackExchangeRedis": { + "target": "Package", + "version": "[8.0.4, )" + }, + "Nito.AsyncEx.Coordination": { + "target": "Package", + "version": "[5.1.2, )" + }, + "System.IO.FileSystem.AccessControl": { + "target": "Package", + "version": "[5.0.0, )" + }, + "System.Linq.Async": { + "target": "Package", + "version": "[6.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj", + "projectName": "Nop.Data", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentMigrator": { + "target": "Package", + "version": "[5.2.0, )" + }, + "FluentMigrator.Runner": { + "target": "Package", + "version": "[5.1.0, )" + }, + "Microsoft.Data.SqlClient": { + "target": "Package", + "version": "[5.2.0, )" + }, + "MySqlConnector": { + "target": "Package", + "version": "[2.3.7, )" + }, + "Npgsql": { + "target": "Package", + "version": "[8.0.2, )" + }, + "System.Configuration.ConfigurationManager": { + "target": "Package", + "version": "[8.0.0, )" + }, + "System.Net.NameResolution": { + "target": "Package", + "version": "[4.3.0, )" + }, + "linq2db": { + "target": "Package", + "version": "[5.4.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj", + "projectName": "Nop.Services", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Azure.Storage.Blobs": { + "target": "Package", + "version": "[12.19.1, )" + }, + "ClosedXML": { + "target": "Package", + "version": "[0.102.2, )" + }, + "Google.Apis.Auth": { + "target": "Package", + "version": "[1.68.0, )" + }, + "HarfBuzzSharp.NativeAssets.Linux": { + "target": "Package", + "version": "[2.8.2.3, )" + }, + "MailKit": { + "target": "Package", + "version": "[4.5.0, )" + }, + "MaxMind.GeoIP2": { + "target": "Package", + "version": "[5.2.0, )" + }, + "Microsoft.Identity.Client": { + "target": "Package", + "version": "[4.60.3, )" + }, + "QuestPDF": { + "target": "Package", + "version": "[2022.12.15, )" + }, + "SkiaSharp": { + "target": "Package", + "version": "[2.88.8, )" + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies": { + "target": "Package", + "version": "[2.88.8, )" + }, + "Svg.Skia": { + "target": "Package", + "version": "[1.0.0.18, )" + }, + "System.Linq.Dynamic.Core": { + "target": "Package", + "version": "[1.3.12, )" + }, + "System.ServiceModel.Http": { + "target": "Package", + "version": "[8.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.ACAgeVerification\\Nop.Plugin.Widgets.ACAgeVerification.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.ACAgeVerification\\Nop.Plugin.Widgets.ACAgeVerification.csproj", + "projectName": "Nop.Plugin.Widgets.ACAgeVerification", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.ACAgeVerification\\Nop.Plugin.Widgets.ACAgeVerification.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.ACAgeVerification\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\Nop.Web.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj", + "projectName": "Nop.Web.Framework", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentValidation.AspNetCore": { + "target": "Package", + "version": "[11.3.0, )" + }, + "LigerShark.WebOptimizer.Core": { + "target": "Package", + "version": "[3.0.405, )" + }, + "WebMarkupMin.AspNetCore8": { + "target": "Package", + "version": "[2.16.0, )" + }, + "WebMarkupMin.NUglify": { + "target": "Package", + "version": "[2.16.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\Nop.Web.csproj", + "projectName": "Nop.Web", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\Nop.Web.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.ACAgeVerification.csproj.nuget.g.props b/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.ACAgeVerification.csproj.nuget.g.props new file mode 100644 index 0000000..654d59e --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.ACAgeVerification.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Ádám\.nuget\packages\;C:\Program Files\DevExpress 24.1\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.10.1 + + + + + + + + C:\Users\Ádám\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 + + \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.ACAgeVerification.csproj.nuget.g.targets b/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.ACAgeVerification.csproj.nuget.g.targets new file mode 100644 index 0000000..e3bd1ee --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.ACAgeVerification.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.NivoSlider.csproj.nuget.dgspec.json b/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.NivoSlider.csproj.nuget.dgspec.json new file mode 100644 index 0000000..a0b7e26 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.NivoSlider.csproj.nuget.dgspec.json @@ -0,0 +1,617 @@ +{ + "format": 1, + "restore": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.NivoSlider\\Nop.Plugin.Widgets.NivoSlider.csproj": {} + }, + "projects": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj", + "projectName": "Nop.Core", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[13.0.1, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs": { + "target": "Package", + "version": "[1.3.4, )" + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys": { + "target": "Package", + "version": "[1.2.3, )" + }, + "Azure.Identity": { + "target": "Package", + "version": "[1.11.2, )" + }, + "Humanizer": { + "target": "Package", + "version": "[2.14.1, )" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": { + "target": "Package", + "version": "[8.0.4, )" + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": { + "target": "Package", + "version": "[8.0.4, )" + }, + "Microsoft.Extensions.Caching.SqlServer": { + "target": "Package", + "version": "[8.0.4, )" + }, + "Microsoft.Extensions.Caching.StackExchangeRedis": { + "target": "Package", + "version": "[8.0.4, )" + }, + "Nito.AsyncEx.Coordination": { + "target": "Package", + "version": "[5.1.2, )" + }, + "System.IO.FileSystem.AccessControl": { + "target": "Package", + "version": "[5.0.0, )" + }, + "System.Linq.Async": { + "target": "Package", + "version": "[6.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj", + "projectName": "Nop.Data", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentMigrator": { + "target": "Package", + "version": "[5.2.0, )" + }, + "FluentMigrator.Runner": { + "target": "Package", + "version": "[5.1.0, )" + }, + "Microsoft.Data.SqlClient": { + "target": "Package", + "version": "[5.2.0, )" + }, + "MySqlConnector": { + "target": "Package", + "version": "[2.3.7, )" + }, + "Npgsql": { + "target": "Package", + "version": "[8.0.2, )" + }, + "System.Configuration.ConfigurationManager": { + "target": "Package", + "version": "[8.0.0, )" + }, + "System.Net.NameResolution": { + "target": "Package", + "version": "[4.3.0, )" + }, + "linq2db": { + "target": "Package", + "version": "[5.4.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj", + "projectName": "Nop.Services", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Azure.Storage.Blobs": { + "target": "Package", + "version": "[12.19.1, )" + }, + "ClosedXML": { + "target": "Package", + "version": "[0.102.2, )" + }, + "Google.Apis.Auth": { + "target": "Package", + "version": "[1.68.0, )" + }, + "HarfBuzzSharp.NativeAssets.Linux": { + "target": "Package", + "version": "[2.8.2.3, )" + }, + "MailKit": { + "target": "Package", + "version": "[4.5.0, )" + }, + "MaxMind.GeoIP2": { + "target": "Package", + "version": "[5.2.0, )" + }, + "Microsoft.Identity.Client": { + "target": "Package", + "version": "[4.60.3, )" + }, + "QuestPDF": { + "target": "Package", + "version": "[2022.12.15, )" + }, + "SkiaSharp": { + "target": "Package", + "version": "[2.88.8, )" + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies": { + "target": "Package", + "version": "[2.88.8, )" + }, + "Svg.Skia": { + "target": "Package", + "version": "[1.0.0.18, )" + }, + "System.Linq.Dynamic.Core": { + "target": "Package", + "version": "[1.3.12, )" + }, + "System.ServiceModel.Http": { + "target": "Package", + "version": "[8.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.NivoSlider\\Nop.Plugin.Widgets.NivoSlider.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.NivoSlider\\Nop.Plugin.Widgets.NivoSlider.csproj", + "projectName": "Nop.Plugin.Widgets.NivoSlider", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.NivoSlider\\Nop.Plugin.Widgets.NivoSlider.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.NivoSlider\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\Nop.Web.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj", + "projectName": "Nop.Web.Framework", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentValidation.AspNetCore": { + "target": "Package", + "version": "[11.3.0, )" + }, + "LigerShark.WebOptimizer.Core": { + "target": "Package", + "version": "[3.0.405, )" + }, + "WebMarkupMin.AspNetCore8": { + "target": "Package", + "version": "[2.16.0, )" + }, + "WebMarkupMin.NUglify": { + "target": "Package", + "version": "[2.16.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\Nop.Web.csproj", + "projectName": "Nop.Web", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\Nop.Web.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.NivoSlider.csproj.nuget.g.props b/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.NivoSlider.csproj.nuget.g.props new file mode 100644 index 0000000..654d59e --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.NivoSlider.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Ádám\.nuget\packages\;C:\Program Files\DevExpress 24.1\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.10.1 + + + + + + + + C:\Users\Ádám\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 + + \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.NivoSlider.csproj.nuget.g.targets b/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.NivoSlider.csproj.nuget.g.targets new file mode 100644 index 0000000..e3bd1ee --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/Nop.Plugin.Widgets.NivoSlider.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/project.assets.json b/Nop.Plugin.Widgets.ACAgeVerification/obj/project.assets.json new file mode 100644 index 0000000..b900435 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/project.assets.json @@ -0,0 +1,13041 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "AdvancedStringBuilder/0.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "related": ".xml" + } + } + }, + "Autofac/8.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "7.0.2" + }, + "compile": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + } + }, + "Autofac.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "dependencies": { + "Autofac": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "AutoMapper/13.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + } + }, + "Azure.Core/1.38.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.ClientModel": "1.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.3.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.38.0", + "Azure.Storage.Blobs": "12.16.0", + "Microsoft.AspNetCore.DataProtection": "3.1.32" + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "related": ".xml" + } + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.2.3": { + "type": "package", + "dependencies": { + "Azure.Core": "1.37.0", + "Azure.Security.KeyVault.Keys": "4.2.0", + "Microsoft.AspNetCore.DataProtection": "3.1.32" + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "related": ".xml" + } + } + }, + "Azure.Identity/1.11.2": { + "type": "package", + "dependencies": { + "Azure.Core": "1.38.0", + "Microsoft.Identity.Client": "4.60.3", + "Microsoft.Identity.Client.Extensions.Msal": "4.60.3", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + } + }, + "Azure.Security.KeyVault.Keys/4.2.0": { + "type": "package", + "dependencies": { + "Azure.Core": "1.15.0", + "System.Memory": "4.5.4", + "System.Text.Json": "4.6.0", + "System.Threading.Tasks.Extensions": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "related": ".xml" + } + } + }, + "Azure.Storage.Blobs/12.19.1": { + "type": "package", + "dependencies": { + "Azure.Storage.Common": "12.18.1", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Azure.Storage.Blobs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Storage.Blobs.dll": { + "related": ".xml" + } + } + }, + "Azure.Storage.Common/12.18.1": { + "type": "package", + "dependencies": { + "Azure.Core": "1.36.0", + "System.IO.Hashing": "6.0.0" + }, + "compile": { + "lib/net6.0/Azure.Storage.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Storage.Common.dll": { + "related": ".xml" + } + } + }, + "BouncyCastle.Cryptography/2.3.0": { + "type": "package", + "compile": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + } + }, + "ClosedXML/0.102.2": { + "type": "package", + "dependencies": { + "DocumentFormat.OpenXml": "[2.16.0, 3.0.0)", + "ExcelNumberFormat": "1.1.0", + "SixLabors.Fonts": "1.0.0", + "System.IO.Packaging": "6.0.0", + "System.Net.Http": "4.3.4", + "System.Text.RegularExpressions": "4.3.1", + "XLParser": "1.5.2" + }, + "compile": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml/2.16.0": { + "type": "package", + "dependencies": { + "System.IO.Packaging": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + } + }, + "ExcelNumberFormat/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + } + }, + "ExCSS/4.2.3": { + "type": "package", + "compile": { + "lib/net7.0/ExCSS.dll": {} + }, + "runtime": { + "lib/net7.0/ExCSS.dll": {} + } + }, + "FirebirdSql.Data.FirebirdClient/10.0.0": { + "type": "package", + "compile": { + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll": {} + }, + "runtime": { + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll": {} + } + }, + "FluentMigrator/5.2.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.2.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Abstractions/5.2.0": { + "type": "package", + "dependencies": { + "System.ComponentModel.Annotations": "5.0.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll": { + "locale": "de-DE" + } + } + }, + "FluentMigrator.Extensions.MySql/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Oracle/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Postgres/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Snowflake/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.SqlServer/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Runner.Core": "5.1.0", + "FluentMigrator.Runner.Db2": "5.1.0", + "FluentMigrator.Runner.Firebird": "5.1.0", + "FluentMigrator.Runner.Hana": "5.1.0", + "FluentMigrator.Runner.MySql": "5.1.0", + "FluentMigrator.Runner.Oracle": "5.1.0", + "FluentMigrator.Runner.Postgres": "5.1.0", + "FluentMigrator.Runner.Redshift": "5.1.0", + "FluentMigrator.Runner.SQLite": "5.1.0", + "FluentMigrator.Runner.Snowflake": "5.1.0", + "FluentMigrator.Runner.SqlServer": "5.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Core/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Abstractions": "5.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Db2/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Firebird/5.1.0": { + "type": "package", + "dependencies": { + "FirebirdSql.Data.FirebirdClient": "10.0.0", + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Hana/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.MySql/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.MySql": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Oracle/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.Oracle": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Postgres/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.Postgres": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Redshift/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Snowflake/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Extensions.Snowflake": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.SQLite/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.SqlServer/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.SqlServer": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0", + "Microsoft.Data.SqlClient": "5.1.4" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentValidation/11.5.1": { + "type": "package", + "compile": { + "lib/net7.0/FluentValidation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/FluentValidation.dll": { + "related": ".xml" + } + } + }, + "FluentValidation.AspNetCore/11.3.0": { + "type": "package", + "dependencies": { + "FluentValidation": "11.5.1", + "FluentValidation.DependencyInjectionExtensions": "11.5.1" + }, + "compile": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.5.1": { + "type": "package", + "dependencies": { + "FluentValidation": "11.5.1", + "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + } + }, + "Google.Apis/1.68.0": { + "type": "package", + "dependencies": { + "Google.Apis.Core": "1.68.0" + }, + "compile": { + "lib/net6.0/Google.Apis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.dll": { + "related": ".pdb;.xml" + } + } + }, + "Google.Apis.Auth/1.68.0": { + "type": "package", + "dependencies": { + "Google.Apis": "1.68.0", + "Google.Apis.Core": "1.68.0", + "System.Management": "7.0.2" + }, + "compile": { + "lib/net6.0/Google.Apis.Auth.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.Auth.dll": { + "related": ".pdb;.xml" + } + } + }, + "Google.Apis.Core/1.68.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net6.0/Google.Apis.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp/7.3.0.1": { + "type": "package", + "dependencies": { + "HarfBuzzSharp.NativeAssets.Win32": "7.3.0.1", + "HarfBuzzSharp.NativeAssets.macOS": "7.3.0.1" + }, + "compile": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp.NativeAssets.Linux/2.8.2.3": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "2.8.2.3" + }, + "compile": { + "lib/net5.0/_._": {} + }, + "runtime": { + "lib/net5.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libHarfBuzzSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Humanizer/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core.af": "2.14.1", + "Humanizer.Core.ar": "2.14.1", + "Humanizer.Core.az": "2.14.1", + "Humanizer.Core.bg": "2.14.1", + "Humanizer.Core.bn-BD": "2.14.1", + "Humanizer.Core.cs": "2.14.1", + "Humanizer.Core.da": "2.14.1", + "Humanizer.Core.de": "2.14.1", + "Humanizer.Core.el": "2.14.1", + "Humanizer.Core.es": "2.14.1", + "Humanizer.Core.fa": "2.14.1", + "Humanizer.Core.fi-FI": "2.14.1", + "Humanizer.Core.fr": "2.14.1", + "Humanizer.Core.fr-BE": "2.14.1", + "Humanizer.Core.he": "2.14.1", + "Humanizer.Core.hr": "2.14.1", + "Humanizer.Core.hu": "2.14.1", + "Humanizer.Core.hy": "2.14.1", + "Humanizer.Core.id": "2.14.1", + "Humanizer.Core.is": "2.14.1", + "Humanizer.Core.it": "2.14.1", + "Humanizer.Core.ja": "2.14.1", + "Humanizer.Core.ko-KR": "2.14.1", + "Humanizer.Core.ku": "2.14.1", + "Humanizer.Core.lv": "2.14.1", + "Humanizer.Core.ms-MY": "2.14.1", + "Humanizer.Core.mt": "2.14.1", + "Humanizer.Core.nb": "2.14.1", + "Humanizer.Core.nb-NO": "2.14.1", + "Humanizer.Core.nl": "2.14.1", + "Humanizer.Core.pl": "2.14.1", + "Humanizer.Core.pt": "2.14.1", + "Humanizer.Core.ro": "2.14.1", + "Humanizer.Core.ru": "2.14.1", + "Humanizer.Core.sk": "2.14.1", + "Humanizer.Core.sl": "2.14.1", + "Humanizer.Core.sr": "2.14.1", + "Humanizer.Core.sr-Latn": "2.14.1", + "Humanizer.Core.sv": "2.14.1", + "Humanizer.Core.th-TH": "2.14.1", + "Humanizer.Core.tr": "2.14.1", + "Humanizer.Core.uk": "2.14.1", + "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", + "Humanizer.Core.uz-Latn-UZ": "2.14.1", + "Humanizer.Core.vi": "2.14.1", + "Humanizer.Core.zh-CN": "2.14.1", + "Humanizer.Core.zh-Hans": "2.14.1", + "Humanizer.Core.zh-Hant": "2.14.1" + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Humanizer.Core.af/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/af/Humanizer.resources.dll": { + "locale": "af" + } + } + }, + "Humanizer.Core.ar/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ar/Humanizer.resources.dll": { + "locale": "ar" + } + } + }, + "Humanizer.Core.az/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/az/Humanizer.resources.dll": { + "locale": "az" + } + } + }, + "Humanizer.Core.bg/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bg/Humanizer.resources.dll": { + "locale": "bg" + } + } + }, + "Humanizer.Core.bn-BD/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bn-BD/Humanizer.resources.dll": { + "locale": "bn-BD" + } + } + }, + "Humanizer.Core.cs/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/cs/Humanizer.resources.dll": { + "locale": "cs" + } + } + }, + "Humanizer.Core.da/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/da/Humanizer.resources.dll": { + "locale": "da" + } + } + }, + "Humanizer.Core.de/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/de/Humanizer.resources.dll": { + "locale": "de" + } + } + }, + "Humanizer.Core.el/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/el/Humanizer.resources.dll": { + "locale": "el" + } + } + }, + "Humanizer.Core.es/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/es/Humanizer.resources.dll": { + "locale": "es" + } + } + }, + "Humanizer.Core.fa/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fa/Humanizer.resources.dll": { + "locale": "fa" + } + } + }, + "Humanizer.Core.fi-FI/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fi-FI/Humanizer.resources.dll": { + "locale": "fi-FI" + } + } + }, + "Humanizer.Core.fr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr/Humanizer.resources.dll": { + "locale": "fr" + } + } + }, + "Humanizer.Core.fr-BE/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr-BE/Humanizer.resources.dll": { + "locale": "fr-BE" + } + } + }, + "Humanizer.Core.he/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/he/Humanizer.resources.dll": { + "locale": "he" + } + } + }, + "Humanizer.Core.hr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hr/Humanizer.resources.dll": { + "locale": "hr" + } + } + }, + "Humanizer.Core.hu/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hu/Humanizer.resources.dll": { + "locale": "hu" + } + } + }, + "Humanizer.Core.hy/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hy/Humanizer.resources.dll": { + "locale": "hy" + } + } + }, + "Humanizer.Core.id/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/id/Humanizer.resources.dll": { + "locale": "id" + } + } + }, + "Humanizer.Core.is/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/is/Humanizer.resources.dll": { + "locale": "is" + } + } + }, + "Humanizer.Core.it/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/it/Humanizer.resources.dll": { + "locale": "it" + } + } + }, + "Humanizer.Core.ja/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ja/Humanizer.resources.dll": { + "locale": "ja" + } + } + }, + "Humanizer.Core.ko-KR/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { + "locale": "ko-KR" + } + } + }, + "Humanizer.Core.ku/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ku/Humanizer.resources.dll": { + "locale": "ku" + } + } + }, + "Humanizer.Core.lv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/lv/Humanizer.resources.dll": { + "locale": "lv" + } + } + }, + "Humanizer.Core.ms-MY/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { + "locale": "ms-MY" + } + } + }, + "Humanizer.Core.mt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/mt/Humanizer.resources.dll": { + "locale": "mt" + } + } + }, + "Humanizer.Core.nb/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb/Humanizer.resources.dll": { + "locale": "nb" + } + } + }, + "Humanizer.Core.nb-NO/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb-NO/Humanizer.resources.dll": { + "locale": "nb-NO" + } + } + }, + "Humanizer.Core.nl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nl/Humanizer.resources.dll": { + "locale": "nl" + } + } + }, + "Humanizer.Core.pl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pl/Humanizer.resources.dll": { + "locale": "pl" + } + } + }, + "Humanizer.Core.pt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pt/Humanizer.resources.dll": { + "locale": "pt" + } + } + }, + "Humanizer.Core.ro/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ro/Humanizer.resources.dll": { + "locale": "ro" + } + } + }, + "Humanizer.Core.ru/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ru/Humanizer.resources.dll": { + "locale": "ru" + } + } + }, + "Humanizer.Core.sk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sk/Humanizer.resources.dll": { + "locale": "sk" + } + } + }, + "Humanizer.Core.sl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sl/Humanizer.resources.dll": { + "locale": "sl" + } + } + }, + "Humanizer.Core.sr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr/Humanizer.resources.dll": { + "locale": "sr" + } + } + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr-Latn/Humanizer.resources.dll": { + "locale": "sr-Latn" + } + } + }, + "Humanizer.Core.sv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sv/Humanizer.resources.dll": { + "locale": "sv" + } + } + }, + "Humanizer.Core.th-TH/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { + "locale": "th-TH" + } + } + }, + "Humanizer.Core.tr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/tr/Humanizer.resources.dll": { + "locale": "tr" + } + } + }, + "Humanizer.Core.uk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uk/Humanizer.resources.dll": { + "locale": "uk" + } + } + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { + "locale": "uz-Cyrl-UZ" + } + } + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { + "locale": "uz-Latn-UZ" + } + } + }, + "Humanizer.Core.vi/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/vi/Humanizer.resources.dll": { + "locale": "vi" + } + } + }, + "Humanizer.Core.zh-CN/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-CN/Humanizer.resources.dll": { + "locale": "zh-CN" + } + } + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hans/Humanizer.resources.dll": { + "locale": "zh-Hans" + } + } + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hant/Humanizer.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Irony.NetCore/1.0.11": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Runtime.Numerics": "4.3.0" + }, + "compile": { + "lib/netstandard1.6/Irony.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Irony.dll": {} + } + }, + "LigerShark.WebOptimizer.Core/3.0.405": { + "type": "package", + "dependencies": { + "NUglify": "1.20.7", + "System.Text.Json": "5.0.2" + }, + "compile": { + "lib/netcoreapp3.0/WebOptimizer.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/WebOptimizer.Core.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "build/_._": {} + } + }, + "linq2db/5.4.1": { + "type": "package", + "compile": { + "lib/net6.0/linq2db.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/linq2db.dll": { + "related": ".xml" + } + } + }, + "MailKit/4.5.0": { + "type": "package", + "dependencies": { + "MimeKit": "4.5.0" + }, + "compile": { + "lib/net8.0/MailKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/MailKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + } + }, + "MaxMind.Db/4.1.0": { + "type": "package", + "compile": { + "lib/net8.0/MaxMind.Db.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MaxMind.Db.dll": { + "related": ".xml" + } + } + }, + "MaxMind.GeoIP2/5.2.0": { + "type": "package", + "dependencies": { + "MaxMind.Db": "4.1.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/MaxMind.GeoIP2.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MaxMind.GeoIP2.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.32": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.DataProtection/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "3.1.32", + "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.32", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.32", + "Microsoft.Extensions.Logging.Abstractions": "3.1.32", + "Microsoft.Extensions.Options": "3.1.32", + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Cryptography.Xml": "4.7.1" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.32": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.JsonPatch/8.0.4": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.4": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "8.0.4", + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.0", + "Microsoft.CodeAnalysis.Razor": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/8.0.4": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "6.0.0", + "Microsoft.CodeAnalysis.Razor": "6.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.0.0]" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Razor/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.0.0", + "Microsoft.CodeAnalysis.Common": "4.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/5.2.0": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.3", + "Microsoft.Data.SqlClient.SNI.runtime": "5.2.0", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Runtime.Caching": "8.0.0" + }, + "compile": { + "ref/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hant" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.SqlServer/8.0.4": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.2", + "Microsoft.Data.SqlClient": "4.0.5", + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/8.0.4": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Options": "8.0.2", + "StackExchange.Redis": "2.7.27" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.32" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.32", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32", + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.32", + "Microsoft.Extensions.Logging.Abstractions": "3.1.32" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.ObjectPool/6.0.16": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Identity.Client/4.60.3": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.60.3": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.60.3", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.35.0", + "System.IdentityModel.Tokens.Jwt": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "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.SqlServer.Server/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.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.3/Microsoft.Win32.Primitives.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MimeKit/4.5.0": { + "type": "package", + "dependencies": { + "BouncyCastle.Cryptography": "2.3.0", + "System.Security.Cryptography.Pkcs": "8.0.0" + }, + "compile": { + "lib/net8.0/MimeKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/MimeKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + } + }, + "MySqlConnector/2.3.7": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.1" + }, + "compile": { + "lib/net8.0/MySqlConnector.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MySqlConnector.dll": { + "related": ".xml" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + } + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "type": "package", + "dependencies": { + "Nito.AsyncEx.Tasks": "5.1.2", + "Nito.Collections.Deque": "1.1.1" + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "related": ".xml" + } + } + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "type": "package", + "dependencies": { + "Nito.Disposables": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "related": ".xml" + } + } + }, + "Nito.Collections.Deque/1.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "related": ".xml" + } + } + }, + "Nito.Disposables/2.2.1": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.7.1" + }, + "compile": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "related": ".xml" + } + } + }, + "Npgsql/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "NUglify/1.21.4": { + "type": "package", + "compile": { + "lib/net5.0/NUglify.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/NUglify.dll": { + "related": ".xml" + } + } + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "5.0.1" + }, + "compile": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + } + }, + "QuestPDF/2022.12.15": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.7", + "SkiaSharp.HarfBuzz": "2.88.7" + }, + "compile": { + "lib/net8.0/QuestPDF.dll": {} + }, + "runtime": { + "lib/net8.0/QuestPDF.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "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/_._": {} + } + }, + "runtime.native.System.IO.Compression/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/_._": {} + } + }, + "runtime.native.System.Net.Http/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/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "ShimSkiaSharp/1.0.0.18": { + "type": "package", + "compile": { + "lib/net8.0/ShimSkiaSharp.dll": {} + }, + "runtime": { + "lib/net8.0/ShimSkiaSharp.dll": {} + } + }, + "SixLabors.Fonts/1.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + } + }, + "SkiaSharp/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.8", + "SkiaSharp.NativeAssets.macOS": "2.88.8" + }, + "compile": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.HarfBuzz/2.88.7": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "7.3.0.1", + "SkiaSharp": "2.88.7" + }, + "compile": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.8" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "StackExchange.Redis/2.7.27": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Pipelines.Sockets.Unofficial": "2.2.8" + }, + "compile": { + "lib/net6.0/StackExchange.Redis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/StackExchange.Redis.dll": { + "related": ".xml" + } + } + }, + "Svg.Custom/1.0.0.18": { + "type": "package", + "dependencies": { + "ExCSS": "4.2.3" + }, + "compile": { + "lib/net8.0/Svg.Custom.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Custom.dll": {} + } + }, + "Svg.Model/1.0.0.18": { + "type": "package", + "dependencies": { + "ShimSkiaSharp": "1.0.0.18", + "Svg.Custom": "1.0.0.18" + }, + "compile": { + "lib/net8.0/Svg.Model.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Model.dll": {} + } + }, + "Svg.Skia/1.0.0.18": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.6", + "SkiaSharp.HarfBuzz": "2.88.6", + "Svg.Custom": "1.0.0.18", + "Svg.Model": "1.0.0.18" + }, + "compile": { + "lib/net8.0/Svg.Skia.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Skia.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.ClientModel/1.0.0": { + "type": "package", + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + } + }, + "System.CodeDom/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Collections/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/System.Collections.dll": { + "related": ".xml" + } + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/8.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "8.0.0", + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Debug/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/System.Diagnostics.Debug.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/7.0.2": { + "type": "package", + "compile": { + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.EventLog/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/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/System.Diagnostics.Tools.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tracing/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/System.Diagnostics.Tracing.dll": { + "related": ".xml" + } + } + }, + "System.Formats.Asn1/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "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/System.Globalization.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "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/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Hashing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Packaging/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Pipelines/5.0.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Async/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Linq.Async.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Linq.Async.dll": { + "related": ".xml" + } + } + }, + "System.Linq.Dynamic.Core/1.3.12": { + "type": "package", + "compile": { + "lib/net8.0/System.Linq.Dynamic.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/System.Linq.Dynamic.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Management/7.0.2": { + "type": "package", + "dependencies": { + "System.CodeDom": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + } + }, + "System.Net.Http/4.3.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "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/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "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/System.Reflection.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "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/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "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/System.Resources.ResourceManager.dll": { + "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.Caching/8.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "8.0.0" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "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/System.Runtime.Extensions.dll": { + "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/System.Runtime.Handles.dll": { + "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.dll": {} + } + }, + "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.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Xml/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.1" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Http/8.0.0": { + "type": "package", + "dependencies": { + "System.ServiceModel.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/net8.0/cs/System.ServiceModel.Http.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/System.ServiceModel.Http.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/System.ServiceModel.Http.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/System.ServiceModel.Http.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/System.ServiceModel.Http.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/System.ServiceModel.Http.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/System.ServiceModel.Http.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/System.ServiceModel.Http.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/System.ServiceModel.Http.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/System.ServiceModel.Http.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/System.ServiceModel.Http.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/System.ServiceModel.Http.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/System.ServiceModel.Http.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.ServiceModel.Primitives/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ObjectPool": "6.0.16", + "System.Security.Cryptography.Xml": "6.0.1" + }, + "compile": { + "ref/net8.0/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/net8.0/System.ServiceModel.Primitives.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/net8.0/cs/System.ServiceModel.Primitives.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/System.ServiceModel.Primitives.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/System.ServiceModel.Primitives.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/System.ServiceModel.Primitives.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/System.ServiceModel.Primitives.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/System.ServiceModel.Primitives.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/System.ServiceModel.Primitives.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/System.ServiceModel.Primitives.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/System.ServiceModel.Primitives.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/System.ServiceModel.Primitives.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/System.ServiceModel.Primitives.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/System.ServiceModel.Primitives.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/System.ServiceModel.Primitives.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "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/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/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" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + }, + "System.Text.RegularExpressions/4.3.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.1" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": { + "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/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.Timer/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.2/System.Threading.Timer.dll": { + "related": ".xml" + } + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "WebMarkupMin.AspNet.Common/2.16.0": { + "type": "package", + "dependencies": { + "WebMarkupMin.Core": "2.16.0" + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll": { + "related": ".xml" + } + } + }, + "WebMarkupMin.AspNetCore8/2.16.0": { + "type": "package", + "dependencies": { + "WebMarkupMin.AspNet.Common": "2.16.0" + }, + "compile": { + "lib/net8.0/WebMarkupMin.AspNetCore8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/WebMarkupMin.AspNetCore8.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "WebMarkupMin.Core/2.16.0": { + "type": "package", + "dependencies": { + "AdvancedStringBuilder": "0.1.1" + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "related": ".xml" + } + } + }, + "WebMarkupMin.NUglify/2.16.0": { + "type": "package", + "dependencies": { + "NUglify": "1.21.4", + "WebMarkupMin.Core": "2.16.0" + }, + "compile": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "related": ".xml" + } + } + }, + "XLParser/1.5.2": { + "type": "package", + "dependencies": { + "Irony.NetCore": "1.0.11", + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.6/XLParser.dll": {} + }, + "runtime": { + "lib/netstandard1.6/XLParser.dll": {} + } + }, + "Nop.Core/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "AutoMapper": "13.0.1", + "Autofac.Extensions.DependencyInjection": "9.0.0", + "Azure.Extensions.AspNetCore.DataProtection.Blobs": "1.3.4", + "Azure.Extensions.AspNetCore.DataProtection.Keys": "1.2.3", + "Azure.Identity": "1.11.2", + "Humanizer": "2.14.1", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "8.0.4", + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "8.0.4", + "Microsoft.Extensions.Caching.SqlServer": "8.0.4", + "Microsoft.Extensions.Caching.StackExchangeRedis": "8.0.4", + "Nito.AsyncEx.Coordination": "5.1.2", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Linq.Async": "6.0.1" + }, + "compile": { + "bin/placeholder/Nop.Core.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Core.dll": {} + } + }, + "Nop.Data/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "FluentMigrator": "5.2.0", + "FluentMigrator.Runner": "5.1.0", + "Microsoft.Data.SqlClient": "5.2.0", + "MySqlConnector": "2.3.7", + "Nop.Core": "4.70.0", + "Npgsql": "8.0.2", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Net.NameResolution": "4.3.0", + "linq2db": "5.4.1" + }, + "compile": { + "bin/placeholder/Nop.Data.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Data.dll": {} + } + }, + "Nop.Services/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Azure.Storage.Blobs": "12.19.1", + "ClosedXML": "0.102.2", + "Google.Apis.Auth": "1.68.0", + "HarfBuzzSharp.NativeAssets.Linux": "2.8.2.3", + "MailKit": "4.5.0", + "MaxMind.GeoIP2": "5.2.0", + "Microsoft.Identity.Client": "4.60.3", + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "QuestPDF": "2022.12.15", + "SkiaSharp": "2.88.8", + "SkiaSharp.NativeAssets.Linux.NoDependencies": "2.88.8", + "Svg.Skia": "1.0.0.18", + "System.Linq.Dynamic.Core": "1.3.12", + "System.ServiceModel.Http": "8.0.0" + }, + "compile": { + "bin/placeholder/Nop.Services.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Services.dll": {} + } + }, + "Nop.Web/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "Nop.Services": "4.70.0", + "Nop.Web.Framework": "4.70.0" + }, + "compile": { + "bin/placeholder/Nop.Web.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Web.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Nop.Web.Framework/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "FluentValidation.AspNetCore": "11.3.0", + "LigerShark.WebOptimizer.Core": "3.0.405", + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "Nop.Services": "4.70.0", + "WebMarkupMin.AspNetCore8": "2.16.0", + "WebMarkupMin.NUglify": "2.16.0" + }, + "compile": { + "bin/placeholder/Nop.Web.Framework.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Web.Framework.dll": {} + } + } + } + }, + "libraries": { + "AdvancedStringBuilder/0.1.1": { + "sha512": "32IrlspOA59ewotQ4tlKP27QhKxMKGB7oncqlwVHn/hAz+j/r3HvLr6/W9ni9Mnyktlcg6kt7QZS8rEgur1+4Q==", + "type": "package", + "path": "advancedstringbuilder/0.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "advancedstringbuilder.0.1.1.nupkg.sha512", + "advancedstringbuilder.nuspec", + "icon.png", + "lib/net40-client/AdvancedStringBuilder.dll", + "lib/net40-client/AdvancedStringBuilder.xml", + "lib/net45/AdvancedStringBuilder.dll", + "lib/net45/AdvancedStringBuilder.xml", + "lib/netstandard1.0/AdvancedStringBuilder.dll", + "lib/netstandard1.0/AdvancedStringBuilder.xml", + "lib/netstandard2.0/AdvancedStringBuilder.dll", + "lib/netstandard2.0/AdvancedStringBuilder.xml", + "readme.txt" + ] + }, + "Autofac/8.0.0": { + "sha512": "qxVqJcl3fixxa5aZc9TmIuYTwooI9GCL5RzfUiTZtTlbAF3NcWz7bPeEyJEAyS/0qGhSyGnXeku2eiu/7L+3qw==", + "type": "package", + "path": "autofac/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.8.0.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net6.0/Autofac.dll", + "lib/net6.0/Autofac.xml", + "lib/net7.0/Autofac.dll", + "lib/net7.0/Autofac.xml", + "lib/net8.0/Autofac.dll", + "lib/net8.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/9.0.0": { + "sha512": "tf+//4MBola256qaaVQqQ6tx2R57S8A8BFekRWNpHkpSFzRBPkU+/fEDUSrCjqldK/B2zRoDbsMcQmYy3PYGWg==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net6.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net7.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net7.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net8.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "AutoMapper/13.0.1": { + "sha512": "/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "type": "package", + "path": "automapper/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.13.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/net6.0/AutoMapper.dll", + "lib/net6.0/AutoMapper.xml" + ] + }, + "Azure.Core/1.38.0": { + "sha512": "IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==", + "type": "package", + "path": "azure.core/1.38.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.core.1.38.0.nupkg.sha512", + "azure.core.nuspec", + "azureicon.png", + "lib/net461/Azure.Core.dll", + "lib/net461/Azure.Core.xml", + "lib/net472/Azure.Core.dll", + "lib/net472/Azure.Core.xml", + "lib/net6.0/Azure.Core.dll", + "lib/net6.0/Azure.Core.xml", + "lib/netstandard2.0/Azure.Core.dll", + "lib/netstandard2.0/Azure.Core.xml" + ] + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.3.4": { + "sha512": "zS+x0MpUMSbvZD598lwAoax+ohIeSAvGlXpT71iP7FFmMZ+Tjz/8hx+jZH/RbV2cJYTYbux8XFDll7LMPuz46g==", + "type": "package", + "path": "azure.extensions.aspnetcore.dataprotection.blobs/1.3.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.extensions.aspnetcore.dataprotection.blobs.1.3.4.nupkg.sha512", + "azure.extensions.aspnetcore.dataprotection.blobs.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.xml" + ] + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.2.3": { + "sha512": "F797bJFRvAP/LAsApXc9cIrg+1/3hZ09l3z7P7JgVHnyBeMiVi6HlMhY1RNuINzAVhMZb5hs9pjIv33dCvox1g==", + "type": "package", + "path": "azure.extensions.aspnetcore.dataprotection.keys/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.extensions.aspnetcore.dataprotection.keys.1.2.3.nupkg.sha512", + "azure.extensions.aspnetcore.dataprotection.keys.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.xml" + ] + }, + "Azure.Identity/1.11.2": { + "sha512": "mihECA1msfwdjTPXHwK9N3n4ln8jMB0DuT0r2caDGPriRT1vca4/Jgmo6FmFZPo8RQsQt1fVn1Gxv5WqkyHVeA==", + "type": "package", + "path": "azure.identity/1.11.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.identity.1.11.2.nupkg.sha512", + "azure.identity.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Identity.dll", + "lib/netstandard2.0/Azure.Identity.xml" + ] + }, + "Azure.Security.KeyVault.Keys/4.2.0": { + "sha512": "I0e71ZjMQ3bJFBOnZNnKizshvZgd/GOx+m7waAeojbm/2P7j4mp5DXNMAN1nm0/FZaCGGR6fVF5I54El+RtGIg==", + "type": "package", + "path": "azure.security.keyvault.keys/4.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.security.keyvault.keys.4.2.0.nupkg.sha512", + "azure.security.keyvault.keys.nuspec", + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll", + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.xml", + "pkgicon.png" + ] + }, + "Azure.Storage.Blobs/12.19.1": { + "sha512": "x43hWFJ4sPQ23TD4piCwT+KlQpZT8pNDAzqj6yUCqh+WJ2qcQa17e1gh6ZOeT2QNFQTTDSuR56fm2bIV7i11/w==", + "type": "package", + "path": "azure.storage.blobs/12.19.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.storage.blobs.12.19.1.nupkg.sha512", + "azure.storage.blobs.nuspec", + "azureicon.png", + "lib/net6.0/Azure.Storage.Blobs.dll", + "lib/net6.0/Azure.Storage.Blobs.xml", + "lib/netstandard2.0/Azure.Storage.Blobs.dll", + "lib/netstandard2.0/Azure.Storage.Blobs.xml", + "lib/netstandard2.1/Azure.Storage.Blobs.dll", + "lib/netstandard2.1/Azure.Storage.Blobs.xml" + ] + }, + "Azure.Storage.Common/12.18.1": { + "sha512": "ohCslqP9yDKIn+DVjBEOBuieB1QwsUCz+BwHYNaJ3lcIsTSiI4Evnq81HcKe8CqM8qvdModbipVQKpnxpbdWqA==", + "type": "package", + "path": "azure.storage.common/12.18.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.storage.common.12.18.1.nupkg.sha512", + "azure.storage.common.nuspec", + "azureicon.png", + "lib/net6.0/Azure.Storage.Common.dll", + "lib/net6.0/Azure.Storage.Common.xml", + "lib/netstandard2.0/Azure.Storage.Common.dll", + "lib/netstandard2.0/Azure.Storage.Common.xml" + ] + }, + "BouncyCastle.Cryptography/2.3.0": { + "sha512": "IaVIiYxZLaBulveGDRUx/pBoW/Rc8QeXGF5u2E8xL8RWhVKCgfmtX9NUyGRbnSqnbFQU2zyP3MkXIdH+jUuQBw==", + "type": "package", + "path": "bouncycastle.cryptography/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "bouncycastle.cryptography.2.3.0.nupkg.sha512", + "bouncycastle.cryptography.nuspec", + "lib/net461/BouncyCastle.Cryptography.dll", + "lib/net461/BouncyCastle.Cryptography.xml", + "lib/net6.0/BouncyCastle.Cryptography.dll", + "lib/net6.0/BouncyCastle.Cryptography.xml", + "lib/netstandard2.0/BouncyCastle.Cryptography.dll", + "lib/netstandard2.0/BouncyCastle.Cryptography.xml", + "packageIcon.png" + ] + }, + "ClosedXML/0.102.2": { + "sha512": "nsHmfPNPtWpr6vair857sQiN11OaFn80oiN2GIbTB1vDqnw9jhNMtlxS0/iYP/E+YGG5zLX2N6xeznuBuvezSQ==", + "type": "package", + "path": "closedxml/0.102.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "closedxml.0.102.2.nupkg.sha512", + "closedxml.nuspec", + "lib/netstandard2.0/ClosedXML.dll", + "lib/netstandard2.0/ClosedXML.xml", + "lib/netstandard2.1/ClosedXML.dll", + "lib/netstandard2.1/ClosedXML.xml", + "nuget-logo.png" + ] + }, + "DocumentFormat.OpenXml/2.16.0": { + "sha512": "RhpnDgyyx1KjZm98T3w3bSXFHG/7ZNUaVmz4NAUA+jmV3PcVNZeW87Y04CpBNLdDHEMSspirfo0B5kLRaoE97w==", + "type": "package", + "path": "documentformat.openxml/2.16.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.2.16.0.nupkg.sha512", + "documentformat.openxml.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.dll", + "lib/net35/DocumentFormat.OpenXml.xml", + "lib/net40/DocumentFormat.OpenXml.dll", + "lib/net40/DocumentFormat.OpenXml.xml", + "lib/net46/DocumentFormat.OpenXml.dll", + "lib/net46/DocumentFormat.OpenXml.xml", + "lib/netstandard1.3/DocumentFormat.OpenXml.dll", + "lib/netstandard1.3/DocumentFormat.OpenXml.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.xml" + ] + }, + "ExcelNumberFormat/1.1.0": { + "sha512": "R3BVHPs9O+RkExbZYTGT0+9HLbi8ZrNij1Yziyw6znd3J7P3uoIR07uwTLGOogtz1p6+0sna66eBoXu7tBiVQA==", + "type": "package", + "path": "excelnumberformat/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excelnumberformat.1.1.0.nupkg.sha512", + "excelnumberformat.nuspec", + "icon.png", + "lib/net20/ExcelNumberFormat.dll", + "lib/net20/ExcelNumberFormat.xml", + "lib/netstandard1.0/ExcelNumberFormat.dll", + "lib/netstandard1.0/ExcelNumberFormat.xml", + "lib/netstandard2.0/ExcelNumberFormat.dll", + "lib/netstandard2.0/ExcelNumberFormat.xml" + ] + }, + "ExCSS/4.2.3": { + "sha512": "SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "type": "package", + "path": "excss/4.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excss.4.2.3.nupkg.sha512", + "excss.nuspec", + "lib/net48/ExCSS.dll", + "lib/net6.0/ExCSS.dll", + "lib/net7.0/ExCSS.dll", + "lib/netcoreapp3.1/ExCSS.dll", + "lib/netstandard2.0/ExCSS.dll", + "lib/netstandard2.1/ExCSS.dll", + "readme.md" + ] + }, + "FirebirdSql.Data.FirebirdClient/10.0.0": { + "sha512": "x+JkSd6TeL9zUXDbi5C0NPeZ1ejo5sw3G9nhoxvVGXhaU399agYgO5RXtYRmcS4GkeA57Q9sThe5pFL2knSdXQ==", + "type": "package", + "path": "firebirdsql.data.firebirdclient/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "firebird-logo.png", + "firebirdsql.data.firebirdclient.10.0.0.nupkg.sha512", + "firebirdsql.data.firebirdclient.nuspec", + "lib/net48/FirebirdSql.Data.FirebirdClient.dll", + "lib/net5.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/net6.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/netstandard2.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/netstandard2.1/FirebirdSql.Data.FirebirdClient.dll", + "license.txt" + ] + }, + "FluentMigrator/5.2.0": { + "sha512": "h3w95meLtHsdWQY1BVVh5eaGcI82zADR2T1WSCcc/NTc+P+rsGzmqG5RF9Gz+Fy1BNEQXL47Xppk/YorwJgEWg==", + "type": "package", + "path": "fluentmigrator/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.5.2.0.nupkg.sha512", + "fluentmigrator.nuspec", + "lib/net48/FluentMigrator.dll", + "lib/net48/FluentMigrator.pdb", + "lib/net48/FluentMigrator.xml", + "lib/netstandard2.0/FluentMigrator.dll", + "lib/netstandard2.0/FluentMigrator.pdb", + "lib/netstandard2.0/FluentMigrator.xml" + ] + }, + "FluentMigrator.Abstractions/5.2.0": { + "sha512": "MvzpENiB2o8QqIXYgKlbtrEPyaHc2m2ukRmaNWszL9ZJH3OBY/kYMotn/dxWC+zwlUo82ZPvoCJtoFi2nptz2w==", + "type": "package", + "path": "fluentmigrator.abstractions/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.abstractions.5.2.0.nupkg.sha512", + "fluentmigrator.abstractions.nuspec", + "lib/net48/FluentMigrator.Abstractions.dll", + "lib/net48/FluentMigrator.Abstractions.pdb", + "lib/net48/FluentMigrator.Abstractions.xml", + "lib/net48/de-DE/FluentMigrator.Abstractions.resources.dll", + "lib/netstandard2.0/FluentMigrator.Abstractions.dll", + "lib/netstandard2.0/FluentMigrator.Abstractions.pdb", + "lib/netstandard2.0/FluentMigrator.Abstractions.xml", + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll" + ] + }, + "FluentMigrator.Extensions.MySql/5.1.0": { + "sha512": "8dx8AS/XFs6HH7G3mw2FcDM43Y7+n96Z0OS9uQjmyum5Cv2Qp2dD2Gf747MCtbWbC/vdhJGomld+BnccBkNA3w==", + "type": "package", + "path": "fluentmigrator.extensions.mysql/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.mysql.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.mysql.nuspec", + "lib/net48/FluentMigrator.Extensions.MySql.dll", + "lib/net48/FluentMigrator.Extensions.MySql.pdb", + "lib/net48/FluentMigrator.Extensions.MySql.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.xml" + ] + }, + "FluentMigrator.Extensions.Oracle/5.1.0": { + "sha512": "Cpnav//COP8wl/NVa7EYyiQAsF0lAba3NYizAWXq+vIApxyu5L9Cp6GpyCTgIIOR4QLTx3FXV4cCg7/QKXkHHA==", + "type": "package", + "path": "fluentmigrator.extensions.oracle/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.oracle.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.oracle.nuspec", + "lib/net48/FluentMigrator.Extensions.Oracle.dll", + "lib/net48/FluentMigrator.Extensions.Oracle.pdb", + "lib/net48/FluentMigrator.Extensions.Oracle.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.xml" + ] + }, + "FluentMigrator.Extensions.Postgres/5.1.0": { + "sha512": "g3Se8v9zyjJUxFedx6mxCtCWrpr5IRD1BExyeIuvorJZZztE4emO/qXtpEB/m9YwdD8stJuPShbMWUa7bKm86Q==", + "type": "package", + "path": "fluentmigrator.extensions.postgres/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.postgres.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.postgres.nuspec", + "lib/net48/FluentMigrator.Extensions.Postgres.dll", + "lib/net48/FluentMigrator.Extensions.Postgres.pdb", + "lib/net48/FluentMigrator.Extensions.Postgres.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.xml" + ] + }, + "FluentMigrator.Extensions.Snowflake/5.1.0": { + "sha512": "3YnRq9q5AcShusF9OvbfMFu/Swyfn8V5YD/vkvAsNTcIIAWs4jXY0QhLR/lofIwvk56XqXE263x2OfzLZnf+gQ==", + "type": "package", + "path": "fluentmigrator.extensions.snowflake/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.snowflake.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.snowflake.nuspec", + "lib/net48/FluentMigrator.Extensions.Snowflake.dll", + "lib/net48/FluentMigrator.Extensions.Snowflake.pdb", + "lib/net48/FluentMigrator.Extensions.Snowflake.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.xml" + ] + }, + "FluentMigrator.Extensions.SqlServer/5.1.0": { + "sha512": "zdcQ1mYvyFY+gzfLScv5Y4j/qFXn4xLed71WqjiNWvN2/JkVh7Xa94K/b+PA6AYh8a7AIqdbnOKtzFr0Lh+95g==", + "type": "package", + "path": "fluentmigrator.extensions.sqlserver/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.sqlserver.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.sqlserver.nuspec", + "lib/net48/FluentMigrator.Extensions.SqlServer.dll", + "lib/net48/FluentMigrator.Extensions.SqlServer.pdb", + "lib/net48/FluentMigrator.Extensions.SqlServer.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.xml" + ] + }, + "FluentMigrator.Runner/5.1.0": { + "sha512": "jincYPtHyQjQ3XgQ7c8aPkKLX88HxueHdeSz++WDVo0LXnR4aFbvi/UXbtAsnwt+Jj06KFhF1DlYVOoT3yrhKQ==", + "type": "package", + "path": "fluentmigrator.runner/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.5.1.0.nupkg.sha512", + "fluentmigrator.runner.nuspec", + "lib/net48/FluentMigrator.Runner.dll", + "lib/net48/FluentMigrator.Runner.pdb", + "lib/net48/FluentMigrator.Runner.xml", + "lib/netstandard2.0/FluentMigrator.Runner.dll", + "lib/netstandard2.0/FluentMigrator.Runner.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.xml" + ] + }, + "FluentMigrator.Runner.Core/5.1.0": { + "sha512": "nP/3ezpP57wqt/1+NScrsSRiQj90xeaNjEyjFIekNtPzmGyM/z//AYk3MXtfM8so8b+JZNL5INQYgXaVGISD0Q==", + "type": "package", + "path": "fluentmigrator.runner.core/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.core.5.1.0.nupkg.sha512", + "fluentmigrator.runner.core.nuspec", + "lib/net48/FluentMigrator.Runner.Core.dll", + "lib/net48/FluentMigrator.Runner.Core.pdb", + "lib/net48/FluentMigrator.Runner.Core.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Core.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Core.xml" + ] + }, + "FluentMigrator.Runner.Db2/5.1.0": { + "sha512": "Z9CdgQnkyBgNyRpTA2le/VEQaa2ukFNqDYEqkRu2cOZk+XF3JsjkQMeeQB2Byy7yZhgK/SGrauLvebB5wF1wEw==", + "type": "package", + "path": "fluentmigrator.runner.db2/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.db2.5.1.0.nupkg.sha512", + "fluentmigrator.runner.db2.nuspec", + "lib/net48/FluentMigrator.Runner.Db2.dll", + "lib/net48/FluentMigrator.Runner.Db2.pdb", + "lib/net48/FluentMigrator.Runner.Db2.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.xml" + ] + }, + "FluentMigrator.Runner.Firebird/5.1.0": { + "sha512": "lNFo+LZQczW3vtuSjpOfRxUhoRrwBMg+PV+SOk12c1PnkfvDAtsX/HSn9yUI3xV+fN1x6krBIwIQ9o63HQZAfg==", + "type": "package", + "path": "fluentmigrator.runner.firebird/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.firebird.5.1.0.nupkg.sha512", + "fluentmigrator.runner.firebird.nuspec", + "lib/net48/FluentMigrator.Runner.Firebird.dll", + "lib/net48/FluentMigrator.Runner.Firebird.pdb", + "lib/net48/FluentMigrator.Runner.Firebird.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.xml" + ] + }, + "FluentMigrator.Runner.Hana/5.1.0": { + "sha512": "xCRna1elZYhOITRK4uNtPb3xut0GTtteCyTjQF7ZlHC4RFFpg1a2fAWFUF+TB9YVeFxf1QHKhbo8Kr5rGH6HqA==", + "type": "package", + "path": "fluentmigrator.runner.hana/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.hana.5.1.0.nupkg.sha512", + "fluentmigrator.runner.hana.nuspec", + "lib/net48/FluentMigrator.Runner.Hana.dll", + "lib/net48/FluentMigrator.Runner.Hana.pdb", + "lib/net48/FluentMigrator.Runner.Hana.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.xml" + ] + }, + "FluentMigrator.Runner.MySql/5.1.0": { + "sha512": "VywFX3gKQ7EcveKoLcxLwf8aQkWnJn6WQ2aJqe7Dw6gld8o0WBpevsBwQFO1doGqXzhFDlWHO2NwKoqvXQCG+Q==", + "type": "package", + "path": "fluentmigrator.runner.mysql/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.mysql.5.1.0.nupkg.sha512", + "fluentmigrator.runner.mysql.nuspec", + "lib/net48/FluentMigrator.Runner.MySql.dll", + "lib/net48/FluentMigrator.Runner.MySql.pdb", + "lib/net48/FluentMigrator.Runner.MySql.xml", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.xml" + ] + }, + "FluentMigrator.Runner.Oracle/5.1.0": { + "sha512": "qNmTirqFREMOm/HMkO68suXd3EIoadfQ69gvuJ5Hvy7LNQgMAW8FcrcGkNFn0t0JYAtGEbtH9t90/6dmBAwQIg==", + "type": "package", + "path": "fluentmigrator.runner.oracle/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.oracle.5.1.0.nupkg.sha512", + "fluentmigrator.runner.oracle.nuspec", + "lib/net48/FluentMigrator.Runner.Oracle.dll", + "lib/net48/FluentMigrator.Runner.Oracle.pdb", + "lib/net48/FluentMigrator.Runner.Oracle.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.xml" + ] + }, + "FluentMigrator.Runner.Postgres/5.1.0": { + "sha512": "Zr/cqR7b5PJqwO/JPtVz/zn2USO/jLz8b9JEFCjsYIb4AU8WIwNpLoRXsEcWSoHjlAc60LPcZM608tkgDGgA6A==", + "type": "package", + "path": "fluentmigrator.runner.postgres/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.postgres.5.1.0.nupkg.sha512", + "fluentmigrator.runner.postgres.nuspec", + "lib/net48/FluentMigrator.Runner.Postgres.dll", + "lib/net48/FluentMigrator.Runner.Postgres.pdb", + "lib/net48/FluentMigrator.Runner.Postgres.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.xml" + ] + }, + "FluentMigrator.Runner.Redshift/5.1.0": { + "sha512": "7GTF2EaaU8de9ViLobwxSKT+gY81h6b4zXIkMteALdqnAjkMNcynhEradH5OaDe9PorKWWh3/VBzCmO+N516xw==", + "type": "package", + "path": "fluentmigrator.runner.redshift/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.redshift.5.1.0.nupkg.sha512", + "fluentmigrator.runner.redshift.nuspec", + "lib/net48/FluentMigrator.Runner.Redshift.dll", + "lib/net48/FluentMigrator.Runner.Redshift.pdb", + "lib/net48/FluentMigrator.Runner.Redshift.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.xml" + ] + }, + "FluentMigrator.Runner.Snowflake/5.1.0": { + "sha512": "OmGfCxJPSrhJ6VcW6ypqc+NziwH1rygkNEJfW7Jl1DHfwrQtPgIgWw8qTA0abN+RkwtalXsfaEJ+4EuL0L+w6w==", + "type": "package", + "path": "fluentmigrator.runner.snowflake/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.snowflake.5.1.0.nupkg.sha512", + "fluentmigrator.runner.snowflake.nuspec", + "lib/net48/FluentMigrator.Runner.Snowflake.dll", + "lib/net48/FluentMigrator.Runner.Snowflake.pdb", + "lib/net48/FluentMigrator.Runner.Snowflake.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.xml" + ] + }, + "FluentMigrator.Runner.SQLite/5.1.0": { + "sha512": "5fADu6iWF9pnPKhI0S2VmdR8gaFFe4A+ZtAu57A9w8gcZCCPVzekye83+gm93XuAGxOQtT1RErVIy2T0aGcyYA==", + "type": "package", + "path": "fluentmigrator.runner.sqlite/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.sqlite.5.1.0.nupkg.sha512", + "fluentmigrator.runner.sqlite.nuspec", + "lib/net48/FluentMigrator.Runner.SQLite.dll", + "lib/net48/FluentMigrator.Runner.SQLite.pdb", + "lib/net48/FluentMigrator.Runner.SQLite.xml", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.xml" + ] + }, + "FluentMigrator.Runner.SqlServer/5.1.0": { + "sha512": "WiZjICPJRIjuOZG2c52JOspKG0iR9UrfotE/SQMNlGEoIxjp8XrksEw7LytWsXWCymDjZUedNnA7QTqZS4p/Iw==", + "type": "package", + "path": "fluentmigrator.runner.sqlserver/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.sqlserver.5.1.0.nupkg.sha512", + "fluentmigrator.runner.sqlserver.nuspec", + "lib/net48/FluentMigrator.Runner.SqlServer.dll", + "lib/net48/FluentMigrator.Runner.SqlServer.pdb", + "lib/net48/FluentMigrator.Runner.SqlServer.xml", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.xml" + ] + }, + "FluentValidation/11.5.1": { + "sha512": "0h1Q5lNOLLyYTWMJmyNoMqhY4CBRvvUWvJP1R4F2CnmmzuWwvB0A8aVmw5+lOuwYnwUwCRrdeMLbc81F38ahNQ==", + "type": "package", + "path": "fluentvalidation/11.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.11.5.1.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net5.0/FluentValidation.dll", + "lib/net5.0/FluentValidation.xml", + "lib/net6.0/FluentValidation.dll", + "lib/net6.0/FluentValidation.xml", + "lib/net7.0/FluentValidation.dll", + "lib/net7.0/FluentValidation.xml", + "lib/netstandard2.0/FluentValidation.dll", + "lib/netstandard2.0/FluentValidation.xml", + "lib/netstandard2.1/FluentValidation.dll", + "lib/netstandard2.1/FluentValidation.xml" + ] + }, + "FluentValidation.AspNetCore/11.3.0": { + "sha512": "jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==", + "type": "package", + "path": "fluentvalidation.aspnetcore/11.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512", + "fluentvalidation.aspnetcore.nuspec", + "lib/net5.0/FluentValidation.AspNetCore.dll", + "lib/net5.0/FluentValidation.AspNetCore.xml", + "lib/net6.0/FluentValidation.AspNetCore.dll", + "lib/net6.0/FluentValidation.AspNetCore.xml", + "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll", + "lib/netcoreapp3.1/FluentValidation.AspNetCore.xml" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.5.1": { + "sha512": "iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==", + "type": "package", + "path": "fluentvalidation.dependencyinjectionextensions/11.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512", + "fluentvalidation.dependencyinjectionextensions.nuspec", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml" + ] + }, + "Google.Apis/1.68.0": { + "sha512": "s2MymhdpH+ybZNBeZ2J5uFgFHApBp+QXf9FjZSdM1lk/vx5VqIknJwnaWiuAzXxPrLEkesX0Q+UsiWn39yZ9zw==", + "type": "package", + "path": "google.apis/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.1.68.0.nupkg.sha512", + "google.apis.nuspec", + "lib/net462/Google.Apis.dll", + "lib/net462/Google.Apis.pdb", + "lib/net462/Google.Apis.xml", + "lib/net6.0/Google.Apis.dll", + "lib/net6.0/Google.Apis.pdb", + "lib/net6.0/Google.Apis.xml", + "lib/netstandard2.0/Google.Apis.dll", + "lib/netstandard2.0/Google.Apis.pdb", + "lib/netstandard2.0/Google.Apis.xml" + ] + }, + "Google.Apis.Auth/1.68.0": { + "sha512": "hFx8Qz5bZ4w0hpnn4tSmZaaFpjAMsgVElZ+ZgVLUZ2r9i+AKcoVgwiNfv1pruNS5cCvpXqhKECbruBCfRezPHA==", + "type": "package", + "path": "google.apis.auth/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.auth.1.68.0.nupkg.sha512", + "google.apis.auth.nuspec", + "lib/net462/Google.Apis.Auth.dll", + "lib/net462/Google.Apis.Auth.pdb", + "lib/net462/Google.Apis.Auth.xml", + "lib/net6.0/Google.Apis.Auth.dll", + "lib/net6.0/Google.Apis.Auth.pdb", + "lib/net6.0/Google.Apis.Auth.xml", + "lib/netstandard2.0/Google.Apis.Auth.dll", + "lib/netstandard2.0/Google.Apis.Auth.pdb", + "lib/netstandard2.0/Google.Apis.Auth.xml" + ] + }, + "Google.Apis.Core/1.68.0": { + "sha512": "pAqwa6pfu53UXCR2b7A/PAPXeuVg6L1OFw38WckN27NU2+mf+KTjoEg2YGv/f0UyKxzz7DxF1urOTKg/6dTP9g==", + "type": "package", + "path": "google.apis.core/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.core.1.68.0.nupkg.sha512", + "google.apis.core.nuspec", + "lib/net462/Google.Apis.Core.dll", + "lib/net462/Google.Apis.Core.pdb", + "lib/net462/Google.Apis.Core.xml", + "lib/net6.0/Google.Apis.Core.dll", + "lib/net6.0/Google.Apis.Core.pdb", + "lib/net6.0/Google.Apis.Core.xml", + "lib/netstandard2.0/Google.Apis.Core.dll", + "lib/netstandard2.0/Google.Apis.Core.pdb", + "lib/netstandard2.0/Google.Apis.Core.xml" + ] + }, + "HarfBuzzSharp/7.3.0.1": { + "sha512": "/6z6TQBqWWbVpLUw7E/82HZKLT3OAzg/w6z8I6JFNFcYa3nM9RnZ8XGos9nD4buAzThLHpqPw/rb8FdZXEORAQ==", + "type": "package", + "path": "harfbuzzsharp/7.3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "harfbuzzsharp.7.3.0.1.nupkg.sha512", + "harfbuzzsharp.nuspec", + "lib/monoandroid1.0/HarfBuzzSharp.dll", + "lib/monoandroid1.0/HarfBuzzSharp.pdb", + "lib/monoandroid1.0/HarfBuzzSharp.xml", + "lib/net462/HarfBuzzSharp.dll", + "lib/net462/HarfBuzzSharp.pdb", + "lib/net462/HarfBuzzSharp.xml", + "lib/net6.0-android30.0/HarfBuzzSharp.dll", + "lib/net6.0-android30.0/HarfBuzzSharp.pdb", + "lib/net6.0-android30.0/HarfBuzzSharp.xml", + "lib/net6.0-ios13.6/HarfBuzzSharp.dll", + "lib/net6.0-ios13.6/HarfBuzzSharp.pdb", + "lib/net6.0-ios13.6/HarfBuzzSharp.xml", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.dll", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.pdb", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.xml", + "lib/net6.0-macos10.15/HarfBuzzSharp.dll", + "lib/net6.0-macos10.15/HarfBuzzSharp.pdb", + "lib/net6.0-macos10.15/HarfBuzzSharp.xml", + "lib/net6.0-tvos13.4/HarfBuzzSharp.dll", + "lib/net6.0-tvos13.4/HarfBuzzSharp.pdb", + "lib/net6.0-tvos13.4/HarfBuzzSharp.xml", + "lib/net6.0/HarfBuzzSharp.dll", + "lib/net6.0/HarfBuzzSharp.pdb", + "lib/net6.0/HarfBuzzSharp.xml", + "lib/netcoreapp3.1/HarfBuzzSharp.dll", + "lib/netcoreapp3.1/HarfBuzzSharp.pdb", + "lib/netcoreapp3.1/HarfBuzzSharp.xml", + "lib/netstandard1.3/HarfBuzzSharp.dll", + "lib/netstandard1.3/HarfBuzzSharp.pdb", + "lib/netstandard1.3/HarfBuzzSharp.xml", + "lib/netstandard2.0/HarfBuzzSharp.dll", + "lib/netstandard2.0/HarfBuzzSharp.pdb", + "lib/netstandard2.0/HarfBuzzSharp.xml", + "lib/netstandard2.1/HarfBuzzSharp.dll", + "lib/netstandard2.1/HarfBuzzSharp.pdb", + "lib/netstandard2.1/HarfBuzzSharp.xml", + "lib/tizen40/HarfBuzzSharp.dll", + "lib/tizen40/HarfBuzzSharp.pdb", + "lib/tizen40/HarfBuzzSharp.xml", + "lib/uap10.0.10240/HarfBuzzSharp.dll", + "lib/uap10.0.10240/HarfBuzzSharp.pdb", + "lib/uap10.0.10240/HarfBuzzSharp.xml", + "lib/uap10.0.16299/HarfBuzzSharp.dll", + "lib/uap10.0.16299/HarfBuzzSharp.pdb", + "lib/uap10.0.16299/HarfBuzzSharp.xml", + "lib/xamarinios1.0/HarfBuzzSharp.dll", + "lib/xamarinios1.0/HarfBuzzSharp.pdb", + "lib/xamarinios1.0/HarfBuzzSharp.xml", + "lib/xamarinmac2.0/HarfBuzzSharp.dll", + "lib/xamarinmac2.0/HarfBuzzSharp.pdb", + "lib/xamarinmac2.0/HarfBuzzSharp.xml", + "lib/xamarintvos1.0/HarfBuzzSharp.dll", + "lib/xamarintvos1.0/HarfBuzzSharp.pdb", + "lib/xamarintvos1.0/HarfBuzzSharp.xml", + "lib/xamarinwatchos1.0/HarfBuzzSharp.dll", + "lib/xamarinwatchos1.0/HarfBuzzSharp.pdb", + "lib/xamarinwatchos1.0/HarfBuzzSharp.xml" + ] + }, + "HarfBuzzSharp.NativeAssets.Linux/2.8.2.3": { + "sha512": "Qu1yJSHEN7PD3+fqfkaClnORWN5e2xJ2Xoziz/GUi/oBT1Z+Dp2oZeiONKP6NFltboSOBkvH90QuOA6YN/U1zg==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.linux/2.8.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "harfbuzzsharp.nativeassets.linux.2.8.2.3.nupkg.sha512", + "harfbuzzsharp.nativeassets.linux.nuspec", + "lib/net462/_._", + "lib/net5.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libHarfBuzzSharp.so", + "runtimes/linux-arm64/native/libHarfBuzzSharp.so", + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so", + "runtimes/linux-x64/native/libHarfBuzzSharp.so" + ] + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.1": { + "sha512": "4i6e8WhXF04At1rZ904xjt5g10W86u6B2SpzWAw+cfY4mzfyUV0hgZHIWsE6PsW8a9bP/bSdsZx/Rt4UIroi4w==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.macos/7.3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "harfbuzzsharp.nativeassets.macos.7.3.0.1.nupkg.sha512", + "harfbuzzsharp.nativeassets.macos.nuspec", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libHarfBuzzSharp.dylib" + ] + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.1": { + "sha512": "NxzjhGcY7fYCu51BsanQurXXyqGogZiMzFBpDrZg49jNhT/S0QWYe/uvmP9YbwagprKQ+2tbGT0cw1BvxJciXQ==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.win32/7.3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "harfbuzzsharp.nativeassets.win32.7.3.0.1.nupkg.sha512", + "harfbuzzsharp.nativeassets.win32.nuspec", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libHarfBuzzSharp.dll", + "runtimes/win-x64/native/libHarfBuzzSharp.dll", + "runtimes/win-x86/native/libHarfBuzzSharp.dll" + ] + }, + "Humanizer/2.14.1": { + "sha512": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", + "type": "package", + "path": "humanizer/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.2.14.1.nupkg.sha512", + "humanizer.nuspec", + "logo.png" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "Humanizer.Core.af/2.14.1": { + "sha512": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", + "type": "package", + "path": "humanizer.core.af/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.af.2.14.1.nupkg.sha512", + "humanizer.core.af.nuspec", + "lib/net6.0/af/Humanizer.resources.dll", + "lib/netstandard1.0/af/Humanizer.resources.dll", + "lib/netstandard2.0/af/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ar/2.14.1": { + "sha512": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", + "type": "package", + "path": "humanizer.core.ar/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ar.2.14.1.nupkg.sha512", + "humanizer.core.ar.nuspec", + "lib/net6.0/ar/Humanizer.resources.dll", + "lib/netstandard1.0/ar/Humanizer.resources.dll", + "lib/netstandard2.0/ar/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.az/2.14.1": { + "sha512": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", + "type": "package", + "path": "humanizer.core.az/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.az.2.14.1.nupkg.sha512", + "humanizer.core.az.nuspec", + "lib/net6.0/az/Humanizer.resources.dll", + "lib/netstandard1.0/az/Humanizer.resources.dll", + "lib/netstandard2.0/az/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bg/2.14.1": { + "sha512": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", + "type": "package", + "path": "humanizer.core.bg/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bg.2.14.1.nupkg.sha512", + "humanizer.core.bg.nuspec", + "lib/net6.0/bg/Humanizer.resources.dll", + "lib/netstandard1.0/bg/Humanizer.resources.dll", + "lib/netstandard2.0/bg/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bn-BD/2.14.1": { + "sha512": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", + "type": "package", + "path": "humanizer.core.bn-bd/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "humanizer.core.bn-bd.nuspec", + "lib/net6.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard1.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard2.0/bn-BD/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.cs/2.14.1": { + "sha512": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", + "type": "package", + "path": "humanizer.core.cs/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.cs.2.14.1.nupkg.sha512", + "humanizer.core.cs.nuspec", + "lib/net6.0/cs/Humanizer.resources.dll", + "lib/netstandard1.0/cs/Humanizer.resources.dll", + "lib/netstandard2.0/cs/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.da/2.14.1": { + "sha512": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", + "type": "package", + "path": "humanizer.core.da/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.da.2.14.1.nupkg.sha512", + "humanizer.core.da.nuspec", + "lib/net6.0/da/Humanizer.resources.dll", + "lib/netstandard1.0/da/Humanizer.resources.dll", + "lib/netstandard2.0/da/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.de/2.14.1": { + "sha512": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", + "type": "package", + "path": "humanizer.core.de/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.de.2.14.1.nupkg.sha512", + "humanizer.core.de.nuspec", + "lib/net6.0/de/Humanizer.resources.dll", + "lib/netstandard1.0/de/Humanizer.resources.dll", + "lib/netstandard2.0/de/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.el/2.14.1": { + "sha512": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", + "type": "package", + "path": "humanizer.core.el/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.el.2.14.1.nupkg.sha512", + "humanizer.core.el.nuspec", + "lib/net6.0/el/Humanizer.resources.dll", + "lib/netstandard1.0/el/Humanizer.resources.dll", + "lib/netstandard2.0/el/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.es/2.14.1": { + "sha512": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", + "type": "package", + "path": "humanizer.core.es/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.es.2.14.1.nupkg.sha512", + "humanizer.core.es.nuspec", + "lib/net6.0/es/Humanizer.resources.dll", + "lib/netstandard1.0/es/Humanizer.resources.dll", + "lib/netstandard2.0/es/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fa/2.14.1": { + "sha512": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", + "type": "package", + "path": "humanizer.core.fa/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fa.2.14.1.nupkg.sha512", + "humanizer.core.fa.nuspec", + "lib/net6.0/fa/Humanizer.resources.dll", + "lib/netstandard1.0/fa/Humanizer.resources.dll", + "lib/netstandard2.0/fa/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fi-FI/2.14.1": { + "sha512": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", + "type": "package", + "path": "humanizer.core.fi-fi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "humanizer.core.fi-fi.nuspec", + "lib/net6.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard1.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard2.0/fi-FI/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr/2.14.1": { + "sha512": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", + "type": "package", + "path": "humanizer.core.fr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr.2.14.1.nupkg.sha512", + "humanizer.core.fr.nuspec", + "lib/net6.0/fr/Humanizer.resources.dll", + "lib/netstandard1.0/fr/Humanizer.resources.dll", + "lib/netstandard2.0/fr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr-BE/2.14.1": { + "sha512": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", + "type": "package", + "path": "humanizer.core.fr-be/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr-be.2.14.1.nupkg.sha512", + "humanizer.core.fr-be.nuspec", + "lib/net6.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard1.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard2.0/fr-BE/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.he/2.14.1": { + "sha512": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", + "type": "package", + "path": "humanizer.core.he/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.he.2.14.1.nupkg.sha512", + "humanizer.core.he.nuspec", + "lib/net6.0/he/Humanizer.resources.dll", + "lib/netstandard1.0/he/Humanizer.resources.dll", + "lib/netstandard2.0/he/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hr/2.14.1": { + "sha512": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", + "type": "package", + "path": "humanizer.core.hr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hr.2.14.1.nupkg.sha512", + "humanizer.core.hr.nuspec", + "lib/net6.0/hr/Humanizer.resources.dll", + "lib/netstandard1.0/hr/Humanizer.resources.dll", + "lib/netstandard2.0/hr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hu/2.14.1": { + "sha512": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", + "type": "package", + "path": "humanizer.core.hu/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hu.2.14.1.nupkg.sha512", + "humanizer.core.hu.nuspec", + "lib/net6.0/hu/Humanizer.resources.dll", + "lib/netstandard1.0/hu/Humanizer.resources.dll", + "lib/netstandard2.0/hu/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hy/2.14.1": { + "sha512": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", + "type": "package", + "path": "humanizer.core.hy/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hy.2.14.1.nupkg.sha512", + "humanizer.core.hy.nuspec", + "lib/net6.0/hy/Humanizer.resources.dll", + "lib/netstandard1.0/hy/Humanizer.resources.dll", + "lib/netstandard2.0/hy/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.id/2.14.1": { + "sha512": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", + "type": "package", + "path": "humanizer.core.id/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.id.2.14.1.nupkg.sha512", + "humanizer.core.id.nuspec", + "lib/net6.0/id/Humanizer.resources.dll", + "lib/netstandard1.0/id/Humanizer.resources.dll", + "lib/netstandard2.0/id/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.is/2.14.1": { + "sha512": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", + "type": "package", + "path": "humanizer.core.is/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.is.2.14.1.nupkg.sha512", + "humanizer.core.is.nuspec", + "lib/net6.0/is/Humanizer.resources.dll", + "lib/netstandard1.0/is/Humanizer.resources.dll", + "lib/netstandard2.0/is/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.it/2.14.1": { + "sha512": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", + "type": "package", + "path": "humanizer.core.it/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.it.2.14.1.nupkg.sha512", + "humanizer.core.it.nuspec", + "lib/net6.0/it/Humanizer.resources.dll", + "lib/netstandard1.0/it/Humanizer.resources.dll", + "lib/netstandard2.0/it/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ja/2.14.1": { + "sha512": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", + "type": "package", + "path": "humanizer.core.ja/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ja.2.14.1.nupkg.sha512", + "humanizer.core.ja.nuspec", + "lib/net6.0/ja/Humanizer.resources.dll", + "lib/netstandard1.0/ja/Humanizer.resources.dll", + "lib/netstandard2.0/ja/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ko-KR/2.14.1": { + "sha512": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", + "type": "package", + "path": "humanizer.core.ko-kr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "humanizer.core.ko-kr.nuspec", + "lib/netstandard1.0/ko-KR/Humanizer.resources.dll", + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ku/2.14.1": { + "sha512": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", + "type": "package", + "path": "humanizer.core.ku/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ku.2.14.1.nupkg.sha512", + "humanizer.core.ku.nuspec", + "lib/net6.0/ku/Humanizer.resources.dll", + "lib/netstandard1.0/ku/Humanizer.resources.dll", + "lib/netstandard2.0/ku/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.lv/2.14.1": { + "sha512": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", + "type": "package", + "path": "humanizer.core.lv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.lv.2.14.1.nupkg.sha512", + "humanizer.core.lv.nuspec", + "lib/net6.0/lv/Humanizer.resources.dll", + "lib/netstandard1.0/lv/Humanizer.resources.dll", + "lib/netstandard2.0/lv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ms-MY/2.14.1": { + "sha512": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", + "type": "package", + "path": "humanizer.core.ms-my/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ms-my.2.14.1.nupkg.sha512", + "humanizer.core.ms-my.nuspec", + "lib/netstandard1.0/ms-MY/Humanizer.resources.dll", + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.mt/2.14.1": { + "sha512": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", + "type": "package", + "path": "humanizer.core.mt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.mt.2.14.1.nupkg.sha512", + "humanizer.core.mt.nuspec", + "lib/netstandard1.0/mt/Humanizer.resources.dll", + "lib/netstandard2.0/mt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb/2.14.1": { + "sha512": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", + "type": "package", + "path": "humanizer.core.nb/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb.2.14.1.nupkg.sha512", + "humanizer.core.nb.nuspec", + "lib/net6.0/nb/Humanizer.resources.dll", + "lib/netstandard1.0/nb/Humanizer.resources.dll", + "lib/netstandard2.0/nb/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb-NO/2.14.1": { + "sha512": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", + "type": "package", + "path": "humanizer.core.nb-no/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb-no.2.14.1.nupkg.sha512", + "humanizer.core.nb-no.nuspec", + "lib/net6.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard1.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard2.0/nb-NO/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nl/2.14.1": { + "sha512": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", + "type": "package", + "path": "humanizer.core.nl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nl.2.14.1.nupkg.sha512", + "humanizer.core.nl.nuspec", + "lib/net6.0/nl/Humanizer.resources.dll", + "lib/netstandard1.0/nl/Humanizer.resources.dll", + "lib/netstandard2.0/nl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pl/2.14.1": { + "sha512": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", + "type": "package", + "path": "humanizer.core.pl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pl.2.14.1.nupkg.sha512", + "humanizer.core.pl.nuspec", + "lib/net6.0/pl/Humanizer.resources.dll", + "lib/netstandard1.0/pl/Humanizer.resources.dll", + "lib/netstandard2.0/pl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pt/2.14.1": { + "sha512": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", + "type": "package", + "path": "humanizer.core.pt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pt.2.14.1.nupkg.sha512", + "humanizer.core.pt.nuspec", + "lib/net6.0/pt/Humanizer.resources.dll", + "lib/netstandard1.0/pt/Humanizer.resources.dll", + "lib/netstandard2.0/pt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ro/2.14.1": { + "sha512": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", + "type": "package", + "path": "humanizer.core.ro/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ro.2.14.1.nupkg.sha512", + "humanizer.core.ro.nuspec", + "lib/net6.0/ro/Humanizer.resources.dll", + "lib/netstandard1.0/ro/Humanizer.resources.dll", + "lib/netstandard2.0/ro/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ru/2.14.1": { + "sha512": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", + "type": "package", + "path": "humanizer.core.ru/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ru.2.14.1.nupkg.sha512", + "humanizer.core.ru.nuspec", + "lib/net6.0/ru/Humanizer.resources.dll", + "lib/netstandard1.0/ru/Humanizer.resources.dll", + "lib/netstandard2.0/ru/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sk/2.14.1": { + "sha512": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", + "type": "package", + "path": "humanizer.core.sk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sk.2.14.1.nupkg.sha512", + "humanizer.core.sk.nuspec", + "lib/net6.0/sk/Humanizer.resources.dll", + "lib/netstandard1.0/sk/Humanizer.resources.dll", + "lib/netstandard2.0/sk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sl/2.14.1": { + "sha512": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", + "type": "package", + "path": "humanizer.core.sl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sl.2.14.1.nupkg.sha512", + "humanizer.core.sl.nuspec", + "lib/net6.0/sl/Humanizer.resources.dll", + "lib/netstandard1.0/sl/Humanizer.resources.dll", + "lib/netstandard2.0/sl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr/2.14.1": { + "sha512": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", + "type": "package", + "path": "humanizer.core.sr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr.2.14.1.nupkg.sha512", + "humanizer.core.sr.nuspec", + "lib/net6.0/sr/Humanizer.resources.dll", + "lib/netstandard1.0/sr/Humanizer.resources.dll", + "lib/netstandard2.0/sr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "sha512": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", + "type": "package", + "path": "humanizer.core.sr-latn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "humanizer.core.sr-latn.nuspec", + "lib/net6.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard1.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard2.0/sr-Latn/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sv/2.14.1": { + "sha512": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", + "type": "package", + "path": "humanizer.core.sv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sv.2.14.1.nupkg.sha512", + "humanizer.core.sv.nuspec", + "lib/net6.0/sv/Humanizer.resources.dll", + "lib/netstandard1.0/sv/Humanizer.resources.dll", + "lib/netstandard2.0/sv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.th-TH/2.14.1": { + "sha512": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", + "type": "package", + "path": "humanizer.core.th-th/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.th-th.2.14.1.nupkg.sha512", + "humanizer.core.th-th.nuspec", + "lib/netstandard1.0/th-TH/Humanizer.resources.dll", + "lib/netstandard2.0/th-TH/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.tr/2.14.1": { + "sha512": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", + "type": "package", + "path": "humanizer.core.tr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.tr.2.14.1.nupkg.sha512", + "humanizer.core.tr.nuspec", + "lib/net6.0/tr/Humanizer.resources.dll", + "lib/netstandard1.0/tr/Humanizer.resources.dll", + "lib/netstandard2.0/tr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uk/2.14.1": { + "sha512": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", + "type": "package", + "path": "humanizer.core.uk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uk.2.14.1.nupkg.sha512", + "humanizer.core.uk.nuspec", + "lib/net6.0/uk/Humanizer.resources.dll", + "lib/netstandard1.0/uk/Humanizer.resources.dll", + "lib/netstandard2.0/uk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "sha512": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", + "type": "package", + "path": "humanizer.core.uz-cyrl-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-cyrl-uz.nuspec", + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "sha512": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", + "type": "package", + "path": "humanizer.core.uz-latn-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-latn-uz.nuspec", + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Latn-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.vi/2.14.1": { + "sha512": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", + "type": "package", + "path": "humanizer.core.vi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.vi.2.14.1.nupkg.sha512", + "humanizer.core.vi.nuspec", + "lib/net6.0/vi/Humanizer.resources.dll", + "lib/netstandard1.0/vi/Humanizer.resources.dll", + "lib/netstandard2.0/vi/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-CN/2.14.1": { + "sha512": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", + "type": "package", + "path": "humanizer.core.zh-cn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "humanizer.core.zh-cn.nuspec", + "lib/net6.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard1.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard2.0/zh-CN/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "sha512": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", + "type": "package", + "path": "humanizer.core.zh-hans/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "humanizer.core.zh-hans.nuspec", + "lib/net6.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hans/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "sha512": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", + "type": "package", + "path": "humanizer.core.zh-hant/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "humanizer.core.zh-hant.nuspec", + "lib/net6.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hant/Humanizer.resources.dll", + "logo.png" + ] + }, + "Irony.NetCore/1.0.11": { + "sha512": "/2MCkqdhEjPiSTZKYXg6u9AO9o3m68biqcFHAnM28WdnrcZii2vYbmKPzT5ejByyV72FUlygOtHBMt8SLnUyNw==", + "type": "package", + "path": "irony.netcore/1.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "irony.netcore.1.0.11.nupkg.sha512", + "irony.netcore.nuspec", + "lib/net452/Irony.dll", + "lib/net461/Irony.dll", + "lib/netstandard1.6/Irony.dll" + ] + }, + "LigerShark.WebOptimizer.Core/3.0.405": { + "sha512": "bsEO/TVYWsUwc/dAYjpEKBP+Dax1ikyehj8P2QMKDc/iKdi5/Wjljl13ab/D2RCiU4T7E560iOo06K2rCTNHAQ==", + "type": "package", + "path": "ligershark.weboptimizer.core/3.0.405", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "build/LigerShark.WebOptimizer.Core.props", + "build/LigerShark.WebOptimizer.Core.targets", + "lib/netcoreapp3.0/WebOptimizer.Core.dll", + "lib/netcoreapp3.0/WebOptimizer.Core.xml", + "ligershark.weboptimizer.core.3.0.405.nupkg.sha512", + "ligershark.weboptimizer.core.nuspec", + "logo.png" + ] + }, + "linq2db/5.4.1": { + "sha512": "qyH32MbFK6T55KsEcQYTbPFfkOa1Mo65lY/Zo8SFVMy0pwkQBCTnA/RUxyG5+l3D/mgfPz85PH3upDrtklSMrw==", + "type": "package", + "path": "linq2db/5.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MIT-LICENSE.txt", + "README.md", + "images/icon.png", + "lib/net45/linq2db.dll", + "lib/net45/linq2db.xml", + "lib/net46/linq2db.dll", + "lib/net46/linq2db.xml", + "lib/net472/linq2db.dll", + "lib/net472/linq2db.xml", + "lib/net6.0/linq2db.dll", + "lib/net6.0/linq2db.xml", + "lib/netcoreapp3.1/linq2db.dll", + "lib/netcoreapp3.1/linq2db.xml", + "lib/netstandard2.0/linq2db.dll", + "lib/netstandard2.0/linq2db.xml", + "lib/netstandard2.1/linq2db.dll", + "lib/netstandard2.1/linq2db.xml", + "linq2db.5.4.1.nupkg.sha512", + "linq2db.nuspec" + ] + }, + "MailKit/4.5.0": { + "sha512": "EaXHODUdIV5oPdWvBJGazwaEpKt1LI/H/S//EEozANYCsfOSKHntX+Skk2kW616lSQp+fkRTmSjk0CYxEuOyEA==", + "type": "package", + "path": "mailkit/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/ExchangeOAuth2.md", + "docs/FAQ.md", + "docs/GMailOAuth2.md", + "docs/README.md", + "icons/mailkit-50.png", + "lib/net462/MailKit.dll", + "lib/net462/MailKit.dll.config", + "lib/net462/MailKit.pdb", + "lib/net462/MailKit.xml", + "lib/net47/MailKit.dll", + "lib/net47/MailKit.dll.config", + "lib/net47/MailKit.pdb", + "lib/net47/MailKit.xml", + "lib/net48/MailKit.dll", + "lib/net48/MailKit.dll.config", + "lib/net48/MailKit.pdb", + "lib/net48/MailKit.xml", + "lib/net6.0/MailKit.dll", + "lib/net6.0/MailKit.dll.config", + "lib/net6.0/MailKit.pdb", + "lib/net6.0/MailKit.xml", + "lib/net8.0/MailKit.dll", + "lib/net8.0/MailKit.dll.config", + "lib/net8.0/MailKit.pdb", + "lib/net8.0/MailKit.xml", + "lib/netstandard2.0/MailKit.dll", + "lib/netstandard2.0/MailKit.dll.config", + "lib/netstandard2.0/MailKit.pdb", + "lib/netstandard2.0/MailKit.xml", + "lib/netstandard2.1/MailKit.dll", + "lib/netstandard2.1/MailKit.dll.config", + "lib/netstandard2.1/MailKit.pdb", + "lib/netstandard2.1/MailKit.xml", + "mailkit.4.5.0.nupkg.sha512", + "mailkit.nuspec" + ] + }, + "MaxMind.Db/4.1.0": { + "sha512": "lEjCFX0TUQCRmFS8xrXIQSi+4omJ1Fwy0gAHlbnjg8cgSBa0cllP5zOEftQ23EP247EbnF7mNCQ3JsG/bMkHAA==", + "type": "package", + "path": "maxmind.db/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MaxMind-logo.png", + "README.md", + "lib/net6.0/MaxMind.Db.dll", + "lib/net6.0/MaxMind.Db.xml", + "lib/net7.0/MaxMind.Db.dll", + "lib/net7.0/MaxMind.Db.xml", + "lib/net8.0/MaxMind.Db.dll", + "lib/net8.0/MaxMind.Db.xml", + "lib/netstandard2.0/MaxMind.Db.dll", + "lib/netstandard2.0/MaxMind.Db.xml", + "lib/netstandard2.1/MaxMind.Db.dll", + "lib/netstandard2.1/MaxMind.Db.xml", + "maxmind.db.4.1.0.nupkg.sha512", + "maxmind.db.nuspec" + ] + }, + "MaxMind.GeoIP2/5.2.0": { + "sha512": "E8i6yQPlAznLTfS8w208uY3oqCg6i7sQ9cxKmlDdhFMXVLfm4sKphOTMsIWdAHJCV7RxW2a3DlqxAPkQrqmqlA==", + "type": "package", + "path": "maxmind.geoip2/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MaxMind-logo.png", + "README.md", + "lib/net6.0/MaxMind.GeoIP2.dll", + "lib/net6.0/MaxMind.GeoIP2.xml", + "lib/net7.0/MaxMind.GeoIP2.dll", + "lib/net7.0/MaxMind.GeoIP2.xml", + "lib/net8.0/MaxMind.GeoIP2.dll", + "lib/net8.0/MaxMind.GeoIP2.xml", + "lib/netstandard2.0/MaxMind.GeoIP2.dll", + "lib/netstandard2.0/MaxMind.GeoIP2.xml", + "lib/netstandard2.1/MaxMind.GeoIP2.dll", + "lib/netstandard2.1/MaxMind.GeoIP2.xml", + "maxmind.geoip2.5.2.0.nupkg.sha512", + "maxmind.geoip2.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.32": { + "sha512": "tULjwFie6fYm4o6WfD+aHTTrps2I22MQVZpmEWaJumFmzZWA1nHsKezuCBl/u/iKiXtN3npL6MoINaiLHURr/A==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection/3.1.32": { + "sha512": "D46awzK+Q0jP7Bq0cQlsxQrhg7MBhlxG2z+U+9EzcbjcjaDzQvaD5/cxD+qKdu9bHMcSFf9fMr5wizSBPPai1Q==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml", + "microsoft.aspnetcore.dataprotection.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.32": { + "sha512": "MPL4iVyiaRxnOUY5VATHjvhDWaAEFb77KFiUxVRklv3Z3v+STofUr1UG/aCt1O9cgN7FVTDaC5A7U+zsLub8Xg==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "microsoft.aspnetcore.dataprotection.abstractions.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.JsonPatch/8.0.4": { + "sha512": "8iy7uza6GTuE5GadOryGfsGuA8xP1RTs16zqdXF5gM0b8iDfyNWnyDmatY5cZhXE1kJiko0S7s1T/gNFdIZ7Zg==", + "type": "package", + "path": "microsoft.aspnetcore.jsonpatch/8.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net462/Microsoft.AspNetCore.JsonPatch.xml", + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", + "microsoft.aspnetcore.jsonpatch.8.0.4.nupkg.sha512", + "microsoft.aspnetcore.jsonpatch.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.4": { + "sha512": "lhJq0JjrlGZQwQoYrpVbokhb1AlgLGxI3QacSyKgCNOXTNwCi0pUnMR7NrfON20DkL90Kqqyl3wDrLbRaRgcsA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/8.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml", + "microsoft.aspnetcore.mvc.newtonsoftjson.8.0.4.nupkg.sha512", + "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": { + "sha512": "M0h+ChPgydX2xY17agiphnAVa/Qh05RAP8eeuqGGhQKT10claRBlLNO6d2/oSV8zy0RLHzwLnNZm5xuC/gckGA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", + "microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/8.0.4": { + "sha512": "876m+YvEo+rjbZNQv64RhOBtWVD08bOwT/g96G0cBm+810WiSR3f5C79XG+W59PuvF6JLGFz+IXYLHCjLCvOrQ==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/8.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "build/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.8.0.4.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Language/6.0.0": { + "sha512": "yCtBr1GSGzJrrp1NJUb4ltwFYMKHw/tJLnIDvg9g/FnkGIEzmE19tbCQqXARIJv5kdtBgsoVIdGLL+zmjxvM/A==", + "type": "package", + "path": "microsoft.aspnetcore.razor.language/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", + "microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512", + "microsoft.aspnetcore.razor.language.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.rtf", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "build/Microsoft.CodeAnalysis.Analyzers.targets", + "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_Default.editorconfig", + "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_Default.editorconfig", + "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_Default.editorconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "sha512": "d02ybMhUJl1r/dI6SkJPHrTiTzXBYCZeJdOLMckV+jyoMU/GGkjqFX/sRbv1K0QmlpwwKuLTiYVQvfYC+8ox2g==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.4.0.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "sha512": "2UVTGtyQGgTCazvnT6t82f+7AV2L+kqJdyb61rT9GQed4yK+tVh5IkaKcsm70VqyZQhBbDqsfZFNHnY65xhrRw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Razor/6.0.0": { + "sha512": "uqdzuQXxD7XrJCbIbbwpI/LOv0PBJ9VIR0gdvANTHOfK5pjTaCir+XcwvYvBZ5BIzd0KGzyiamzlEWw1cK1q0w==", + "type": "package", + "path": "microsoft.codeanalysis.razor/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", + "microsoft.codeanalysis.razor.6.0.0.nupkg.sha512", + "microsoft.codeanalysis.razor.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/5.2.0": { + "sha512": "3alfyqRN3ELRtdvU1dGtLBRNQqprr3TJ0WrUJfMISPwg1nPUN2P3Lelah68IKWuV27Ceb7ig95hWNHFTSXfxMg==", + "type": "package", + "path": "microsoft.data.sqlclient/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net462/Microsoft.Data.SqlClient.dll", + "lib/net462/Microsoft.Data.SqlClient.xml", + "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/Microsoft.Data.SqlClient.dll", + "lib/net6.0/Microsoft.Data.SqlClient.xml", + "lib/net6.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/Microsoft.Data.SqlClient.dll", + "lib/net8.0/Microsoft.Data.SqlClient.xml", + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "microsoft.data.sqlclient.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net462/Microsoft.Data.SqlClient.dll", + "ref/net462/Microsoft.Data.SqlClient.xml", + "ref/net6.0/Microsoft.Data.SqlClient.dll", + "ref/net6.0/Microsoft.Data.SqlClient.xml", + "ref/net8.0/Microsoft.Data.SqlClient.dll", + "ref/net8.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "sha512": "po1jhvFd+8pbfvJR/puh+fkHi0GRanAdvayh/0e47yaM6CXWZ6opUjCMFuYlAnD2LcbyvQE7fPJKvogmaUcN+w==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.SqlServer/8.0.4": { + "sha512": "Sp3d4JTCC9KRXIRJLvJslKd+UVo4Yffsg9USydEgik71eUWnX88qknDLztxL1kGmLyT4WbG6y0XSLcthw50snQ==", + "type": "package", + "path": "microsoft.extensions.caching.sqlserver/8.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/net462/Microsoft.Extensions.Caching.SqlServer.xml", + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.xml", + "microsoft.extensions.caching.sqlserver.8.0.4.nupkg.sha512", + "microsoft.extensions.caching.sqlserver.nuspec" + ] + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/8.0.4": { + "sha512": "tfhJyJXVY6EpimYbDPrf7P2PerJZ/EWTjEbailE2+uEpETYKKPHAZA35TnZKxqPpOxzAlVyPE33hdgP1HU8B7A==", + "type": "package", + "path": "microsoft.extensions.caching.stackexchangeredis/8.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net462/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "microsoft.extensions.caching.stackexchangeredis.8.0.4.nupkg.sha512", + "microsoft.extensions.caching.stackexchangeredis.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": { + "sha512": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "sha512": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.32": { + "sha512": "sS+U28IfgZSQUS2b3MayPdYGBJlHOWwgnfAZ77bZLkgU0z+lJz7lgzrKQUm9SgKF+OAc5B9kWJV5PB6l7mWWZA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.3.1.32.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.32": { + "sha512": "00J6eE920t5vfPnEHBSGyj1Ya9lG6WYsMwqvLZ0nMPPTD2UxkaL+FNJM5DNSnMFJtV84KkUudPRngmNiCkqhuA==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.3.1.32.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.1": { + "sha512": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.1.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/6.0.16": { + "sha512": "OVX5tlKg6LY+XKqlUn7i9KY+6Liut0iewWff2DNr7129i/NJ8rpUzbmxavPydZgcLREEWHklXZiPKCS895tNIQ==", + "type": "package", + "path": "microsoft.extensions.objectpool/6.0.16", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.ObjectPool.dll", + "lib/net461/Microsoft.Extensions.ObjectPool.xml", + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net6.0/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.6.0.16.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/8.0.2": { + "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "type": "package", + "path": "microsoft.extensions.options/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.2.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.60.3": { + "sha512": "jve1RzmSpBhGlqMzPva6VfRbLMLZZc1Q8WRVZf8+iEruQkBgDTJPq8OeTehcY4GGYG1j6UB1xVofVE+n4BLDdw==", + "type": "package", + "path": "microsoft.identity.client/4.60.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/monoandroid12.0/Microsoft.Identity.Client.dll", + "lib/monoandroid12.0/Microsoft.Identity.Client.xml", + "lib/net462/Microsoft.Identity.Client.dll", + "lib/net462/Microsoft.Identity.Client.xml", + "lib/net6.0-android31.0/Microsoft.Identity.Client.dll", + "lib/net6.0-android31.0/Microsoft.Identity.Client.xml", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml", + "lib/net6.0-windows7.0/Microsoft.Identity.Client.dll", + "lib/net6.0-windows7.0/Microsoft.Identity.Client.xml", + "lib/net6.0/Microsoft.Identity.Client.dll", + "lib/net6.0/Microsoft.Identity.Client.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.xml", + "lib/uap10.0.17763/Microsoft.Identity.Client.dll", + "lib/uap10.0.17763/Microsoft.Identity.Client.pri", + "lib/uap10.0.17763/Microsoft.Identity.Client.xml", + "lib/xamarinios10/Microsoft.Identity.Client.dll", + "lib/xamarinios10/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.60.3.nupkg.sha512", + "microsoft.identity.client.nuspec" + ] + }, + "Microsoft.Identity.Client.Extensions.Msal/4.60.3": { + "sha512": "X1Cz14/RbmlLshusE5u2zfG+5ul6ttgou19BZe5Mdw1qm6fgOI9/imBB2TIsx2UD7nkgd2+MCSzhbukZf7udeg==", + "type": "package", + "path": "microsoft.identity.client.extensions.msal/4.60.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "microsoft.identity.client.extensions.msal.4.60.3.nupkg.sha512", + "microsoft.identity.client.extensions.msal.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", + "type": "package", + "path": "microsoft.netcore.platforms/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.1.2.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.SqlServer.Server/1.0.0": { + "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "type": "package", + "path": "microsoft.sqlserver.server/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.SqlServer.Server.dll", + "lib/net46/Microsoft.SqlServer.Server.pdb", + "lib/net46/Microsoft.SqlServer.Server.xml", + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", + "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", + "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", + "microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "microsoft.sqlserver.server.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MimeKit/4.5.0": { + "sha512": "OYn8b8b66J4mgtDzoImepiUtdkJOAVGoTj/ghzJ+az4wVixA5L5Z8GmgFhRvQ1btAIwZh/d9zvZLCALndQdz5w==", + "type": "package", + "path": "mimekit/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/FAQ.md", + "docs/README.md", + "icons/mimekit-50.png", + "lib/net462/MimeKit.dll", + "lib/net462/MimeKit.dll.config", + "lib/net462/MimeKit.pdb", + "lib/net462/MimeKit.xml", + "lib/net47/MimeKit.dll", + "lib/net47/MimeKit.dll.config", + "lib/net47/MimeKit.pdb", + "lib/net47/MimeKit.xml", + "lib/net48/MimeKit.dll", + "lib/net48/MimeKit.dll.config", + "lib/net48/MimeKit.pdb", + "lib/net48/MimeKit.xml", + "lib/net6.0/MimeKit.dll", + "lib/net6.0/MimeKit.dll.config", + "lib/net6.0/MimeKit.pdb", + "lib/net6.0/MimeKit.xml", + "lib/net8.0/MimeKit.dll", + "lib/net8.0/MimeKit.dll.config", + "lib/net8.0/MimeKit.pdb", + "lib/net8.0/MimeKit.xml", + "lib/netstandard2.0/MimeKit.dll", + "lib/netstandard2.0/MimeKit.dll.config", + "lib/netstandard2.0/MimeKit.pdb", + "lib/netstandard2.0/MimeKit.xml", + "lib/netstandard2.1/MimeKit.dll", + "lib/netstandard2.1/MimeKit.dll.config", + "lib/netstandard2.1/MimeKit.pdb", + "lib/netstandard2.1/MimeKit.xml", + "mimekit.4.5.0.nupkg.sha512", + "mimekit.nuspec" + ] + }, + "MySqlConnector/2.3.7": { + "sha512": "YiVOxvJ+vAYW8NT9gHv8RxKCDFCSXAObF3z0Ou/8WRv8Lsn2QsxaPW5xEwPE+xCcAq6BGkrI8GTOC09Xg09blQ==", + "type": "package", + "path": "mysqlconnector/2.3.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/MySqlConnector.dll", + "lib/net462/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net48/MySqlConnector.dll", + "lib/net48/MySqlConnector.xml", + "lib/net6.0/MySqlConnector.dll", + "lib/net6.0/MySqlConnector.xml", + "lib/net7.0/MySqlConnector.dll", + "lib/net7.0/MySqlConnector.xml", + "lib/net8.0/MySqlConnector.dll", + "lib/net8.0/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.2.3.7.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Newtonsoft.Json.Bson/1.0.2": { + "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.pdb", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", + "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", + "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.2.nupkg.sha512", + "newtonsoft.json.bson.nuspec" + ] + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "sha512": "QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==", + "type": "package", + "path": "nito.asyncex.coordination/5.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.AsyncEx.Coordination.dll", + "lib/net461/Nito.AsyncEx.Coordination.xml", + "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll", + "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml", + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll", + "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml", + "nito.asyncex.coordination.5.1.2.nupkg.sha512", + "nito.asyncex.coordination.nuspec" + ] + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "sha512": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==", + "type": "package", + "path": "nito.asyncex.tasks/5.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.AsyncEx.Tasks.dll", + "lib/net461/Nito.AsyncEx.Tasks.xml", + "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll", + "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml", + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll", + "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml", + "nito.asyncex.tasks.5.1.2.nupkg.sha512", + "nito.asyncex.tasks.nuspec" + ] + }, + "Nito.Collections.Deque/1.1.1": { + "sha512": "CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==", + "type": "package", + "path": "nito.collections.deque/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.Collections.Deque.dll", + "lib/net461/Nito.Collections.Deque.xml", + "lib/netstandard1.0/Nito.Collections.Deque.dll", + "lib/netstandard1.0/Nito.Collections.Deque.xml", + "lib/netstandard2.0/Nito.Collections.Deque.dll", + "lib/netstandard2.0/Nito.Collections.Deque.xml", + "nito.collections.deque.1.1.1.nupkg.sha512", + "nito.collections.deque.nuspec" + ] + }, + "Nito.Disposables/2.2.1": { + "sha512": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==", + "type": "package", + "path": "nito.disposables/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.Disposables.dll", + "lib/net461/Nito.Disposables.xml", + "lib/netstandard1.0/Nito.Disposables.dll", + "lib/netstandard1.0/Nito.Disposables.xml", + "lib/netstandard2.0/Nito.Disposables.dll", + "lib/netstandard2.0/Nito.Disposables.xml", + "lib/netstandard2.1/Nito.Disposables.dll", + "lib/netstandard2.1/Nito.Disposables.xml", + "nito.disposables.2.2.1.nupkg.sha512", + "nito.disposables.nuspec" + ] + }, + "Npgsql/8.0.2": { + "sha512": "MuJzLoWCaQhQAR3oh66YR0Ir6mxuezncGX3f8wxvAc21g0+9HICktJQlqMoODhxztZKXE5k9GxRxqUAN+vPb4g==", + "type": "package", + "path": "npgsql/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net7.0/Npgsql.dll", + "lib/net7.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.8.0.2.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "NUglify/1.21.4": { + "sha512": "MpliYRCSB42dQA9VgHoe6ahgDS4NIDUSr5e+seeHx6GEwLUvIaJ2JZKqWmg6fNfnsEHPZaGjCw/E+p+skZoYGQ==", + "type": "package", + "path": "nuglify/1.21.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/NUglify.dll", + "lib/net35/NUglify.xml", + "lib/net40/NUglify.dll", + "lib/net40/NUglify.xml", + "lib/net5.0/NUglify.dll", + "lib/net5.0/NUglify.xml", + "lib/netstandard1.3/NUglify.dll", + "lib/netstandard1.3/NUglify.xml", + "lib/netstandard2.0/NUglify.dll", + "lib/netstandard2.0/NUglify.xml", + "nuglify.1.21.4.nupkg.sha512", + "nuglify.nuspec", + "nuglify.png" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", + "type": "package", + "path": "pipelines.sockets.unofficial/2.2.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Pipelines.Sockets.Unofficial.dll", + "lib/net461/Pipelines.Sockets.Unofficial.xml", + "lib/net472/Pipelines.Sockets.Unofficial.dll", + "lib/net472/Pipelines.Sockets.Unofficial.xml", + "lib/net5.0/Pipelines.Sockets.Unofficial.dll", + "lib/net5.0/Pipelines.Sockets.Unofficial.xml", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", + "pipelines.sockets.unofficial.2.2.8.nupkg.sha512", + "pipelines.sockets.unofficial.nuspec" + ] + }, + "QuestPDF/2022.12.15": { + "sha512": "KryAKu3WX+KM4pF4Dpn6ycu+7fN2GhtwViuV82CjnxtQ3DpIbRN9PG4lMwICCugyQKStyXSwZZ2UIAeeuKNIew==", + "type": "package", + "path": "questpdf/2022.12.15", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Logo.png", + "PackageReadme.md", + "lib/net6.0/QuestPDF.dll", + "lib/net8.0/QuestPDF.dll", + "lib/netcoreapp3.0/QuestPDF.dll", + "lib/netstandard2.0/QuestPDF.dll", + "questpdf.2022.12.15.nupkg.sha512", + "questpdf.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "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" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "ShimSkiaSharp/1.0.0.18": { + "sha512": "zcUISy3XoIPrYWOeHqt/CrM2oX+OHon91aEtIbfiWb/7eP5V20kjkwhN1h4V0eloy62jVE8H1TE5PCVQ0k0M2Q==", + "type": "package", + "path": "shimskiasharp/1.0.0.18", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/ShimSkiaSharp.dll", + "lib/net6.0/ShimSkiaSharp.dll", + "lib/net8.0/ShimSkiaSharp.dll", + "lib/netstandard2.0/ShimSkiaSharp.dll", + "shimskiasharp.1.0.0.18.nupkg.sha512", + "shimskiasharp.nuspec" + ] + }, + "SixLabors.Fonts/1.0.0": { + "sha512": "LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==", + "type": "package", + "path": "sixlabors.fonts/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/SixLabors.Fonts.dll", + "lib/netcoreapp3.1/SixLabors.Fonts.xml", + "lib/netstandard2.0/SixLabors.Fonts.dll", + "lib/netstandard2.0/SixLabors.Fonts.xml", + "lib/netstandard2.1/SixLabors.Fonts.dll", + "lib/netstandard2.1/SixLabors.Fonts.xml", + "sixlabors.fonts.1.0.0.nupkg.sha512", + "sixlabors.fonts.128.png", + "sixlabors.fonts.nuspec" + ] + }, + "SkiaSharp/2.88.8": { + "sha512": "bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==", + "type": "package", + "path": "skiasharp/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll", + "lib/monoandroid1.0/SkiaSharp.dll", + "lib/monoandroid1.0/SkiaSharp.pdb", + "lib/monoandroid1.0/SkiaSharp.xml", + "lib/net462/SkiaSharp.dll", + "lib/net462/SkiaSharp.pdb", + "lib/net462/SkiaSharp.xml", + "lib/net6.0-android30.0/SkiaSharp.dll", + "lib/net6.0-android30.0/SkiaSharp.pdb", + "lib/net6.0-android30.0/SkiaSharp.xml", + "lib/net6.0-ios13.6/SkiaSharp.dll", + "lib/net6.0-ios13.6/SkiaSharp.pdb", + "lib/net6.0-ios13.6/SkiaSharp.xml", + "lib/net6.0-maccatalyst13.5/SkiaSharp.dll", + "lib/net6.0-maccatalyst13.5/SkiaSharp.pdb", + "lib/net6.0-maccatalyst13.5/SkiaSharp.xml", + "lib/net6.0-macos10.15/SkiaSharp.dll", + "lib/net6.0-macos10.15/SkiaSharp.pdb", + "lib/net6.0-macos10.15/SkiaSharp.xml", + "lib/net6.0-tizen7.0/SkiaSharp.dll", + "lib/net6.0-tizen7.0/SkiaSharp.pdb", + "lib/net6.0-tizen7.0/SkiaSharp.xml", + "lib/net6.0-tvos13.4/SkiaSharp.dll", + "lib/net6.0-tvos13.4/SkiaSharp.pdb", + "lib/net6.0-tvos13.4/SkiaSharp.xml", + "lib/net6.0/SkiaSharp.dll", + "lib/net6.0/SkiaSharp.pdb", + "lib/net6.0/SkiaSharp.xml", + "lib/netcoreapp3.1/SkiaSharp.dll", + "lib/netcoreapp3.1/SkiaSharp.pdb", + "lib/netcoreapp3.1/SkiaSharp.xml", + "lib/netstandard1.3/SkiaSharp.dll", + "lib/netstandard1.3/SkiaSharp.pdb", + "lib/netstandard1.3/SkiaSharp.xml", + "lib/netstandard2.0/SkiaSharp.dll", + "lib/netstandard2.0/SkiaSharp.pdb", + "lib/netstandard2.0/SkiaSharp.xml", + "lib/netstandard2.1/SkiaSharp.dll", + "lib/netstandard2.1/SkiaSharp.pdb", + "lib/netstandard2.1/SkiaSharp.xml", + "lib/tizen40/SkiaSharp.dll", + "lib/tizen40/SkiaSharp.pdb", + "lib/tizen40/SkiaSharp.xml", + "lib/uap10.0.10240/SkiaSharp.dll", + "lib/uap10.0.10240/SkiaSharp.pdb", + "lib/uap10.0.10240/SkiaSharp.xml", + "lib/uap10.0.16299/SkiaSharp.dll", + "lib/uap10.0.16299/SkiaSharp.pdb", + "lib/uap10.0.16299/SkiaSharp.xml", + "lib/xamarinios1.0/SkiaSharp.dll", + "lib/xamarinios1.0/SkiaSharp.pdb", + "lib/xamarinios1.0/SkiaSharp.xml", + "lib/xamarinmac2.0/SkiaSharp.dll", + "lib/xamarinmac2.0/SkiaSharp.pdb", + "lib/xamarinmac2.0/SkiaSharp.xml", + "lib/xamarintvos1.0/SkiaSharp.dll", + "lib/xamarintvos1.0/SkiaSharp.pdb", + "lib/xamarintvos1.0/SkiaSharp.xml", + "lib/xamarinwatchos1.0/SkiaSharp.dll", + "lib/xamarinwatchos1.0/SkiaSharp.pdb", + "lib/xamarinwatchos1.0/SkiaSharp.xml", + "skiasharp.2.88.8.nupkg.sha512", + "skiasharp.nuspec" + ] + }, + "SkiaSharp.HarfBuzz/2.88.7": { + "sha512": "4Vd+GpokorZNpDvUp09zjK6CMXN35zyJtNvzkGtS1TsXlG/5yA3lWTsQIU0nSQjfgpYql0tSEU5+WTsjxljugg==", + "type": "package", + "path": "skiasharp.harfbuzz/2.88.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net462/SkiaSharp.HarfBuzz.dll", + "lib/net462/SkiaSharp.HarfBuzz.pdb", + "lib/net462/SkiaSharp.HarfBuzz.xml", + "lib/net6.0/SkiaSharp.HarfBuzz.dll", + "lib/net6.0/SkiaSharp.HarfBuzz.pdb", + "lib/net6.0/SkiaSharp.HarfBuzz.xml", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.dll", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.pdb", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.xml", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.dll", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.xml", + "skiasharp.harfbuzz.2.88.7.nupkg.sha512", + "skiasharp.harfbuzz.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.8": { + "sha512": "/DoKtdyvRgCC5GR/SH+ps3ZiOjmf0BYpAyrhWQELFOO1hdcqddrDVJjDNCOJ41vV+NlS5b3kcDoZZ7jLhFjyXg==", + "type": "package", + "path": "skiasharp.nativeassets.linux.nodependencies/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Linux.NoDependencies.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Linux.NoDependencies.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libSkiaSharp.so", + "runtimes/linux-arm64/native/libSkiaSharp.so", + "runtimes/linux-musl-x64/native/libSkiaSharp.so", + "runtimes/linux-x64/native/libSkiaSharp.so", + "skiasharp.nativeassets.linux.nodependencies.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.linux.nodependencies.nuspec" + ] + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "sha512": "6Kn5TSkKlfyS6azWHF3Jk2sW5C4jCE5uSshM/5AbfFrR+5n6qM5XEnz9h4VaVl7LTxBvHvMkuPb/3bpbq0vxTw==", + "type": "package", + "path": "skiasharp.nativeassets.macos/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libSkiaSharp.dylib", + "skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.macos.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "sha512": "O9QXoWEXA+6cweR4h3BOnwMz+pO9vL9mXdjLrpDd0w1QzCgWmLQBxa1VgySDITiH7nQndrDG1h6937zm9pLj1Q==", + "type": "package", + "path": "skiasharp.nativeassets.win32/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libSkiaSharp.dll", + "runtimes/win-x64/native/libSkiaSharp.dll", + "runtimes/win-x86/native/libSkiaSharp.dll", + "skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.win32.nuspec" + ] + }, + "StackExchange.Redis/2.7.27": { + "sha512": "Uqc2OQHglqj9/FfGQ6RkKFkZfHySfZlfmbCl+hc+u2I/IqunfelQ7QJi7ZhvAJxUtu80pildVX6NPLdDaUffOw==", + "type": "package", + "path": "stackexchange.redis/2.7.27", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/StackExchange.Redis.dll", + "lib/net461/StackExchange.Redis.xml", + "lib/net472/StackExchange.Redis.dll", + "lib/net472/StackExchange.Redis.xml", + "lib/net6.0/StackExchange.Redis.dll", + "lib/net6.0/StackExchange.Redis.xml", + "lib/netcoreapp3.1/StackExchange.Redis.dll", + "lib/netcoreapp3.1/StackExchange.Redis.xml", + "lib/netstandard2.0/StackExchange.Redis.dll", + "lib/netstandard2.0/StackExchange.Redis.xml", + "stackexchange.redis.2.7.27.nupkg.sha512", + "stackexchange.redis.nuspec" + ] + }, + "Svg.Custom/1.0.0.18": { + "sha512": "bavGcKBodZwHY65Yw2JJ/Vd2ghNh7FYrqiDngPDv21uu6Uy8pj9FAQWYyoeBAyPmEVN/WFAl1l4CKMGEYlIuXw==", + "type": "package", + "path": "svg.custom/1.0.0.18", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Svg.Custom.dll", + "lib/net8.0/Svg.Custom.dll", + "lib/netstandard2.0/Svg.Custom.dll", + "svg.custom.1.0.0.18.nupkg.sha512", + "svg.custom.nuspec" + ] + }, + "Svg.Model/1.0.0.18": { + "sha512": "DXs+nOWjR4/xZp5wExWS3Ih8JN3MAwdhIrczduzKkO2pIox08DQnoyWWGy9nVlGnby7gyqAMDtLpbY639pugcA==", + "type": "package", + "path": "svg.model/1.0.0.18", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Model.dll", + "lib/net6.0/Svg.Model.dll", + "lib/net8.0/Svg.Model.dll", + "lib/netstandard2.0/Svg.Model.dll", + "svg.model.1.0.0.18.nupkg.sha512", + "svg.model.nuspec" + ] + }, + "Svg.Skia/1.0.0.18": { + "sha512": "o+fajf+Z3OUtLahZuwigeeS+bXNr21iyP4koweeDln9hD7Bzayw50IHJ6bPprfkRMpMkwMob7rWyupYq0GaEAg==", + "type": "package", + "path": "svg.skia/1.0.0.18", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Skia.dll", + "lib/net6.0/Svg.Skia.dll", + "lib/net8.0/Svg.Skia.dll", + "lib/netstandard2.0/Svg.Skia.dll", + "svg.skia.1.0.0.18.nupkg.sha512", + "svg.skia.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.ClientModel/1.0.0": { + "sha512": "I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==", + "type": "package", + "path": "system.clientmodel/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net6.0/System.ClientModel.dll", + "lib/net6.0/System.ClientModel.xml", + "lib/netstandard2.0/System.ClientModel.dll", + "lib/netstandard2.0/System.ClientModel.xml", + "system.clientmodel.1.0.0.nupkg.sha512", + "system.clientmodel.nuspec" + ] + }, + "System.CodeDom/7.0.0": { + "sha512": "GLltyqEsE5/3IE+zYRP5sNa1l44qKl9v+bfdMcwg+M9qnQf47wK3H0SUR/T+3N4JEQXF3vV4CSuuo0rsg+nq2A==", + "type": "package", + "path": "system.codedom/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.CodeDom.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "lib/net462/System.CodeDom.dll", + "lib/net462/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/net7.0/System.CodeDom.dll", + "lib/net7.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.7.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/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.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.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/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/8.0.0": { + "sha512": "JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", + "type": "package", + "path": "system.configuration.configurationmanager/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/net7.0/System.Configuration.ConfigurationManager.dll", + "lib/net7.0/System.Configuration.ConfigurationManager.xml", + "lib/net8.0/System.Configuration.ConfigurationManager.dll", + "lib/net8.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.8.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/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.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/7.0.2": { + "sha512": "hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/8.0.0": { + "sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==", + "type": "package", + "path": "system.diagnostics.eventlog/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/net7.0/System.Diagnostics.EventLog.dll", + "lib/net7.0/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.8.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/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.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.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.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Formats.Asn1/8.0.0": { + "sha512": "AJukBuLoe3QeAF+mfaRKQb2dgyrvt340iMBHYv+VdBzCUM06IxGlvl0o/uPOS7lHnXPN6u8fFRHSHudx5aTi8w==", + "type": "package", + "path": "system.formats.asn1/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Formats.Asn1.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "lib/net462/System.Formats.Asn1.dll", + "lib/net462/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/net7.0/System.Formats.Asn1.dll", + "lib/net7.0/System.Formats.Asn1.xml", + "lib/net8.0/System.Formats.Asn1.dll", + "lib/net8.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.8.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "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.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.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.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.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/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Hashing/6.0.0": { + "sha512": "Rfm2jYCaUeGysFEZjDe7j1R4x6Z6BzumS/vUT5a1AA/AWJuGX71PoGB0RmpyX3VmrGqVnAwtfMn39OHR8Y/5+g==", + "type": "package", + "path": "system.io.hashing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Hashing.dll", + "lib/net461/System.IO.Hashing.xml", + "lib/net6.0/System.IO.Hashing.dll", + "lib/net6.0/System.IO.Hashing.xml", + "lib/netstandard2.0/System.IO.Hashing.dll", + "lib/netstandard2.0/System.IO.Hashing.xml", + "system.io.hashing.6.0.0.nupkg.sha512", + "system.io.hashing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Packaging/6.0.0": { + "sha512": "C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", + "type": "package", + "path": "system.io.packaging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Packaging.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Packaging.dll", + "lib/net461/System.IO.Packaging.xml", + "lib/net6.0/System.IO.Packaging.dll", + "lib/net6.0/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.6.0.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/5.0.1": { + "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==", + "type": "package", + "path": "system.io.pipelines/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/netcoreapp3.0/System.IO.Pipelines.dll", + "lib/netcoreapp3.0/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netcoreapp2.0/System.IO.Pipelines.dll", + "ref/netcoreapp2.0/System.IO.Pipelines.xml", + "system.io.pipelines.5.0.1.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.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/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Async/6.0.1": { + "sha512": "0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==", + "type": "package", + "path": "system.linq.async/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Logo.png", + "lib/net48/System.Linq.Async.dll", + "lib/net48/System.Linq.Async.xml", + "lib/net6.0/System.Linq.Async.dll", + "lib/net6.0/System.Linq.Async.xml", + "lib/netstandard2.0/System.Linq.Async.dll", + "lib/netstandard2.0/System.Linq.Async.xml", + "lib/netstandard2.1/System.Linq.Async.dll", + "lib/netstandard2.1/System.Linq.Async.xml", + "ref/net48/System.Linq.Async.dll", + "ref/net48/System.Linq.Async.xml", + "ref/net6.0/System.Linq.Async.dll", + "ref/net6.0/System.Linq.Async.xml", + "ref/netstandard2.0/System.Linq.Async.dll", + "ref/netstandard2.0/System.Linq.Async.xml", + "ref/netstandard2.1/System.Linq.Async.dll", + "ref/netstandard2.1/System.Linq.Async.xml", + "system.linq.async.6.0.1.nupkg.sha512", + "system.linq.async.nuspec" + ] + }, + "System.Linq.Dynamic.Core/1.3.12": { + "sha512": "uriIEVgq1Wp1wcGohFkS4VESynM2za9BhCH/Vtaxtq8cwvRCobjq9ZLnCrzRLwtJqexKRaH2ItBZwuMRISsclw==", + "type": "package", + "path": "system.linq.dynamic.core/1.3.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PackageReadme.md", + "lib/net35/System.Linq.Dynamic.Core.dll", + "lib/net35/System.Linq.Dynamic.Core.pdb", + "lib/net35/System.Linq.Dynamic.Core.xml", + "lib/net40/System.Linq.Dynamic.Core.dll", + "lib/net40/System.Linq.Dynamic.Core.pdb", + "lib/net40/System.Linq.Dynamic.Core.xml", + "lib/net45/System.Linq.Dynamic.Core.dll", + "lib/net45/System.Linq.Dynamic.Core.pdb", + "lib/net45/System.Linq.Dynamic.Core.xml", + "lib/net452/System.Linq.Dynamic.Core.dll", + "lib/net452/System.Linq.Dynamic.Core.pdb", + "lib/net452/System.Linq.Dynamic.Core.xml", + "lib/net46/System.Linq.Dynamic.Core.dll", + "lib/net46/System.Linq.Dynamic.Core.pdb", + "lib/net46/System.Linq.Dynamic.Core.xml", + "lib/net5.0/System.Linq.Dynamic.Core.dll", + "lib/net5.0/System.Linq.Dynamic.Core.pdb", + "lib/net5.0/System.Linq.Dynamic.Core.xml", + "lib/net6.0/System.Linq.Dynamic.Core.dll", + "lib/net6.0/System.Linq.Dynamic.Core.pdb", + "lib/net6.0/System.Linq.Dynamic.Core.xml", + "lib/net7.0/System.Linq.Dynamic.Core.dll", + "lib/net7.0/System.Linq.Dynamic.Core.pdb", + "lib/net7.0/System.Linq.Dynamic.Core.xml", + "lib/net8.0/System.Linq.Dynamic.Core.dll", + "lib/net8.0/System.Linq.Dynamic.Core.pdb", + "lib/net8.0/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.xml", + "lib/netstandard1.3/System.Linq.Dynamic.Core.dll", + "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb", + "lib/netstandard1.3/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.0/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.0/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.1/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.1/System.Linq.Dynamic.Core.xml", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml", + "logo.png", + "system.linq.dynamic.core.1.3.12.nupkg.sha512", + "system.linq.dynamic.core.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.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/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.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.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Management/7.0.2": { + "sha512": "/qEUN91mP/MUQmJnM5y5BdT7ZoPuVrtxnFlbJ8a3kBJGhe2wCzBfnPFtK2wTtEEcf3DMGR9J00GZZfg6HRI6yA==", + "type": "package", + "path": "system.management/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "lib/net462/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/net7.0/System.Management.dll", + "lib/net7.0/System.Management.xml", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/net7.0/System.Management.dll", + "runtimes/win/lib/net7.0/System.Management.xml", + "system.management.7.0.2.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory.Data/1.0.2": { + "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "type": "package", + "path": "system.memory.data/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net461/System.Memory.Data.dll", + "lib/net461/System.Memory.Data.xml", + "lib/netstandard2.0/System.Memory.Data.dll", + "lib/netstandard2.0/System.Memory.Data.xml", + "system.memory.data.1.0.2.nupkg.sha512", + "system.memory.data.nuspec" + ] + }, + "System.Net.Http/4.3.4": { + "sha512": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "type": "package", + "path": "system.net.http/4.3.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.4.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.3.0": { + "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "type": "package", + "path": "system.net.nameresolution/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.3.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.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.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.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.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.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.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.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.Metadata/5.0.0": { + "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "type": "package", + "path": "system.reflection.metadata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Reflection.Metadata.dll", + "lib/net461/System.Reflection.Metadata.xml", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.5.0.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.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.Caching/8.0.0": { + "sha512": "4TmlmvGp4kzZomm7J2HJn6IIx0UUrQyhBDyb5O1XiunZlQImXW+B8b7W/sTPcXhSf9rp5NR5aDtQllwbB5elOQ==", + "type": "package", + "path": "system.runtime.caching/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/net7.0/System.Runtime.Caching.dll", + "lib/net7.0/System.Runtime.Caching.xml", + "lib/net8.0/System.Runtime.Caching.dll", + "lib/net8.0/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net7.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net7.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net8.0/System.Runtime.Caching.xml", + "system.runtime.caching.8.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "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.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.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/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "sha512": "ULmp3xoOwNYjOYp4JZ2NK/6NdTgiN1GQXzVVN1njQ7LOZ0d0B9vyMnhyqbIi9Qw4JXj1JgCsitkTShboHRx7Eg==", + "type": "package", + "path": "system.security.cryptography.pkcs/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "lib/net462/System.Security.Cryptography.Pkcs.dll", + "lib/net462/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.8.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "type": "package", + "path": "system.security.cryptography.protecteddata/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Cryptography.Xml/6.0.1": { + "sha512": "5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==", + "type": "package", + "path": "system.security.cryptography.xml/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/net6.0/System.Security.Cryptography.Xml.dll", + "lib/net6.0/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.6.0.1.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Http/8.0.0": { + "sha512": "Qwkoe0F+2e/2LiNwiIgfBTJTw11flv208UwS38ru+GR7nZk2VdGvAE8tqGB0RQIGra73Rux9jKNgfy1XtfXdLg==", + "type": "package", + "path": "system.servicemodel.http/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.ServiceModel.Http.dll", + "lib/net8.0/System.ServiceModel.Http.pdb", + "lib/net8.0/cs/System.ServiceModel.Http.resources.dll", + "lib/net8.0/de/System.ServiceModel.Http.resources.dll", + "lib/net8.0/es/System.ServiceModel.Http.resources.dll", + "lib/net8.0/fr/System.ServiceModel.Http.resources.dll", + "lib/net8.0/it/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ja/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ko/System.ServiceModel.Http.resources.dll", + "lib/net8.0/pl/System.ServiceModel.Http.resources.dll", + "lib/net8.0/pt-BR/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ru/System.ServiceModel.Http.resources.dll", + "lib/net8.0/tr/System.ServiceModel.Http.resources.dll", + "lib/net8.0/zh-Hans/System.ServiceModel.Http.resources.dll", + "lib/net8.0/zh-Hant/System.ServiceModel.Http.resources.dll", + "system.servicemodel.http.8.0.0.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.Primitives/8.0.0": { + "sha512": "hVzK77Bl00H+1V7ho7h03tKlgxAIKssV3eUnRdH+gTCZCK4Ywnv2CR35AV9ly/tRpvsGwNL1d/jkAwB1MWw3Fw==", + "type": "package", + "path": "system.servicemodel.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.ServiceModel.Primitives.dll", + "lib/net8.0/System.ServiceModel.Primitives.pdb", + "lib/net8.0/cs/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/de/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/es/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/fr/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/it/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ja/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ko/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/pl/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/pt-BR/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ru/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/tr/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/zh-Hans/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/zh-Hant/System.ServiceModel.Primitives.resources.dll", + "ref/net8.0/System.ServiceModel.Primitives.dll", + "system.servicemodel.primitives.8.0.0.nupkg.sha512", + "system.servicemodel.primitives.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/4.5.1": { + "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "type": "package", + "path": "system.text.encoding.codepages/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "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/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.5.1.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.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.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/8.0.0": { + "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "type": "package", + "path": "system.text.encodings.web/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.8.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/8.0.0": { + "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "type": "package", + "path": "system.text.json/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.8.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.1": { + "sha512": "N0kNRrWe4+nXOWlpLT4LAY5brb8caNFlUuIRpraCVMDLYutKkol1aV079rQjLuSxKMJT2SpBQsYX9xbcTMmzwg==", + "type": "package", + "path": "system.text.regularexpressions/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.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/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.1.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "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" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.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/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.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.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "WebMarkupMin.AspNet.Common/2.16.0": { + "sha512": "9jNoL5isfNdxGqmAtW0jPlA7vjU+k9ypl/3SWviK8YPJKxDsU5LH5HXLsP/2W3lcq9eN1axy2XHzUolAV7EX9A==", + "type": "package", + "path": "webmarkupmin.aspnet.common/2.16.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "icon.png", + "lib/net40/WebMarkupMin.AspNet.Common.dll", + "lib/net40/WebMarkupMin.AspNet.Common.xml", + "lib/net45/WebMarkupMin.AspNet.Common.dll", + "lib/net45/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard1.3/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard1.3/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard2.0/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard2.0/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.xml", + "readme.txt", + "webmarkupmin.aspnet.common.2.16.0.nupkg.sha512", + "webmarkupmin.aspnet.common.nuspec" + ] + }, + "WebMarkupMin.AspNetCore8/2.16.0": { + "sha512": "Tx2brMbWWs0fuYGeNsorH50nGBL2JImgx6M/FBwUsmRqkXsBng/tDMdfA+rekKq4IQAdWYsWy3I1UDVLGgrDvw==", + "type": "package", + "path": "webmarkupmin.aspnetcore8/2.16.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "icon.png", + "lib/net8.0/WebMarkupMin.AspNetCore8.dll", + "lib/net8.0/WebMarkupMin.AspNetCore8.xml", + "readme.txt", + "webmarkupmin.aspnetcore8.2.16.0.nupkg.sha512", + "webmarkupmin.aspnetcore8.nuspec" + ] + }, + "WebMarkupMin.Core/2.16.0": { + "sha512": "0ndPjU+SxszmnynCpx7pK2iyz2o4VB9cdVdejh4KlXaxvcFFspBM443iXSFkt36W4nkgSc4idDm7pctXEpOQ3A==", + "type": "package", + "path": "webmarkupmin.core/2.16.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "icon.png", + "lib/net40-client/WebMarkupMin.Core.dll", + "lib/net40-client/WebMarkupMin.Core.xml", + "lib/net45/WebMarkupMin.Core.dll", + "lib/net45/WebMarkupMin.Core.xml", + "lib/netstandard1.3/WebMarkupMin.Core.dll", + "lib/netstandard1.3/WebMarkupMin.Core.xml", + "lib/netstandard2.0/WebMarkupMin.Core.dll", + "lib/netstandard2.0/WebMarkupMin.Core.xml", + "lib/netstandard2.1/WebMarkupMin.Core.dll", + "lib/netstandard2.1/WebMarkupMin.Core.xml", + "readme.txt", + "webmarkupmin.core.2.16.0.nupkg.sha512", + "webmarkupmin.core.nuspec" + ] + }, + "WebMarkupMin.NUglify/2.16.0": { + "sha512": "Ux09ry3Zg/1cW7tVBX7pcqaiX59uRZopWyiT3TaNn15PfDtR9IvO7Yeb1GGHx397ZH2apm/AMX1/ZxWEitl6Aw==", + "type": "package", + "path": "webmarkupmin.nuglify/2.16.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "icon.png", + "lib/net40-client/WebMarkupMin.NUglify.dll", + "lib/net40-client/WebMarkupMin.NUglify.xml", + "lib/net45/WebMarkupMin.NUglify.dll", + "lib/net45/WebMarkupMin.NUglify.xml", + "lib/netstandard1.3/WebMarkupMin.NUglify.dll", + "lib/netstandard1.3/WebMarkupMin.NUglify.xml", + "lib/netstandard2.0/WebMarkupMin.NUglify.dll", + "lib/netstandard2.0/WebMarkupMin.NUglify.xml", + "nuglify-license.txt", + "readme.txt", + "webmarkupmin.nuglify.2.16.0.nupkg.sha512", + "webmarkupmin.nuglify.nuspec" + ] + }, + "XLParser/1.5.2": { + "sha512": "8tnUCmMbn6c/HGuHFyq1sulHym8YReTKDNXFFQk0U8nldNx6RGrwRvLh0+aQjEc7YoC3Q1ztH1npLt7dClKqjw==", + "type": "package", + "path": "xlparser/1.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/XLParser.dll", + "lib/net461/XLParser.dll", + "lib/netstandard1.6/XLParser.dll", + "xlparser.1.5.2.nupkg.sha512", + "xlparser.nuspec" + ] + }, + "Nop.Core/4.70.0": { + "type": "project", + "path": "../../Libraries/Nop.Core/Nop.Core.csproj", + "msbuildProject": "../../Libraries/Nop.Core/Nop.Core.csproj" + }, + "Nop.Data/4.70.0": { + "type": "project", + "path": "../../Libraries/Nop.Data/Nop.Data.csproj", + "msbuildProject": "../../Libraries/Nop.Data/Nop.Data.csproj" + }, + "Nop.Services/4.70.0": { + "type": "project", + "path": "../../Libraries/Nop.Services/Nop.Services.csproj", + "msbuildProject": "../../Libraries/Nop.Services/Nop.Services.csproj" + }, + "Nop.Web/4.70.0": { + "type": "project", + "path": "../../Presentation/Nop.Web/Nop.Web.csproj", + "msbuildProject": "../../Presentation/Nop.Web/Nop.Web.csproj" + }, + "Nop.Web.Framework/4.70.0": { + "type": "project", + "path": "../../Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj", + "msbuildProject": "../../Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Nop.Web >= 4.70.0" + ] + }, + "packageFolders": { + "C:\\Users\\Ádám\\.nuget\\packages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.ACAgeVerification\\Nop.Plugin.Widgets.ACAgeVerification.csproj", + "projectName": "Nop.Plugin.Widgets.ACAgeVerification", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.ACAgeVerification\\Nop.Plugin.Widgets.ACAgeVerification.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.ACAgeVerification\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\Nop.Web.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web\\Nop.Web.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/obj/project.nuget.cache b/Nop.Plugin.Widgets.ACAgeVerification/obj/project.nuget.cache new file mode 100644 index 0000000..58af729 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/obj/project.nuget.cache @@ -0,0 +1,285 @@ +{ + "version": 2, + "dgSpecHash": "eDc+FhuI6w0=", + "success": true, + "projectFilePath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.ACAgeVerification\\Nop.Plugin.Widgets.ACAgeVerification.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Ádám\\.nuget\\packages\\advancedstringbuilder\\0.1.1\\advancedstringbuilder.0.1.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\autofac\\8.0.0\\autofac.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\autofac.extensions.dependencyinjection\\9.0.0\\autofac.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\automapper\\13.0.1\\automapper.13.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.extensions.aspnetcore.dataprotection.blobs\\1.3.4\\azure.extensions.aspnetcore.dataprotection.blobs.1.3.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.extensions.aspnetcore.dataprotection.keys\\1.2.3\\azure.extensions.aspnetcore.dataprotection.keys.1.2.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.identity\\1.11.2\\azure.identity.1.11.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.security.keyvault.keys\\4.2.0\\azure.security.keyvault.keys.4.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.storage.blobs\\12.19.1\\azure.storage.blobs.12.19.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.storage.common\\12.18.1\\azure.storage.common.12.18.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\bouncycastle.cryptography\\2.3.0\\bouncycastle.cryptography.2.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\closedxml\\0.102.2\\closedxml.0.102.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\documentformat.openxml\\2.16.0\\documentformat.openxml.2.16.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\excelnumberformat\\1.1.0\\excelnumberformat.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\excss\\4.2.3\\excss.4.2.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\firebirdsql.data.firebirdclient\\10.0.0\\firebirdsql.data.firebirdclient.10.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator\\5.2.0\\fluentmigrator.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.abstractions\\5.2.0\\fluentmigrator.abstractions.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.mysql\\5.1.0\\fluentmigrator.extensions.mysql.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.oracle\\5.1.0\\fluentmigrator.extensions.oracle.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.postgres\\5.1.0\\fluentmigrator.extensions.postgres.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.snowflake\\5.1.0\\fluentmigrator.extensions.snowflake.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.sqlserver\\5.1.0\\fluentmigrator.extensions.sqlserver.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner\\5.1.0\\fluentmigrator.runner.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.core\\5.1.0\\fluentmigrator.runner.core.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.db2\\5.1.0\\fluentmigrator.runner.db2.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.firebird\\5.1.0\\fluentmigrator.runner.firebird.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.hana\\5.1.0\\fluentmigrator.runner.hana.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.mysql\\5.1.0\\fluentmigrator.runner.mysql.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.oracle\\5.1.0\\fluentmigrator.runner.oracle.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.postgres\\5.1.0\\fluentmigrator.runner.postgres.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.redshift\\5.1.0\\fluentmigrator.runner.redshift.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.snowflake\\5.1.0\\fluentmigrator.runner.snowflake.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.sqlite\\5.1.0\\fluentmigrator.runner.sqlite.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.sqlserver\\5.1.0\\fluentmigrator.runner.sqlserver.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation\\11.5.1\\fluentvalidation.11.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation.aspnetcore\\11.3.0\\fluentvalidation.aspnetcore.11.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\11.5.1\\fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis\\1.68.0\\google.apis.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis.auth\\1.68.0\\google.apis.auth.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis.core\\1.68.0\\google.apis.core.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp\\7.3.0.1\\harfbuzzsharp.7.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.linux\\2.8.2.3\\harfbuzzsharp.nativeassets.linux.2.8.2.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.macos\\7.3.0.1\\harfbuzzsharp.nativeassets.macos.7.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.win32\\7.3.0.1\\harfbuzzsharp.nativeassets.win32.7.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer\\2.14.1\\humanizer.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.af\\2.14.1\\humanizer.core.af.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ar\\2.14.1\\humanizer.core.ar.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.az\\2.14.1\\humanizer.core.az.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.bg\\2.14.1\\humanizer.core.bg.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.bn-bd\\2.14.1\\humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.cs\\2.14.1\\humanizer.core.cs.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.da\\2.14.1\\humanizer.core.da.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.de\\2.14.1\\humanizer.core.de.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.el\\2.14.1\\humanizer.core.el.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.es\\2.14.1\\humanizer.core.es.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fa\\2.14.1\\humanizer.core.fa.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fi-fi\\2.14.1\\humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fr\\2.14.1\\humanizer.core.fr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fr-be\\2.14.1\\humanizer.core.fr-be.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.he\\2.14.1\\humanizer.core.he.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hr\\2.14.1\\humanizer.core.hr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hu\\2.14.1\\humanizer.core.hu.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hy\\2.14.1\\humanizer.core.hy.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.id\\2.14.1\\humanizer.core.id.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.is\\2.14.1\\humanizer.core.is.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.it\\2.14.1\\humanizer.core.it.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ja\\2.14.1\\humanizer.core.ja.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ko-kr\\2.14.1\\humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ku\\2.14.1\\humanizer.core.ku.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.lv\\2.14.1\\humanizer.core.lv.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ms-my\\2.14.1\\humanizer.core.ms-my.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.mt\\2.14.1\\humanizer.core.mt.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nb\\2.14.1\\humanizer.core.nb.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nb-no\\2.14.1\\humanizer.core.nb-no.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nl\\2.14.1\\humanizer.core.nl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.pl\\2.14.1\\humanizer.core.pl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.pt\\2.14.1\\humanizer.core.pt.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ro\\2.14.1\\humanizer.core.ro.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ru\\2.14.1\\humanizer.core.ru.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sk\\2.14.1\\humanizer.core.sk.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sl\\2.14.1\\humanizer.core.sl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sr\\2.14.1\\humanizer.core.sr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sr-latn\\2.14.1\\humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sv\\2.14.1\\humanizer.core.sv.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.th-th\\2.14.1\\humanizer.core.th-th.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.tr\\2.14.1\\humanizer.core.tr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uk\\2.14.1\\humanizer.core.uk.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uz-cyrl-uz\\2.14.1\\humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uz-latn-uz\\2.14.1\\humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.vi\\2.14.1\\humanizer.core.vi.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-cn\\2.14.1\\humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-hans\\2.14.1\\humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-hant\\2.14.1\\humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\irony.netcore\\1.0.11\\irony.netcore.1.0.11.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\ligershark.weboptimizer.core\\3.0.405\\ligershark.weboptimizer.core.3.0.405.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\linq2db\\5.4.1\\linq2db.5.4.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mailkit\\4.5.0\\mailkit.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\maxmind.db\\4.1.0\\maxmind.db.4.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\maxmind.geoip2\\5.2.0\\maxmind.geoip2.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\3.1.32\\microsoft.aspnetcore.cryptography.internal.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.dataprotection\\3.1.32\\microsoft.aspnetcore.dataprotection.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.dataprotection.abstractions\\3.1.32\\microsoft.aspnetcore.dataprotection.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\8.0.4\\microsoft.aspnetcore.jsonpatch.8.0.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\8.0.4\\microsoft.aspnetcore.mvc.newtonsoftjson.8.0.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.extensions\\6.0.0\\microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.runtimecompilation\\8.0.4\\microsoft.aspnetcore.mvc.razor.runtimecompilation.8.0.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\6.0.0\\microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.0\\microsoft.codeanalysis.common.4.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.0\\microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.razor\\6.0.0\\microsoft.codeanalysis.razor.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.0\\microsoft.data.sqlclient.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.2.0\\microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.sqlserver\\8.0.4\\microsoft.extensions.caching.sqlserver.8.0.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.stackexchangeredis\\8.0.4\\microsoft.extensions.caching.stackexchangeredis.8.0.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.1\\microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.0\\microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.32\\microsoft.extensions.fileproviders.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.32\\microsoft.extensions.hosting.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.1\\microsoft.extensions.logging.abstractions.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.objectpool\\6.0.16\\microsoft.extensions.objectpool.6.0.16.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identity.client\\4.60.3\\microsoft.identity.client.4.60.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.60.3\\microsoft.identity.client.extensions.msal.4.60.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mimekit\\4.5.0\\mimekit.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mysqlconnector\\2.3.7\\mysqlconnector.2.3.7.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.asyncex.coordination\\5.1.2\\nito.asyncex.coordination.5.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.asyncex.tasks\\5.1.2\\nito.asyncex.tasks.5.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.collections.deque\\1.1.1\\nito.collections.deque.1.1.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.disposables\\2.2.1\\nito.disposables.2.2.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\npgsql\\8.0.2\\npgsql.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nuglify\\1.21.4\\nuglify.1.21.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\pipelines.sockets.unofficial\\2.2.8\\pipelines.sockets.unofficial.2.2.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\questpdf\\2022.12.15\\questpdf.2022.12.15.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\shimskiasharp\\1.0.0.18\\shimskiasharp.1.0.0.18.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\sixlabors.fonts\\1.0.0\\sixlabors.fonts.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp\\2.88.8\\skiasharp.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.harfbuzz\\2.88.7\\skiasharp.harfbuzz.2.88.7.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.linux.nodependencies\\2.88.8\\skiasharp.nativeassets.linux.nodependencies.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.8\\skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.8\\skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\stackexchange.redis\\2.7.27\\stackexchange.redis.2.7.27.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.custom\\1.0.0.18\\svg.custom.1.0.0.18.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.model\\1.0.0.18\\svg.model.1.0.0.18.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.skia\\1.0.0.18\\svg.skia.1.0.0.18.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.codedom\\7.0.0\\system.codedom.7.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.diagnosticsource\\7.0.2\\system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.0\\system.diagnostics.eventlog.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.formats.asn1\\8.0.0\\system.formats.asn1.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.filesystem.accesscontrol\\5.0.0\\system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.hashing\\6.0.0\\system.io.hashing.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.packaging\\6.0.0\\system.io.packaging.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.pipelines\\5.0.1\\system.io.pipelines.5.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.async\\6.0.1\\system.linq.async.6.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.dynamic.core\\1.3.12\\system.linq.dynamic.core.1.3.12.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.management\\7.0.2\\system.management.7.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.caching\\8.0.0\\system.runtime.caching.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.pkcs\\8.0.0\\system.security.cryptography.pkcs.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.xml\\6.0.1\\system.security.cryptography.xml.6.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.servicemodel.http\\8.0.0\\system.servicemodel.http.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.servicemodel.primitives\\8.0.0\\system.servicemodel.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.aspnet.common\\2.16.0\\webmarkupmin.aspnet.common.2.16.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.aspnetcore8\\2.16.0\\webmarkupmin.aspnetcore8.2.16.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.core\\2.16.0\\webmarkupmin.core.2.16.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.nuglify\\2.16.0\\webmarkupmin.nuglify.2.16.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\xlparser\\1.5.2\\xlparser.1.5.2.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.ACAgeVerification/plugin.json b/Nop.Plugin.Widgets.ACAgeVerification/plugin.json new file mode 100644 index 0000000..1b46a76 --- /dev/null +++ b/Nop.Plugin.Widgets.ACAgeVerification/plugin.json @@ -0,0 +1,11 @@ +{ + "Group": "Widgets", + "FriendlyName": "ACAgeVerification", + "SystemName": "Widgets.ACAgeVerification", + "Version": "4.70.2", + "SupportedVersions": [ "4.70" ], + "Author": "Aycode team", + "DisplayOrder": 1, + "FileName": "Nop.Plugin.Widgets.ACAgeVerification.dll", + "Description": "This plugin allows you to change the contents of main page slider" +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.AgeVerification/AgeVerificationPlugin.cs b/Nop.Plugin.Widgets.AgeVerification/AgeVerificationPlugin.cs new file mode 100644 index 0000000..0623c61 --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/AgeVerificationPlugin.cs @@ -0,0 +1,36 @@ +using System.Threading.Tasks; +using Nop.Core; +using Nop.Plugin.Widgets.AgeVerification.Components; +using Nop.Services.Cms; +using Nop.Services.Plugins; +using Nop.Web.Framework.Infrastructure; + +namespace Nop.Plugin.Widgets.AgeVerification +{ + public class AgeVerificationPlugin : BasePlugin, IWidgetPlugin + { + public bool HideInWidgetList => true; + + public Type GetWidgetViewComponent(string widgetZone) + { + return typeof(AgeVerificationViewComponent); + } + + public Task> GetWidgetZonesAsync() + { + return Task.FromResult>(new List { PublicWidgetZones.HomepageTop }); + } + + public override async Task InstallAsync() + { + // Add installation logic if needed + await base.InstallAsync(); + } + + public override async Task UninstallAsync() + { + // Add uninstallation logic if needed + await base.UninstallAsync(); + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.AgeVerification/Components/AgeVerificationViewComponent.cs b/Nop.Plugin.Widgets.AgeVerification/Components/AgeVerificationViewComponent.cs new file mode 100644 index 0000000..3777d14 --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/Components/AgeVerificationViewComponent.cs @@ -0,0 +1,14 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Web.Framework.Components; + +namespace Nop.Plugin.Widgets.AgeVerification.Components +{ + [ViewComponent(Name = "AgeVerification")] + public class AgeVerificationViewComponent : NopViewComponent + { + public IViewComponentResult Invoke() + { + return View("~/Plugins/Misc.AgeVerification/Views/AgeVerificationPopup.cshtml"); + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.AgeVerification/Controllers/AgeVerificationController.cs b/Nop.Plugin.Widgets.AgeVerification/Controllers/AgeVerificationController.cs new file mode 100644 index 0000000..6291ded --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/Controllers/AgeVerificationController.cs @@ -0,0 +1,13 @@ +using Microsoft.AspNetCore.Mvc; +using Nop.Web.Framework.Controllers; + +namespace Nop.Plugin.Misc.TestPlugin.Controllers +{ + public class AgeVerificationController : BasePluginController + { + public IActionResult Popup() + { + return View("~/Plugins/Misc.TestPlugin/Views/AgeVerificationPopup.cshtml"); + } + } +} diff --git a/Nop.Plugin.Widgets.AgeVerification/Nop.Plugin.Widgets.AgeVerification.csproj b/Nop.Plugin.Widgets.AgeVerification/Nop.Plugin.Widgets.AgeVerification.csproj new file mode 100644 index 0000000..a3717f1 --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/Nop.Plugin.Widgets.AgeVerification.csproj @@ -0,0 +1,48 @@ + + + net8.0 + SOME_COPYRIGHT + YOUR_COMPANY + SOME_AUTHORS + PACKAGE_LICENSE_URL + PACKAGE_PROJECT_URL + REPOSITORY_URL + Git + + true + enable + + + ..\..\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\ + $(OutputPath) + + + ..\..\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\ + $(OutputPath) + + + + + + + + + + + + PreserveNewest + + + PreserveNewest + + + + + + + + + + + + diff --git a/Nop.Plugin.Widgets.AgeVerification/Notes.txt b/Nop.Plugin.Widgets.AgeVerification/Notes.txt new file mode 100644 index 0000000..0641364 --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/Notes.txt @@ -0,0 +1,33 @@ +Important points when developing plugins + + +- All views (cshtml files) and web.config file should have "Build action" set to "Content" and "Copy to output directory" set to "Copy if newer" + +- When you develop a new plugin from scratch, and when a new class library is added to the solution, open its .csproj file (a main project file) in any text editor and replace its content with the following one + + + + net8.0 + ..\..\Presentation\Nop.Web\Plugins\PLUGIN_OUTPUT_DIRECTORY + $(OutputPath) + + false + enable + + + + + + + + + + + + + +Replace “PLUGIN_OUTPUT_DIRECTORY” in the code above with your real plugin output directory name. + +It’s not required. But this way we can use a new ASP.NET approach to add third-party references. It was introduced in .NET Core. Furthermore, references from already referenced libraries will be loaded automatically. It’s very convenient. \ No newline at end of file diff --git a/Nop.Plugin.Widgets.AgeVerification/RouteProvider.cs b/Nop.Plugin.Widgets.AgeVerification/RouteProvider.cs new file mode 100644 index 0000000..799416d --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/RouteProvider.cs @@ -0,0 +1,20 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Routing; +using Nop.Web.Framework.Mvc.Routing; + +namespace Nop.Plugin.Misc.AgeVerification +{ + public class RouteProvider : IRouteProvider + { + public void RegisterRoutes(IEndpointRouteBuilder endpointRouteBuilder) + { + endpointRouteBuilder.MapControllerRoute( + name: "AgeVerification", + pattern: "Plugins/AgeVerification/Popup", + defaults: new { controller = "AgeVerification", action = "Popup" } + ); + } + + public int Priority => 0; + } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.AgeVerification/Views/AgeVerificationPopup.cshtml b/Nop.Plugin.Widgets.AgeVerification/Views/AgeVerificationPopup.cshtml new file mode 100644 index 0000000..1a595b2 --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/Views/AgeVerificationPopup.cshtml @@ -0,0 +1,22 @@ + + + diff --git a/Nop.Plugin.Widgets.AgeVerification/logo.png b/Nop.Plugin.Widgets.AgeVerification/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..f5cf39e5b59e7c40e6cf3c0a411343fcb9247c8b GIT binary patch literal 3351 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plug.2B7CF5FF.Up2Date b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plug.2B7CF5FF.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.AssemblyInfo.cs b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.AssemblyInfo.cs new file mode 100644 index 0000000..ad70097 --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("YOUR_COMPANY")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyCopyrightAttribute("SOME_COPYRIGHT")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Nop.Plugin.Widgets.AgeVerification")] +[assembly: System.Reflection.AssemblyTitleAttribute("Nop.Plugin.Widgets.AgeVerification")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "REPOSITORY_URL")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.AssemblyInfoInputs.cache b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.AssemblyInfoInputs.cache new file mode 100644 index 0000000..96fa8dd --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e5ce4a7fe2d03ce83b47fc33fb7b6fa5126f86c15a1575dec1450a4f618112a1 diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.GeneratedMSBuildEditorConfig.editorconfig b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bcf45d9 --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.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 = Nop.Plugin.Widgets.AgeVerification +build_property.ProjectDir = D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.AgeVerification\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.GlobalUsings.g.cs b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.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/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.assets.cache b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..93a24c8f824aa331ac752e8b949b855997c95ff8 GIT binary patch literal 166791 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 B>v#YF literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.csproj.BuildWithSkipAnalyzers b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.csproj.CoreCompileInputs.cache b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..33a1a25 --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +60540abed53b94c8feef0173ef9c92aa653adfe29c9f8837f315d5b56cd9f640 diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.csproj.FileListAbsolute.txt b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..1cf2d66 --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.csproj.FileListAbsolute.txt @@ -0,0 +1,627 @@ +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\Nop.Web.deps.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\Nop.Web.runtimeconfig.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\Nop.Web.runtimeconfig.dev.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\Nop.Web.staticwebassets.runtime.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\Nop.Web.exe +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\logo.png +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\Views\AgeVerificationPopup.cshtml +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\Nop.Plugin.Widgets.AgeVerification.deps.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\Nop.Plugin.Widgets.AgeVerification.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\Nop.Plugin.Widgets.AgeVerification.pdb +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Authentication.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Authorization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Components.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Components.Endpoints.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Cors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Hosting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Http.Results.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.HttpLogging.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Identity.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Metadata.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.OutputCaching.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.RateLimiting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Razor.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.RequestDecompression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Routing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.Session.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.SignalR.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.CSharp.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Caching.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Caching.Memory.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Configuration.Binder.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Configuration.CommandLine.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Configuration.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.DependencyInjection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Diagnostics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Features.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.FileProviders.Composite.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.FileProviders.Physical.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.FileSystemGlobbing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Hosting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Identity.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Localization.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Logging.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Logging.Console.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Logging.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.ObjectPool.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Options.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Extensions.WebEncoders.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.JSInterop.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Net.Http.Headers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.VisualBasic.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.VisualBasic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Win32.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\Microsoft.Win32.Registry.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\mscorlib.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\netstandard.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.AppContext.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Buffers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Collections.Concurrent.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Collections.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Collections.Immutable.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Collections.NonGeneric.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Collections.Specialized.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.ComponentModel.Annotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.ComponentModel.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.ComponentModel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.ComponentModel.EventBasedAsync.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.ComponentModel.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.ComponentModel.TypeConverter.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Console.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Data.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Data.DataSetExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Data.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Diagnostics.Contracts.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Diagnostics.Debug.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Diagnostics.DiagnosticSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Diagnostics.EventLog.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Diagnostics.FileVersionInfo.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Diagnostics.Process.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Diagnostics.StackTrace.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Diagnostics.Tools.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Diagnostics.TraceSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Diagnostics.Tracing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Drawing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Drawing.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Dynamic.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Formats.Asn1.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Formats.Tar.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Globalization.Calendars.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Globalization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Globalization.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.Compression.Brotli.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.Compression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.Compression.FileSystem.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.Compression.ZipFile.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.FileSystem.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.FileSystem.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.FileSystem.DriveInfo.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.FileSystem.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.FileSystem.Watcher.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.IsolatedStorage.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.MemoryMappedFiles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.Pipelines.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.Pipes.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.Pipes.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.IO.UnmanagedMemoryStream.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Linq.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Linq.Expressions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Linq.Parallel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Linq.Queryable.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Memory.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.Http.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.HttpListener.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.Mail.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.NameResolution.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.NetworkInformation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.Ping.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.Quic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.Requests.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.Security.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.ServicePoint.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.Sockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.WebClient.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.WebHeaderCollection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.WebProxy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.WebSockets.Client.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Net.WebSockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Numerics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Numerics.Vectors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.ObjectModel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Reflection.DispatchProxy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Reflection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Reflection.Emit.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Reflection.Emit.ILGeneration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Reflection.Emit.Lightweight.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Reflection.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Reflection.Metadata.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Reflection.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Reflection.TypeExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Resources.Reader.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Resources.ResourceManager.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Resources.Writer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.Handles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.InteropServices.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.InteropServices.JavaScript.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.Intrinsics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.Loader.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.Numerics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.Serialization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.Serialization.Formatters.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.Serialization.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.Serialization.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Runtime.Serialization.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.Claims.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.Cryptography.Algorithms.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.Cryptography.Cng.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.Cryptography.Csp.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.Cryptography.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.Cryptography.Encoding.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.Cryptography.OpenSsl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.Cryptography.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.Cryptography.X509Certificates.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.Cryptography.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.Principal.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.Principal.Windows.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Security.SecureString.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.ServiceModel.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.ServiceProcess.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Text.Encoding.CodePages.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Text.Encoding.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Text.Encoding.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Text.Encodings.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Text.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Text.RegularExpressions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Threading.Channels.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Threading.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Threading.Overlapped.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Threading.RateLimiting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Threading.Tasks.Dataflow.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Threading.Tasks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Threading.Tasks.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Threading.Tasks.Parallel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Threading.Thread.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Threading.ThreadPool.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Threading.Timer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Transactions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Transactions.Local.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.ValueTuple.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Web.HttpUtility.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Windows.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Xml.Linq.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Xml.ReaderWriter.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Xml.Serialization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Xml.XDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Xml.XmlDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Xml.XmlSerializer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Xml.XPath.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\System.Xml.XPath.XDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Misc.AgeVerification\refs\WindowsBase.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.AgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.AgeVerification.csproj.AssemblyReference.cache +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.AgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.AgeVerification.GeneratedMSBuildEditorConfig.editorconfig +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.AgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.AgeVerification.AssemblyInfoInputs.cache +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.AgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.AgeVerification.AssemblyInfo.cs +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.AgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.AgeVerification.csproj.CoreCompileInputs.cache +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.AgeVerification\obj\Debug\net8.0\Nop.Plug.2B7CF5FF.Up2Date +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.AgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.AgeVerification.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.AgeVerification\obj\Debug\net8.0\refint\Nop.Plugin.Widgets.AgeVerification.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.AgeVerification\obj\Debug\net8.0\Nop.Plugin.Widgets.AgeVerification.pdb +D:\Munka\MANGOWEB\FlirtyFluffers\src\Plugins\Nop.Plugin.Widgets.AgeVerification\obj\Debug\net8.0\ref\Nop.Plugin.Widgets.AgeVerification.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\logo.png +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\Views\AgeVerificationPopup.cshtml +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\Nop.Plugin.Widgets.AgeVerification.deps.json +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\Nop.Plugin.Widgets.AgeVerification.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\Nop.Plugin.Widgets.AgeVerification.pdb +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Antiforgery.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Authentication.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Authentication.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Authorization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Authorization.Policy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Components.Authorization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Components.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Components.Endpoints.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Components.Forms.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Components.Server.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Components.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.CookiePolicy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Cors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.DataProtection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Diagnostics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.HostFiltering.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Hosting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Html.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Http.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Http.Connections.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Http.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Http.Features.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Http.Results.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.HttpLogging.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.HttpOverrides.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.HttpsPolicy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Identity.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Localization.Routing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Metadata.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Cors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.Razor.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.OutputCaching.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.RateLimiting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Razor.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Razor.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.RequestDecompression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.ResponseCaching.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.ResponseCompression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Rewrite.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Routing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Server.HttpSys.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Server.IIS.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.Session.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.SignalR.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.SignalR.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.SignalR.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.StaticFiles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.WebSockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.AspNetCore.WebUtilities.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.CSharp.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Caching.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Caching.Memory.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Configuration.Binder.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Configuration.CommandLine.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Configuration.Ini.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Configuration.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Configuration.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.DependencyInjection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Diagnostics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Features.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.FileProviders.Composite.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.FileProviders.Embedded.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.FileProviders.Physical.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.FileSystemGlobbing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Hosting.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Hosting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Identity.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Identity.Stores.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Localization.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Localization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Logging.Abstractions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Logging.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Logging.Console.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Logging.Debug.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Logging.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Logging.EventLog.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Logging.EventSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Logging.TraceSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.ObjectPool.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Options.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Options.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Extensions.WebEncoders.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.JSInterop.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Net.Http.Headers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.VisualBasic.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.VisualBasic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Win32.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\Microsoft.Win32.Registry.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\mscorlib.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\netstandard.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.AppContext.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Buffers.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Collections.Concurrent.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Collections.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Collections.Immutable.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Collections.NonGeneric.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Collections.Specialized.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.ComponentModel.Annotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.ComponentModel.DataAnnotations.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.ComponentModel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.ComponentModel.EventBasedAsync.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.ComponentModel.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.ComponentModel.TypeConverter.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Configuration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Console.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Core.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Data.Common.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Data.DataSetExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Data.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Diagnostics.Contracts.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Diagnostics.Debug.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Diagnostics.DiagnosticSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Diagnostics.EventLog.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Diagnostics.FileVersionInfo.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Diagnostics.Process.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Diagnostics.StackTrace.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Diagnostics.TextWriterTraceListener.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Diagnostics.Tools.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Diagnostics.TraceSource.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Diagnostics.Tracing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Drawing.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Drawing.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Dynamic.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Formats.Asn1.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Formats.Tar.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Globalization.Calendars.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Globalization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Globalization.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.Compression.Brotli.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.Compression.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.Compression.FileSystem.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.Compression.ZipFile.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.FileSystem.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.FileSystem.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.FileSystem.DriveInfo.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.FileSystem.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.FileSystem.Watcher.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.IsolatedStorage.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.MemoryMappedFiles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.Pipelines.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.Pipes.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.Pipes.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.IO.UnmanagedMemoryStream.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Linq.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Linq.Expressions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Linq.Parallel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Linq.Queryable.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Memory.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.Http.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.Http.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.HttpListener.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.Mail.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.NameResolution.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.NetworkInformation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.Ping.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.Quic.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.Requests.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.Security.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.ServicePoint.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.Sockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.WebClient.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.WebHeaderCollection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.WebProxy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.WebSockets.Client.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Net.WebSockets.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Numerics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Numerics.Vectors.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.ObjectModel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Reflection.DispatchProxy.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Reflection.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Reflection.Emit.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Reflection.Emit.ILGeneration.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Reflection.Emit.Lightweight.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Reflection.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Reflection.Metadata.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Reflection.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Reflection.TypeExtensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Resources.Reader.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Resources.ResourceManager.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Resources.Writer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.CompilerServices.Unsafe.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.CompilerServices.VisualC.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.Handles.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.InteropServices.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.InteropServices.JavaScript.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.InteropServices.RuntimeInformation.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.Intrinsics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.Loader.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.Numerics.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.Serialization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.Serialization.Formatters.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.Serialization.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.Serialization.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Runtime.Serialization.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.AccessControl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.Claims.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.Cryptography.Algorithms.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.Cryptography.Cng.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.Cryptography.Csp.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.Cryptography.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.Cryptography.Encoding.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.Cryptography.OpenSsl.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.Cryptography.Primitives.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.Cryptography.X509Certificates.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.Cryptography.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.Principal.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.Principal.Windows.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Security.SecureString.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.ServiceModel.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.ServiceProcess.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Text.Encoding.CodePages.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Text.Encoding.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Text.Encoding.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Text.Encodings.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Text.Json.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Text.RegularExpressions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Threading.Channels.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Threading.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Threading.Overlapped.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Threading.RateLimiting.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Threading.Tasks.Dataflow.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Threading.Tasks.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Threading.Tasks.Extensions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Threading.Tasks.Parallel.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Threading.Thread.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Threading.ThreadPool.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Threading.Timer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Transactions.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Transactions.Local.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.ValueTuple.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Web.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Web.HttpUtility.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Windows.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Xml.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Xml.Linq.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Xml.ReaderWriter.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Xml.Serialization.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Xml.XDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Xml.XmlDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Xml.XmlSerializer.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Xml.XPath.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\System.Xml.XPath.XDocument.dll +D:\Munka\MANGOWEB\FlirtyFluffers\src\Presentation\Nop.Web\Plugins\Widgets.AgeVerification\refs\WindowsBase.dll diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.dll b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.dll new file mode 100644 index 0000000000000000000000000000000000000000..f61e2b71ba2b3865d28ec12dd35225067eb57c7c GIT binary patch literal 10240 zcmeHMe{dZ2b${QzyS*Q>&(;tB01NwUWBahoAz|Yhkd4mzVPEh`swCUk5jm~yR`S}X z+w<<8j8FvUG$ip5S|F2738675jFWUq2_cz~k`|^Zw4^jmGJ%kp5*R2<+cZtuVLBlx z^z**Er@ND7pdJ3{(3SS>d++JuE(rWA!Za}Jp;qBDKn=hmM)E4 z>Zu;=B|0E{K`pcNcD= zyNyNpzxwn@X5o6JlW2gEF7W4-FvGjXh?W5T>uZTdD!ljdjLn-ar9+_i*Yry``b`e# z&PxE$CVlnn1|_c;(OAN=tt=>MTNe-&cMNyU)dlMlmYz2u$hOiLZq~IKcg@vBw6}(o z=qipYF1Agf03E}`jIAOPlKVdgYn9p6M3Jp{Uc}EsO8jCx72h1Q75|*%5;eE`s2l1r zPNS~`xF({giJj`U_V^kWlv-2?%~mkBt&Ss7;B$XfLKEo`X%j2k#Hy`7i0!%Jnipc1 z9X$Bp(HaHjI*8ohv8(;f7_+xFw+Cq)HXu}uEf#DjuD+uYCT&{j4j*ZvO(&5PYd+23 za{uO*wuZM>GH$Mif-i1b<(kvbBsQH4upEPm9OJHBd;_Gn-c3I1dW>P6U?8z`!0e4^ zY-x!j?vc$~BP+LVa3e-rBdfM@oPu*zq(=$L-^H?GOvl^h)J7E#J52d zW4StDL8Fa1nAd^z$vVQWj-b@RJm`Qz=wQOt0naXH%a9!L1S`e!3Vy;i){oc|6f}}z zeGQQ@Q2|^>(Xm5ztja-aMJ|42jofxAHy=YD%(9CSb(_+rv|UHaEIS@Y zaZt@2=!R*GUxnx8UCPQ$5g868I0uLQ$`Zwmi)d2f2v8fnIHb&SOM~)Je!R5;Q!JDf zUNZ>L*f)t^eu&qzH#@iYHs!DGFsGCUVx z`7OXBbXHA?p^IrhIBV$=sqJHamVXnyHqcLl5p@F@C=V*_ z!?Y|8eMkP%Y$xmVT+l2cMbJBo(BKXg#eHoq$o%g($32J}y-H zjQUByyMmt_M@I#;;_o#2sqasMJO6n>49Qi@<-b3^hos(2vQm)P*l_Yf<7PI7>M};KyDOZx7 z3_O9h2kZJh?6q}?r_lCnUE6bY)Ju|jS-cchF^8W=Q6qX;+#$As`a?;%wuIk> zD0gX9l9NQx4>|eib}TzYn-`|M1dV_%=qrNZeIE4D5yV!mWO%iNNeNRD{WIf|}`dz%`^Q3ED`@0NW@HxScY9*V1voZn_2Vdb%BOn0_Dd!xCoc&y}Rq z*-bXRq;%6PD(e{C4!kVk$LTYuh-W4KgoJ-de?~9+UXk*z%2uD?zJ4Jk#l7^8%31M8 z;5-3*r|$`glfp8ju;!S=V-hDHbH*g>p;Pn_wEv7Eq6HoBgJJj2@xa*LDjhw9%V z=WY*tAMoG9&jEff{1ZEJoRhqIxhQXEb^2ySNOr65J9?g+B@&Cs zeM{OBL_APAq&=`Gt+HO6*Wt@z)Br3YzNQIJrkKsvS1cwrp%H(GE>ys$F8K#RKa$%d_HN< z6ta7AnamFAJXkOmFt4J{w3#dA^*uB^V>|j(qT9^p^{iu<1v{}%FX)z$rCL=~uY~sL z&S4`rsXIr_f^N&vC~agd(>5oZMA9zy>rS_6>524omXf&~B~NLFbFg4*6Z$}b-O1~Y zo+D_;r0go)sYxUD7@16;q33hdnKcWJ#nxF>CPv?{*~hx^3Joi#%@aBel?skArE?ti zYlU21XA_y~v&<=v}Zaj*0RTpf=mFHKJB)?UjzWozSkT^fMt?Z{;0 z@RYP|eQG>Elhz$Ar#V{E!D(>3guWa%1Cfz424%TwldG2XReAlTe7>G@-r!Z?%BUlT zQ>){=m{ogJlnpz2apag~mL`u?8%Hz?b3Gr7YD1;hej}ID3srt){608%NVjaH=J|~X zscB7VoVQy3f>PaPVZxX!SyHa5WJsSFMmjn(Ls$uRmG4GX3J>Xd?IwxUv{x(}w6KP< zPPJpDq1!CZSjObBnx;dBev0*CwG?XD73X^lyO`Hz7E^_VU#MyDl9zSCu5p8_L$zC4 zE5ccCy$qS0Bhy;Ggv552xz{`4g$nN!G-A3h7mFk;)^388u-KxDyV7`GuFG}JHB4$9 z%$FvOLc%Q=b|N{+6KYHtSsB?xE}!@8qm(O3do^44&;`;SH{~kxC?4NM6KTWFE*#-K z7$FUIYtMYF^a-yda#`rTDXSMb&!psjb4o92llq8Rq(QS-DpI9z9nWM&1~sd$ZdG_G zIU`7$X(Ojwl3L*SCY0;?dIFv)r0KBW(M)W(sb+ynY zcNNgU_;DOSO)&beqwXo3kE;O!6?S%!)*vT93)R3-LXX1*u#o&9SX# zU}QIp^=$0fmTNn(fd=TF?+L%KI;8K#A@je}uo7U%jHWyz!hIb`9P z$Da-?M!Rv(;*2~;+kk11a&S6k$x2%X+G4oph}I=(68#Rzz6MP|GK)Ty9(3&>^p+rF zpubI5&^yatL4z2nh#p0vh8nzl`WAFvs4NY&HU><*tJ*`5)bTp;?j}?RO+d3v$KcGA z{5(cS*8k04G~Ar+{=zfy^lJw;;{`V+M93E-5dhNI$YeASQ$!RHj1)5hj5bZF49mBL zRy2i_W@;8bwV7~>NKjN*!4*yAFNZW>SMv0|17OD$OEHzGzeV ztI~;$$Z#6Wedm!1;2Og7PLCi-#fzR z@MN*L%{%Svp5B$fj|d~tmic3-ckb%P5k15`VvuMQwB*RZ!J$m|KzcCQe*~XG1qI|@ zgRky_qQe8}UNjCK8A|QjkDtPpVB8LT#KoU0D+!`4f;QBgOfFD<3EvTD>5yJDZ3CO) z%t0$39qJt%7*3503?0cF96EsaM|Nva(Dm=GZsFO-t^I9_ycg1tp!EMf`Wd+3uW=EiAwfAY$!c9Lh}u7YPGhhatY z8y`7(^!fjI`R7Z{HSDf9girj8$EtKKR{1H^;EY3{?>?JYRmNw$Xvsod_JG$_T#>xi|A35@XGb5kAG=7M8lK;?4==KDSYSZ z2b}`!bANTGZ~Oo4E%$pDXBJ=X^E#K1Uz9kXYp)&<0$Mek7y7WV^2s5E{e1#^H(!^^ zUL$DL(l|CG(T<9WtAKB!Vt%Y1^xy*o+fb~YS|Hai&moDrBS!*X z(G0@ZBlL36@7<0aJYG9Ck?MHvImw0=K2P!00WIzGH`})b@*GVEqgZ%qh;P-q_rtCP zeBkpQUwiSJi=YD-Yf_HHQ7s~#9Fa+R_#w;^N3qw7=O7|E1Pk{e@30NwnwB;Xczt*_ z+2%@SFy+q7`)&J#oXbIsYr>-v=FzE%)cZMyDq>VW&cd0j&Le&&m2;j%hS-Sf6tXst kh{n8Aa&`8reK-gH|N1~i029x@$M34yBtMXG_<%b7-vp?nv;Y7A literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.pdb b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/Nop.Plugin.Widgets.AgeVerification.pdb new file mode 100644 index 0000000000000000000000000000000000000000..9952d321586c895bad388187a722289d4f3ebba6 GIT binary patch literal 27700 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/ref/Nop.Plugin.Widgets.AgeVerification.dll b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/ref/Nop.Plugin.Widgets.AgeVerification.dll new file mode 100644 index 0000000000000000000000000000000000000000..6fbca697c74c511efe2e9316e18393e0b35fc3bd GIT binary patch literal 7680 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/refint/Nop.Plugin.Widgets.AgeVerification.dll b/Nop.Plugin.Widgets.AgeVerification/obj/Debug/net8.0/refint/Nop.Plugin.Widgets.AgeVerification.dll new file mode 100644 index 0000000000000000000000000000000000000000..6fbca697c74c511efe2e9316e18393e0b35fc3bd GIT binary patch literal 7680 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Nop.Plugin.Widgets.AgeVerification.csproj.nuget.dgspec.json b/Nop.Plugin.Widgets.AgeVerification/obj/Nop.Plugin.Widgets.AgeVerification.csproj.nuget.dgspec.json new file mode 100644 index 0000000..1c798ef --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/obj/Nop.Plugin.Widgets.AgeVerification.csproj.nuget.dgspec.json @@ -0,0 +1,533 @@ +{ + "format": 1, + "restore": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.AgeVerification\\Nop.Plugin.Widgets.AgeVerification.csproj": {} + }, + "projects": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj", + "projectName": "Nop.Core", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[13.0.1, )" + }, + "Autofac.Extensions.DependencyInjection": { + "target": "Package", + "version": "[9.0.0, )" + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs": { + "target": "Package", + "version": "[1.3.4, )" + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys": { + "target": "Package", + "version": "[1.2.3, )" + }, + "Azure.Identity": { + "target": "Package", + "version": "[1.11.2, )" + }, + "Humanizer": { + "target": "Package", + "version": "[2.14.1, )" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": { + "target": "Package", + "version": "[8.0.4, )" + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": { + "target": "Package", + "version": "[8.0.4, )" + }, + "Microsoft.Extensions.Caching.SqlServer": { + "target": "Package", + "version": "[8.0.4, )" + }, + "Microsoft.Extensions.Caching.StackExchangeRedis": { + "target": "Package", + "version": "[8.0.4, )" + }, + "Nito.AsyncEx.Coordination": { + "target": "Package", + "version": "[5.1.2, )" + }, + "System.IO.FileSystem.AccessControl": { + "target": "Package", + "version": "[5.0.0, )" + }, + "System.Linq.Async": { + "target": "Package", + "version": "[6.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj", + "projectName": "Nop.Data", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentMigrator": { + "target": "Package", + "version": "[5.2.0, )" + }, + "FluentMigrator.Runner": { + "target": "Package", + "version": "[5.1.0, )" + }, + "Microsoft.Data.SqlClient": { + "target": "Package", + "version": "[5.2.0, )" + }, + "MySqlConnector": { + "target": "Package", + "version": "[2.3.7, )" + }, + "Npgsql": { + "target": "Package", + "version": "[8.0.2, )" + }, + "System.Configuration.ConfigurationManager": { + "target": "Package", + "version": "[8.0.0, )" + }, + "System.Net.NameResolution": { + "target": "Package", + "version": "[4.3.0, )" + }, + "linq2db": { + "target": "Package", + "version": "[5.4.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj", + "projectName": "Nop.Services", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Azure.Storage.Blobs": { + "target": "Package", + "version": "[12.19.1, )" + }, + "ClosedXML": { + "target": "Package", + "version": "[0.102.2, )" + }, + "Google.Apis.Auth": { + "target": "Package", + "version": "[1.68.0, )" + }, + "HarfBuzzSharp.NativeAssets.Linux": { + "target": "Package", + "version": "[2.8.2.3, )" + }, + "MailKit": { + "target": "Package", + "version": "[4.5.0, )" + }, + "MaxMind.GeoIP2": { + "target": "Package", + "version": "[5.2.0, )" + }, + "Microsoft.Identity.Client": { + "target": "Package", + "version": "[4.60.3, )" + }, + "QuestPDF": { + "target": "Package", + "version": "[2022.12.15, )" + }, + "SkiaSharp": { + "target": "Package", + "version": "[2.88.8, )" + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies": { + "target": "Package", + "version": "[2.88.8, )" + }, + "Svg.Skia": { + "target": "Package", + "version": "[1.0.0.18, )" + }, + "System.Linq.Dynamic.Core": { + "target": "Package", + "version": "[1.3.12, )" + }, + "System.ServiceModel.Http": { + "target": "Package", + "version": "[8.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.AgeVerification\\Nop.Plugin.Widgets.AgeVerification.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.AgeVerification\\Nop.Plugin.Widgets.AgeVerification.csproj", + "projectName": "Nop.Plugin.Widgets.AgeVerification", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.AgeVerification\\Nop.Plugin.Widgets.AgeVerification.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.AgeVerification\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "version": "4.70.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj", + "projectName": "Nop.Web.Framework", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Core\\Nop.Core.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Data\\Nop.Data.csproj" + }, + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Libraries\\Nop.Services\\Nop.Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentValidation.AspNetCore": { + "target": "Package", + "version": "[11.3.0, )" + }, + "LigerShark.WebOptimizer.Core": { + "target": "Package", + "version": "[3.0.405, )" + }, + "WebMarkupMin.AspNetCore8": { + "target": "Package", + "version": "[2.16.0, )" + }, + "WebMarkupMin.NUglify": { + "target": "Package", + "version": "[2.16.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Nop.Plugin.Widgets.AgeVerification.csproj.nuget.g.props b/Nop.Plugin.Widgets.AgeVerification/obj/Nop.Plugin.Widgets.AgeVerification.csproj.nuget.g.props new file mode 100644 index 0000000..654d59e --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/obj/Nop.Plugin.Widgets.AgeVerification.csproj.nuget.g.props @@ -0,0 +1,20 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Ádám\.nuget\packages\;C:\Program Files\DevExpress 24.1\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.10.1 + + + + + + + + C:\Users\Ádám\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 + + \ No newline at end of file diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/Nop.Plugin.Widgets.AgeVerification.csproj.nuget.g.targets b/Nop.Plugin.Widgets.AgeVerification/obj/Nop.Plugin.Widgets.AgeVerification.csproj.nuget.g.targets new file mode 100644 index 0000000..e3bd1ee --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/obj/Nop.Plugin.Widgets.AgeVerification.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/project.assets.json b/Nop.Plugin.Widgets.AgeVerification/obj/project.assets.json new file mode 100644 index 0000000..7efe1c6 --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/obj/project.assets.json @@ -0,0 +1,13017 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "AdvancedStringBuilder/0.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/AdvancedStringBuilder.dll": { + "related": ".xml" + } + } + }, + "Autofac/8.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "7.0.2" + }, + "compile": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.dll": { + "related": ".xml" + } + } + }, + "Autofac.Extensions.DependencyInjection/9.0.0": { + "type": "package", + "dependencies": { + "Autofac": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "AutoMapper/13.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + } + }, + "Azure.Core/1.38.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.ClientModel": "1.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.3.4": { + "type": "package", + "dependencies": { + "Azure.Core": "1.38.0", + "Azure.Storage.Blobs": "12.16.0", + "Microsoft.AspNetCore.DataProtection": "3.1.32" + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll": { + "related": ".xml" + } + } + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.2.3": { + "type": "package", + "dependencies": { + "Azure.Core": "1.37.0", + "Azure.Security.KeyVault.Keys": "4.2.0", + "Microsoft.AspNetCore.DataProtection": "3.1.32" + }, + "compile": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll": { + "related": ".xml" + } + } + }, + "Azure.Identity/1.11.2": { + "type": "package", + "dependencies": { + "Azure.Core": "1.38.0", + "Microsoft.Identity.Client": "4.60.3", + "Microsoft.Identity.Client.Extensions.Msal": "4.60.3", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + } + }, + "Azure.Security.KeyVault.Keys/4.2.0": { + "type": "package", + "dependencies": { + "Azure.Core": "1.15.0", + "System.Memory": "4.5.4", + "System.Text.Json": "4.6.0", + "System.Threading.Tasks.Extensions": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll": { + "related": ".xml" + } + } + }, + "Azure.Storage.Blobs/12.19.1": { + "type": "package", + "dependencies": { + "Azure.Storage.Common": "12.18.1", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Azure.Storage.Blobs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Storage.Blobs.dll": { + "related": ".xml" + } + } + }, + "Azure.Storage.Common/12.18.1": { + "type": "package", + "dependencies": { + "Azure.Core": "1.36.0", + "System.IO.Hashing": "6.0.0" + }, + "compile": { + "lib/net6.0/Azure.Storage.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Storage.Common.dll": { + "related": ".xml" + } + } + }, + "BouncyCastle.Cryptography/2.3.0": { + "type": "package", + "compile": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/BouncyCastle.Cryptography.dll": { + "related": ".xml" + } + } + }, + "ClosedXML/0.102.2": { + "type": "package", + "dependencies": { + "DocumentFormat.OpenXml": "[2.16.0, 3.0.0)", + "ExcelNumberFormat": "1.1.0", + "SixLabors.Fonts": "1.0.0", + "System.IO.Packaging": "6.0.0", + "System.Net.Http": "4.3.4", + "System.Text.RegularExpressions": "4.3.1", + "XLParser": "1.5.2" + }, + "compile": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/ClosedXML.dll": { + "related": ".xml" + } + } + }, + "DocumentFormat.OpenXml/2.16.0": { + "type": "package", + "dependencies": { + "System.IO.Packaging": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/DocumentFormat.OpenXml.dll": { + "related": ".xml" + } + } + }, + "ExcelNumberFormat/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/ExcelNumberFormat.dll": { + "related": ".xml" + } + } + }, + "ExCSS/4.2.3": { + "type": "package", + "compile": { + "lib/net7.0/ExCSS.dll": {} + }, + "runtime": { + "lib/net7.0/ExCSS.dll": {} + } + }, + "FirebirdSql.Data.FirebirdClient/10.0.0": { + "type": "package", + "compile": { + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll": {} + }, + "runtime": { + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll": {} + } + }, + "FluentMigrator/5.2.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.2.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Abstractions/5.2.0": { + "type": "package", + "dependencies": { + "System.ComponentModel.Annotations": "5.0.0", + "System.ValueTuple": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Abstractions.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll": { + "locale": "de-DE" + } + } + }, + "FluentMigrator.Extensions.MySql/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Oracle/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Postgres/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.Snowflake/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Extensions.SqlServer/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Abstractions": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Runner.Core": "5.1.0", + "FluentMigrator.Runner.Db2": "5.1.0", + "FluentMigrator.Runner.Firebird": "5.1.0", + "FluentMigrator.Runner.Hana": "5.1.0", + "FluentMigrator.Runner.MySql": "5.1.0", + "FluentMigrator.Runner.Oracle": "5.1.0", + "FluentMigrator.Runner.Postgres": "5.1.0", + "FluentMigrator.Runner.Redshift": "5.1.0", + "FluentMigrator.Runner.SQLite": "5.1.0", + "FluentMigrator.Runner.Snowflake": "5.1.0", + "FluentMigrator.Runner.SqlServer": "5.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Core/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Abstractions": "5.1.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Db2/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Firebird/5.1.0": { + "type": "package", + "dependencies": { + "FirebirdSql.Data.FirebirdClient": "10.0.0", + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Hana/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.MySql/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.MySql": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Oracle/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.Oracle": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Postgres/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.Postgres": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Redshift/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.Snowflake/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator.Extensions.Snowflake": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.SQLite/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentMigrator.Runner.SqlServer/5.1.0": { + "type": "package", + "dependencies": { + "FluentMigrator": "5.1.0", + "FluentMigrator.Extensions.SqlServer": "5.1.0", + "FluentMigrator.Runner.Core": "5.1.0", + "Microsoft.Data.SqlClient": "5.1.4" + }, + "compile": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll": { + "related": ".pdb;.xml" + } + } + }, + "FluentValidation/11.5.1": { + "type": "package", + "compile": { + "lib/net7.0/FluentValidation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/FluentValidation.dll": { + "related": ".xml" + } + } + }, + "FluentValidation.AspNetCore/11.3.0": { + "type": "package", + "dependencies": { + "FluentValidation": "11.5.1", + "FluentValidation.DependencyInjectionExtensions": "11.5.1" + }, + "compile": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/FluentValidation.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.5.1": { + "type": "package", + "dependencies": { + "FluentValidation": "11.5.1", + "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + } + }, + "Google.Apis/1.68.0": { + "type": "package", + "dependencies": { + "Google.Apis.Core": "1.68.0" + }, + "compile": { + "lib/net6.0/Google.Apis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.dll": { + "related": ".pdb;.xml" + } + } + }, + "Google.Apis.Auth/1.68.0": { + "type": "package", + "dependencies": { + "Google.Apis": "1.68.0", + "Google.Apis.Core": "1.68.0", + "System.Management": "7.0.2" + }, + "compile": { + "lib/net6.0/Google.Apis.Auth.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.Auth.dll": { + "related": ".pdb;.xml" + } + } + }, + "Google.Apis.Core/1.68.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net6.0/Google.Apis.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Google.Apis.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp/7.3.0.1": { + "type": "package", + "dependencies": { + "HarfBuzzSharp.NativeAssets.Win32": "7.3.0.1", + "HarfBuzzSharp.NativeAssets.macOS": "7.3.0.1" + }, + "compile": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp.NativeAssets.Linux/2.8.2.3": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "2.8.2.3" + }, + "compile": { + "lib/net5.0/_._": {} + }, + "runtime": { + "lib/net5.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libHarfBuzzSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Humanizer/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core.af": "2.14.1", + "Humanizer.Core.ar": "2.14.1", + "Humanizer.Core.az": "2.14.1", + "Humanizer.Core.bg": "2.14.1", + "Humanizer.Core.bn-BD": "2.14.1", + "Humanizer.Core.cs": "2.14.1", + "Humanizer.Core.da": "2.14.1", + "Humanizer.Core.de": "2.14.1", + "Humanizer.Core.el": "2.14.1", + "Humanizer.Core.es": "2.14.1", + "Humanizer.Core.fa": "2.14.1", + "Humanizer.Core.fi-FI": "2.14.1", + "Humanizer.Core.fr": "2.14.1", + "Humanizer.Core.fr-BE": "2.14.1", + "Humanizer.Core.he": "2.14.1", + "Humanizer.Core.hr": "2.14.1", + "Humanizer.Core.hu": "2.14.1", + "Humanizer.Core.hy": "2.14.1", + "Humanizer.Core.id": "2.14.1", + "Humanizer.Core.is": "2.14.1", + "Humanizer.Core.it": "2.14.1", + "Humanizer.Core.ja": "2.14.1", + "Humanizer.Core.ko-KR": "2.14.1", + "Humanizer.Core.ku": "2.14.1", + "Humanizer.Core.lv": "2.14.1", + "Humanizer.Core.ms-MY": "2.14.1", + "Humanizer.Core.mt": "2.14.1", + "Humanizer.Core.nb": "2.14.1", + "Humanizer.Core.nb-NO": "2.14.1", + "Humanizer.Core.nl": "2.14.1", + "Humanizer.Core.pl": "2.14.1", + "Humanizer.Core.pt": "2.14.1", + "Humanizer.Core.ro": "2.14.1", + "Humanizer.Core.ru": "2.14.1", + "Humanizer.Core.sk": "2.14.1", + "Humanizer.Core.sl": "2.14.1", + "Humanizer.Core.sr": "2.14.1", + "Humanizer.Core.sr-Latn": "2.14.1", + "Humanizer.Core.sv": "2.14.1", + "Humanizer.Core.th-TH": "2.14.1", + "Humanizer.Core.tr": "2.14.1", + "Humanizer.Core.uk": "2.14.1", + "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", + "Humanizer.Core.uz-Latn-UZ": "2.14.1", + "Humanizer.Core.vi": "2.14.1", + "Humanizer.Core.zh-CN": "2.14.1", + "Humanizer.Core.zh-Hans": "2.14.1", + "Humanizer.Core.zh-Hant": "2.14.1" + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Humanizer.Core.af/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/af/Humanizer.resources.dll": { + "locale": "af" + } + } + }, + "Humanizer.Core.ar/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ar/Humanizer.resources.dll": { + "locale": "ar" + } + } + }, + "Humanizer.Core.az/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/az/Humanizer.resources.dll": { + "locale": "az" + } + } + }, + "Humanizer.Core.bg/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bg/Humanizer.resources.dll": { + "locale": "bg" + } + } + }, + "Humanizer.Core.bn-BD/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bn-BD/Humanizer.resources.dll": { + "locale": "bn-BD" + } + } + }, + "Humanizer.Core.cs/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/cs/Humanizer.resources.dll": { + "locale": "cs" + } + } + }, + "Humanizer.Core.da/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/da/Humanizer.resources.dll": { + "locale": "da" + } + } + }, + "Humanizer.Core.de/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/de/Humanizer.resources.dll": { + "locale": "de" + } + } + }, + "Humanizer.Core.el/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/el/Humanizer.resources.dll": { + "locale": "el" + } + } + }, + "Humanizer.Core.es/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/es/Humanizer.resources.dll": { + "locale": "es" + } + } + }, + "Humanizer.Core.fa/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fa/Humanizer.resources.dll": { + "locale": "fa" + } + } + }, + "Humanizer.Core.fi-FI/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fi-FI/Humanizer.resources.dll": { + "locale": "fi-FI" + } + } + }, + "Humanizer.Core.fr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr/Humanizer.resources.dll": { + "locale": "fr" + } + } + }, + "Humanizer.Core.fr-BE/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr-BE/Humanizer.resources.dll": { + "locale": "fr-BE" + } + } + }, + "Humanizer.Core.he/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/he/Humanizer.resources.dll": { + "locale": "he" + } + } + }, + "Humanizer.Core.hr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hr/Humanizer.resources.dll": { + "locale": "hr" + } + } + }, + "Humanizer.Core.hu/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hu/Humanizer.resources.dll": { + "locale": "hu" + } + } + }, + "Humanizer.Core.hy/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hy/Humanizer.resources.dll": { + "locale": "hy" + } + } + }, + "Humanizer.Core.id/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/id/Humanizer.resources.dll": { + "locale": "id" + } + } + }, + "Humanizer.Core.is/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/is/Humanizer.resources.dll": { + "locale": "is" + } + } + }, + "Humanizer.Core.it/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/it/Humanizer.resources.dll": { + "locale": "it" + } + } + }, + "Humanizer.Core.ja/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ja/Humanizer.resources.dll": { + "locale": "ja" + } + } + }, + "Humanizer.Core.ko-KR/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { + "locale": "ko-KR" + } + } + }, + "Humanizer.Core.ku/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ku/Humanizer.resources.dll": { + "locale": "ku" + } + } + }, + "Humanizer.Core.lv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/lv/Humanizer.resources.dll": { + "locale": "lv" + } + } + }, + "Humanizer.Core.ms-MY/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { + "locale": "ms-MY" + } + } + }, + "Humanizer.Core.mt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/mt/Humanizer.resources.dll": { + "locale": "mt" + } + } + }, + "Humanizer.Core.nb/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb/Humanizer.resources.dll": { + "locale": "nb" + } + } + }, + "Humanizer.Core.nb-NO/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb-NO/Humanizer.resources.dll": { + "locale": "nb-NO" + } + } + }, + "Humanizer.Core.nl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nl/Humanizer.resources.dll": { + "locale": "nl" + } + } + }, + "Humanizer.Core.pl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pl/Humanizer.resources.dll": { + "locale": "pl" + } + } + }, + "Humanizer.Core.pt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pt/Humanizer.resources.dll": { + "locale": "pt" + } + } + }, + "Humanizer.Core.ro/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ro/Humanizer.resources.dll": { + "locale": "ro" + } + } + }, + "Humanizer.Core.ru/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ru/Humanizer.resources.dll": { + "locale": "ru" + } + } + }, + "Humanizer.Core.sk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sk/Humanizer.resources.dll": { + "locale": "sk" + } + } + }, + "Humanizer.Core.sl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sl/Humanizer.resources.dll": { + "locale": "sl" + } + } + }, + "Humanizer.Core.sr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr/Humanizer.resources.dll": { + "locale": "sr" + } + } + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr-Latn/Humanizer.resources.dll": { + "locale": "sr-Latn" + } + } + }, + "Humanizer.Core.sv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sv/Humanizer.resources.dll": { + "locale": "sv" + } + } + }, + "Humanizer.Core.th-TH/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { + "locale": "th-TH" + } + } + }, + "Humanizer.Core.tr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/tr/Humanizer.resources.dll": { + "locale": "tr" + } + } + }, + "Humanizer.Core.uk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uk/Humanizer.resources.dll": { + "locale": "uk" + } + } + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { + "locale": "uz-Cyrl-UZ" + } + } + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { + "locale": "uz-Latn-UZ" + } + } + }, + "Humanizer.Core.vi/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/vi/Humanizer.resources.dll": { + "locale": "vi" + } + } + }, + "Humanizer.Core.zh-CN/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-CN/Humanizer.resources.dll": { + "locale": "zh-CN" + } + } + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hans/Humanizer.resources.dll": { + "locale": "zh-Hans" + } + } + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hant/Humanizer.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Irony.NetCore/1.0.11": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Runtime.Numerics": "4.3.0" + }, + "compile": { + "lib/netstandard1.6/Irony.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Irony.dll": {} + } + }, + "LigerShark.WebOptimizer.Core/3.0.405": { + "type": "package", + "dependencies": { + "NUglify": "1.20.7", + "System.Text.Json": "5.0.2" + }, + "compile": { + "lib/netcoreapp3.0/WebOptimizer.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/WebOptimizer.Core.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "build/_._": {} + } + }, + "linq2db/5.4.1": { + "type": "package", + "compile": { + "lib/net6.0/linq2db.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/linq2db.dll": { + "related": ".xml" + } + } + }, + "MailKit/4.5.0": { + "type": "package", + "dependencies": { + "MimeKit": "4.5.0" + }, + "compile": { + "lib/net8.0/MailKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/MailKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + } + }, + "MaxMind.Db/4.1.0": { + "type": "package", + "compile": { + "lib/net8.0/MaxMind.Db.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MaxMind.Db.dll": { + "related": ".xml" + } + } + }, + "MaxMind.GeoIP2/5.2.0": { + "type": "package", + "dependencies": { + "MaxMind.Db": "4.1.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/MaxMind.GeoIP2.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MaxMind.GeoIP2.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.32": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.DataProtection/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "3.1.32", + "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.32", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.32", + "Microsoft.Extensions.Logging.Abstractions": "3.1.32", + "Microsoft.Extensions.Options": "3.1.32", + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Cryptography.Xml": "4.7.1" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.32": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.JsonPatch/8.0.4": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.4": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "8.0.4", + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.0", + "Microsoft.CodeAnalysis.Razor": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/8.0.4": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "6.0.0", + "Microsoft.CodeAnalysis.Razor": "6.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.0.0]" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Razor/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.0.0", + "Microsoft.CodeAnalysis.Common": "4.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.SqlClient/5.2.0": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.3", + "Microsoft.Data.SqlClient.SNI.runtime": "5.2.0", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Runtime.Caching": "8.0.0" + }, + "compile": { + "ref/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "resource": { + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll": { + "locale": "zh-Hant" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.SqlServer/8.0.4": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.2", + "Microsoft.Data.SqlClient": "4.0.5", + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/8.0.4": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.1", + "Microsoft.Extensions.Options": "8.0.2", + "StackExchange.Redis": "2.7.27" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "3.1.32" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.32": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "3.1.32", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32", + "Microsoft.Extensions.FileProviders.Abstractions": "3.1.32", + "Microsoft.Extensions.Logging.Abstractions": "3.1.32" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.ObjectPool/6.0.16": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Identity.Client/4.60.3": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0", + "System.Diagnostics.DiagnosticSource": "6.0.1" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.60.3": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.60.3", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.35.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.35.0", + "System.IdentityModel.Tokens.Jwt": "6.35.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.35.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "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.SqlServer.Server/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.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.3/Microsoft.Win32.Primitives.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MimeKit/4.5.0": { + "type": "package", + "dependencies": { + "BouncyCastle.Cryptography": "2.3.0", + "System.Security.Cryptography.Pkcs": "8.0.0" + }, + "compile": { + "lib/net8.0/MimeKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/MimeKit.dll": { + "related": ".dll.config;.pdb;.xml" + } + } + }, + "MySqlConnector/2.3.7": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.1" + }, + "compile": { + "lib/net8.0/MySqlConnector.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/MySqlConnector.dll": { + "related": ".xml" + } + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "12.0.1" + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "related": ".pdb;.xml" + } + } + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "type": "package", + "dependencies": { + "Nito.AsyncEx.Tasks": "5.1.2", + "Nito.Collections.Deque": "1.1.1" + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": { + "related": ".xml" + } + } + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "type": "package", + "dependencies": { + "Nito.Disposables": "2.2.1" + }, + "compile": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": { + "related": ".xml" + } + } + }, + "Nito.Collections.Deque/1.1.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nito.Collections.Deque.dll": { + "related": ".xml" + } + } + }, + "Nito.Disposables/2.2.1": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.7.1" + }, + "compile": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Nito.Disposables.dll": { + "related": ".xml" + } + } + }, + "Npgsql/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "NUglify/1.21.4": { + "type": "package", + "compile": { + "lib/net5.0/NUglify.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/NUglify.dll": { + "related": ".xml" + } + } + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "5.0.1" + }, + "compile": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Pipelines.Sockets.Unofficial.dll": { + "related": ".xml" + } + } + }, + "QuestPDF/2022.12.15": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.7", + "SkiaSharp.HarfBuzz": "2.88.7" + }, + "compile": { + "lib/net8.0/QuestPDF.dll": {} + }, + "runtime": { + "lib/net8.0/QuestPDF.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "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/_._": {} + } + }, + "runtime.native.System.IO.Compression/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/_._": {} + } + }, + "runtime.native.System.Net.Http/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/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "ShimSkiaSharp/1.0.0.18": { + "type": "package", + "compile": { + "lib/net8.0/ShimSkiaSharp.dll": {} + }, + "runtime": { + "lib/net8.0/ShimSkiaSharp.dll": {} + } + }, + "SixLabors.Fonts/1.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/SixLabors.Fonts.dll": { + "related": ".xml" + } + } + }, + "SkiaSharp/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.8", + "SkiaSharp.NativeAssets.macOS": "2.88.8" + }, + "compile": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.HarfBuzz/2.88.7": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "7.3.0.1", + "SkiaSharp": "2.88.7" + }, + "compile": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.8" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "StackExchange.Redis/2.7.27": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Pipelines.Sockets.Unofficial": "2.2.8" + }, + "compile": { + "lib/net6.0/StackExchange.Redis.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/StackExchange.Redis.dll": { + "related": ".xml" + } + } + }, + "Svg.Custom/1.0.0.18": { + "type": "package", + "dependencies": { + "ExCSS": "4.2.3" + }, + "compile": { + "lib/net8.0/Svg.Custom.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Custom.dll": {} + } + }, + "Svg.Model/1.0.0.18": { + "type": "package", + "dependencies": { + "ShimSkiaSharp": "1.0.0.18", + "Svg.Custom": "1.0.0.18" + }, + "compile": { + "lib/net8.0/Svg.Model.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Model.dll": {} + } + }, + "Svg.Skia/1.0.0.18": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.6", + "SkiaSharp.HarfBuzz": "2.88.6", + "Svg.Custom": "1.0.0.18", + "Svg.Model": "1.0.0.18" + }, + "compile": { + "lib/net8.0/Svg.Skia.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Skia.dll": {} + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.ClientModel/1.0.0": { + "type": "package", + "dependencies": { + "System.Memory.Data": "1.0.2", + "System.Text.Json": "4.7.2" + }, + "compile": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ClientModel.dll": { + "related": ".xml" + } + } + }, + "System.CodeDom/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Collections/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/System.Collections.dll": { + "related": ".xml" + } + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { + "related": ".xml" + } + } + }, + "System.Configuration.ConfigurationManager/8.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "8.0.0", + "System.Security.Cryptography.ProtectedData": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Debug/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/System.Diagnostics.Debug.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/7.0.2": { + "type": "package", + "compile": { + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.EventLog/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/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/System.Diagnostics.Tools.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Tracing/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/System.Diagnostics.Tracing.dll": { + "related": ".xml" + } + } + }, + "System.Formats.Asn1/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "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/System.Globalization.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Tokens": "6.35.0" + }, + "compile": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "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/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Hashing/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Hashing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Packaging/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Pipelines/5.0.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Async/6.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Linq.Async.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Linq.Async.dll": { + "related": ".xml" + } + } + }, + "System.Linq.Dynamic.Core/1.3.12": { + "type": "package", + "compile": { + "lib/net8.0/System.Linq.Dynamic.Core.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/System.Linq.Dynamic.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Management/7.0.2": { + "type": "package", + "dependencies": { + "System.CodeDom": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + } + }, + "System.Net.Http/4.3.4": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.NameResolution/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NameResolution.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "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/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "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/System.Reflection.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "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/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "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/System.Resources.ResourceManager.dll": { + "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.Caching/8.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "8.0.0" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "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/System.Runtime.Extensions.dll": { + "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/System.Runtime.Handles.dll": { + "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.dll": {} + } + }, + "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.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Xml/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.1" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Http/8.0.0": { + "type": "package", + "dependencies": { + "System.ServiceModel.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/net8.0/cs/System.ServiceModel.Http.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/System.ServiceModel.Http.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/System.ServiceModel.Http.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/System.ServiceModel.Http.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/System.ServiceModel.Http.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/System.ServiceModel.Http.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/System.ServiceModel.Http.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/System.ServiceModel.Http.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/System.ServiceModel.Http.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/System.ServiceModel.Http.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/System.ServiceModel.Http.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/System.ServiceModel.Http.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/System.ServiceModel.Http.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.ServiceModel.Primitives/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ObjectPool": "6.0.16", + "System.Security.Cryptography.Xml": "6.0.1" + }, + "compile": { + "ref/net8.0/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/net8.0/System.ServiceModel.Primitives.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/net8.0/cs/System.ServiceModel.Primitives.resources.dll": { + "locale": "cs" + }, + "lib/net8.0/de/System.ServiceModel.Primitives.resources.dll": { + "locale": "de" + }, + "lib/net8.0/es/System.ServiceModel.Primitives.resources.dll": { + "locale": "es" + }, + "lib/net8.0/fr/System.ServiceModel.Primitives.resources.dll": { + "locale": "fr" + }, + "lib/net8.0/it/System.ServiceModel.Primitives.resources.dll": { + "locale": "it" + }, + "lib/net8.0/ja/System.ServiceModel.Primitives.resources.dll": { + "locale": "ja" + }, + "lib/net8.0/ko/System.ServiceModel.Primitives.resources.dll": { + "locale": "ko" + }, + "lib/net8.0/pl/System.ServiceModel.Primitives.resources.dll": { + "locale": "pl" + }, + "lib/net8.0/pt-BR/System.ServiceModel.Primitives.resources.dll": { + "locale": "pt-BR" + }, + "lib/net8.0/ru/System.ServiceModel.Primitives.resources.dll": { + "locale": "ru" + }, + "lib/net8.0/tr/System.ServiceModel.Primitives.resources.dll": { + "locale": "tr" + }, + "lib/net8.0/zh-Hans/System.ServiceModel.Primitives.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net8.0/zh-Hant/System.ServiceModel.Primitives.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "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/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/4.5.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Runtime.CompilerServices.Unsafe": "4.5.2" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/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" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + }, + "System.Text.RegularExpressions/4.3.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.1" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": { + "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/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.Timer/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.2/System.Threading.Timer.dll": { + "related": ".xml" + } + } + }, + "System.ValueTuple/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "WebMarkupMin.AspNet.Common/2.16.0": { + "type": "package", + "dependencies": { + "WebMarkupMin.Core": "2.16.0" + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll": { + "related": ".xml" + } + } + }, + "WebMarkupMin.AspNetCore8/2.16.0": { + "type": "package", + "dependencies": { + "WebMarkupMin.AspNet.Common": "2.16.0" + }, + "compile": { + "lib/net8.0/WebMarkupMin.AspNetCore8.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/WebMarkupMin.AspNetCore8.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "WebMarkupMin.Core/2.16.0": { + "type": "package", + "dependencies": { + "AdvancedStringBuilder": "0.1.1" + }, + "compile": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/WebMarkupMin.Core.dll": { + "related": ".xml" + } + } + }, + "WebMarkupMin.NUglify/2.16.0": { + "type": "package", + "dependencies": { + "NUglify": "1.21.4", + "WebMarkupMin.Core": "2.16.0" + }, + "compile": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/WebMarkupMin.NUglify.dll": { + "related": ".xml" + } + } + }, + "XLParser/1.5.2": { + "type": "package", + "dependencies": { + "Irony.NetCore": "1.0.11", + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.6/XLParser.dll": {} + }, + "runtime": { + "lib/netstandard1.6/XLParser.dll": {} + } + }, + "Nop.Core/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "AutoMapper": "13.0.1", + "Autofac.Extensions.DependencyInjection": "9.0.0", + "Azure.Extensions.AspNetCore.DataProtection.Blobs": "1.3.4", + "Azure.Extensions.AspNetCore.DataProtection.Keys": "1.2.3", + "Azure.Identity": "1.11.2", + "Humanizer": "2.14.1", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "8.0.4", + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "8.0.4", + "Microsoft.Extensions.Caching.SqlServer": "8.0.4", + "Microsoft.Extensions.Caching.StackExchangeRedis": "8.0.4", + "Nito.AsyncEx.Coordination": "5.1.2", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Linq.Async": "6.0.1" + }, + "compile": { + "bin/placeholder/Nop.Core.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Core.dll": {} + } + }, + "Nop.Data/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "FluentMigrator": "5.2.0", + "FluentMigrator.Runner": "5.1.0", + "Microsoft.Data.SqlClient": "5.2.0", + "MySqlConnector": "2.3.7", + "Nop.Core": "4.70.0", + "Npgsql": "8.0.2", + "System.Configuration.ConfigurationManager": "8.0.0", + "System.Net.NameResolution": "4.3.0", + "linq2db": "5.4.1" + }, + "compile": { + "bin/placeholder/Nop.Data.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Data.dll": {} + } + }, + "Nop.Services/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Azure.Storage.Blobs": "12.19.1", + "ClosedXML": "0.102.2", + "Google.Apis.Auth": "1.68.0", + "HarfBuzzSharp.NativeAssets.Linux": "2.8.2.3", + "MailKit": "4.5.0", + "MaxMind.GeoIP2": "5.2.0", + "Microsoft.Identity.Client": "4.60.3", + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "QuestPDF": "2022.12.15", + "SkiaSharp": "2.88.8", + "SkiaSharp.NativeAssets.Linux.NoDependencies": "2.88.8", + "Svg.Skia": "1.0.0.18", + "System.Linq.Dynamic.Core": "1.3.12", + "System.ServiceModel.Http": "8.0.0" + }, + "compile": { + "bin/placeholder/Nop.Services.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Services.dll": {} + } + }, + "Nop.Web.Framework/4.70.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "FluentValidation.AspNetCore": "11.3.0", + "LigerShark.WebOptimizer.Core": "3.0.405", + "Nop.Core": "4.70.0", + "Nop.Data": "4.70.0", + "Nop.Services": "4.70.0", + "WebMarkupMin.AspNetCore8": "2.16.0", + "WebMarkupMin.NUglify": "2.16.0" + }, + "compile": { + "bin/placeholder/Nop.Web.Framework.dll": {} + }, + "runtime": { + "bin/placeholder/Nop.Web.Framework.dll": {} + } + } + } + }, + "libraries": { + "AdvancedStringBuilder/0.1.1": { + "sha512": "32IrlspOA59ewotQ4tlKP27QhKxMKGB7oncqlwVHn/hAz+j/r3HvLr6/W9ni9Mnyktlcg6kt7QZS8rEgur1+4Q==", + "type": "package", + "path": "advancedstringbuilder/0.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "advancedstringbuilder.0.1.1.nupkg.sha512", + "advancedstringbuilder.nuspec", + "icon.png", + "lib/net40-client/AdvancedStringBuilder.dll", + "lib/net40-client/AdvancedStringBuilder.xml", + "lib/net45/AdvancedStringBuilder.dll", + "lib/net45/AdvancedStringBuilder.xml", + "lib/netstandard1.0/AdvancedStringBuilder.dll", + "lib/netstandard1.0/AdvancedStringBuilder.xml", + "lib/netstandard2.0/AdvancedStringBuilder.dll", + "lib/netstandard2.0/AdvancedStringBuilder.xml", + "readme.txt" + ] + }, + "Autofac/8.0.0": { + "sha512": "qxVqJcl3fixxa5aZc9TmIuYTwooI9GCL5RzfUiTZtTlbAF3NcWz7bPeEyJEAyS/0qGhSyGnXeku2eiu/7L+3qw==", + "type": "package", + "path": "autofac/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.8.0.0.nupkg.sha512", + "autofac.nuspec", + "icon.png", + "lib/net6.0/Autofac.dll", + "lib/net6.0/Autofac.xml", + "lib/net7.0/Autofac.dll", + "lib/net7.0/Autofac.xml", + "lib/net8.0/Autofac.dll", + "lib/net8.0/Autofac.xml", + "lib/netstandard2.0/Autofac.dll", + "lib/netstandard2.0/Autofac.xml", + "lib/netstandard2.1/Autofac.dll", + "lib/netstandard2.1/Autofac.xml" + ] + }, + "Autofac.Extensions.DependencyInjection/9.0.0": { + "sha512": "tf+//4MBola256qaaVQqQ6tx2R57S8A8BFekRWNpHkpSFzRBPkU+/fEDUSrCjqldK/B2zRoDbsMcQmYy3PYGWg==", + "type": "package", + "path": "autofac.extensions.dependencyinjection/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "autofac.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "autofac.extensions.dependencyinjection.nuspec", + "icon.png", + "lib/net6.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net6.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net7.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net7.0/Autofac.Extensions.DependencyInjection.xml", + "lib/net8.0/Autofac.Extensions.DependencyInjection.dll", + "lib/net8.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml" + ] + }, + "AutoMapper/13.0.1": { + "sha512": "/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "type": "package", + "path": "automapper/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.13.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/net6.0/AutoMapper.dll", + "lib/net6.0/AutoMapper.xml" + ] + }, + "Azure.Core/1.38.0": { + "sha512": "IuEgCoVA0ef7E4pQtpC3+TkPbzaoQfa77HlfJDmfuaJUCVJmn7fT0izamZiryW5sYUFKizsftIxMkXKbgIcPMQ==", + "type": "package", + "path": "azure.core/1.38.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.core.1.38.0.nupkg.sha512", + "azure.core.nuspec", + "azureicon.png", + "lib/net461/Azure.Core.dll", + "lib/net461/Azure.Core.xml", + "lib/net472/Azure.Core.dll", + "lib/net472/Azure.Core.xml", + "lib/net6.0/Azure.Core.dll", + "lib/net6.0/Azure.Core.xml", + "lib/netstandard2.0/Azure.Core.dll", + "lib/netstandard2.0/Azure.Core.xml" + ] + }, + "Azure.Extensions.AspNetCore.DataProtection.Blobs/1.3.4": { + "sha512": "zS+x0MpUMSbvZD598lwAoax+ohIeSAvGlXpT71iP7FFmMZ+Tjz/8hx+jZH/RbV2cJYTYbux8XFDll7LMPuz46g==", + "type": "package", + "path": "azure.extensions.aspnetcore.dataprotection.blobs/1.3.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.extensions.aspnetcore.dataprotection.blobs.1.3.4.nupkg.sha512", + "azure.extensions.aspnetcore.dataprotection.blobs.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.dll", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Blobs.xml" + ] + }, + "Azure.Extensions.AspNetCore.DataProtection.Keys/1.2.3": { + "sha512": "F797bJFRvAP/LAsApXc9cIrg+1/3hZ09l3z7P7JgVHnyBeMiVi6HlMhY1RNuINzAVhMZb5hs9pjIv33dCvox1g==", + "type": "package", + "path": "azure.extensions.aspnetcore.dataprotection.keys/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.extensions.aspnetcore.dataprotection.keys.1.2.3.nupkg.sha512", + "azure.extensions.aspnetcore.dataprotection.keys.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.dll", + "lib/netstandard2.0/Azure.Extensions.AspNetCore.DataProtection.Keys.xml" + ] + }, + "Azure.Identity/1.11.2": { + "sha512": "mihECA1msfwdjTPXHwK9N3n4ln8jMB0DuT0r2caDGPriRT1vca4/Jgmo6FmFZPo8RQsQt1fVn1Gxv5WqkyHVeA==", + "type": "package", + "path": "azure.identity/1.11.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.identity.1.11.2.nupkg.sha512", + "azure.identity.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Identity.dll", + "lib/netstandard2.0/Azure.Identity.xml" + ] + }, + "Azure.Security.KeyVault.Keys/4.2.0": { + "sha512": "I0e71ZjMQ3bJFBOnZNnKizshvZgd/GOx+m7waAeojbm/2P7j4mp5DXNMAN1nm0/FZaCGGR6fVF5I54El+RtGIg==", + "type": "package", + "path": "azure.security.keyvault.keys/4.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.security.keyvault.keys.4.2.0.nupkg.sha512", + "azure.security.keyvault.keys.nuspec", + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll", + "lib/netstandard2.0/Azure.Security.KeyVault.Keys.xml", + "pkgicon.png" + ] + }, + "Azure.Storage.Blobs/12.19.1": { + "sha512": "x43hWFJ4sPQ23TD4piCwT+KlQpZT8pNDAzqj6yUCqh+WJ2qcQa17e1gh6ZOeT2QNFQTTDSuR56fm2bIV7i11/w==", + "type": "package", + "path": "azure.storage.blobs/12.19.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.storage.blobs.12.19.1.nupkg.sha512", + "azure.storage.blobs.nuspec", + "azureicon.png", + "lib/net6.0/Azure.Storage.Blobs.dll", + "lib/net6.0/Azure.Storage.Blobs.xml", + "lib/netstandard2.0/Azure.Storage.Blobs.dll", + "lib/netstandard2.0/Azure.Storage.Blobs.xml", + "lib/netstandard2.1/Azure.Storage.Blobs.dll", + "lib/netstandard2.1/Azure.Storage.Blobs.xml" + ] + }, + "Azure.Storage.Common/12.18.1": { + "sha512": "ohCslqP9yDKIn+DVjBEOBuieB1QwsUCz+BwHYNaJ3lcIsTSiI4Evnq81HcKe8CqM8qvdModbipVQKpnxpbdWqA==", + "type": "package", + "path": "azure.storage.common/12.18.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.storage.common.12.18.1.nupkg.sha512", + "azure.storage.common.nuspec", + "azureicon.png", + "lib/net6.0/Azure.Storage.Common.dll", + "lib/net6.0/Azure.Storage.Common.xml", + "lib/netstandard2.0/Azure.Storage.Common.dll", + "lib/netstandard2.0/Azure.Storage.Common.xml" + ] + }, + "BouncyCastle.Cryptography/2.3.0": { + "sha512": "IaVIiYxZLaBulveGDRUx/pBoW/Rc8QeXGF5u2E8xL8RWhVKCgfmtX9NUyGRbnSqnbFQU2zyP3MkXIdH+jUuQBw==", + "type": "package", + "path": "bouncycastle.cryptography/2.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "bouncycastle.cryptography.2.3.0.nupkg.sha512", + "bouncycastle.cryptography.nuspec", + "lib/net461/BouncyCastle.Cryptography.dll", + "lib/net461/BouncyCastle.Cryptography.xml", + "lib/net6.0/BouncyCastle.Cryptography.dll", + "lib/net6.0/BouncyCastle.Cryptography.xml", + "lib/netstandard2.0/BouncyCastle.Cryptography.dll", + "lib/netstandard2.0/BouncyCastle.Cryptography.xml", + "packageIcon.png" + ] + }, + "ClosedXML/0.102.2": { + "sha512": "nsHmfPNPtWpr6vair857sQiN11OaFn80oiN2GIbTB1vDqnw9jhNMtlxS0/iYP/E+YGG5zLX2N6xeznuBuvezSQ==", + "type": "package", + "path": "closedxml/0.102.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "closedxml.0.102.2.nupkg.sha512", + "closedxml.nuspec", + "lib/netstandard2.0/ClosedXML.dll", + "lib/netstandard2.0/ClosedXML.xml", + "lib/netstandard2.1/ClosedXML.dll", + "lib/netstandard2.1/ClosedXML.xml", + "nuget-logo.png" + ] + }, + "DocumentFormat.OpenXml/2.16.0": { + "sha512": "RhpnDgyyx1KjZm98T3w3bSXFHG/7ZNUaVmz4NAUA+jmV3PcVNZeW87Y04CpBNLdDHEMSspirfo0B5kLRaoE97w==", + "type": "package", + "path": "documentformat.openxml/2.16.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "documentformat.openxml.2.16.0.nupkg.sha512", + "documentformat.openxml.nuspec", + "icon.png", + "lib/net35/DocumentFormat.OpenXml.dll", + "lib/net35/DocumentFormat.OpenXml.xml", + "lib/net40/DocumentFormat.OpenXml.dll", + "lib/net40/DocumentFormat.OpenXml.xml", + "lib/net46/DocumentFormat.OpenXml.dll", + "lib/net46/DocumentFormat.OpenXml.xml", + "lib/netstandard1.3/DocumentFormat.OpenXml.dll", + "lib/netstandard1.3/DocumentFormat.OpenXml.xml", + "lib/netstandard2.0/DocumentFormat.OpenXml.dll", + "lib/netstandard2.0/DocumentFormat.OpenXml.xml" + ] + }, + "ExcelNumberFormat/1.1.0": { + "sha512": "R3BVHPs9O+RkExbZYTGT0+9HLbi8ZrNij1Yziyw6znd3J7P3uoIR07uwTLGOogtz1p6+0sna66eBoXu7tBiVQA==", + "type": "package", + "path": "excelnumberformat/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excelnumberformat.1.1.0.nupkg.sha512", + "excelnumberformat.nuspec", + "icon.png", + "lib/net20/ExcelNumberFormat.dll", + "lib/net20/ExcelNumberFormat.xml", + "lib/netstandard1.0/ExcelNumberFormat.dll", + "lib/netstandard1.0/ExcelNumberFormat.xml", + "lib/netstandard2.0/ExcelNumberFormat.dll", + "lib/netstandard2.0/ExcelNumberFormat.xml" + ] + }, + "ExCSS/4.2.3": { + "sha512": "SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "type": "package", + "path": "excss/4.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excss.4.2.3.nupkg.sha512", + "excss.nuspec", + "lib/net48/ExCSS.dll", + "lib/net6.0/ExCSS.dll", + "lib/net7.0/ExCSS.dll", + "lib/netcoreapp3.1/ExCSS.dll", + "lib/netstandard2.0/ExCSS.dll", + "lib/netstandard2.1/ExCSS.dll", + "readme.md" + ] + }, + "FirebirdSql.Data.FirebirdClient/10.0.0": { + "sha512": "x+JkSd6TeL9zUXDbi5C0NPeZ1ejo5sw3G9nhoxvVGXhaU399agYgO5RXtYRmcS4GkeA57Q9sThe5pFL2knSdXQ==", + "type": "package", + "path": "firebirdsql.data.firebirdclient/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "firebird-logo.png", + "firebirdsql.data.firebirdclient.10.0.0.nupkg.sha512", + "firebirdsql.data.firebirdclient.nuspec", + "lib/net48/FirebirdSql.Data.FirebirdClient.dll", + "lib/net5.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/net6.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/net7.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/netstandard2.0/FirebirdSql.Data.FirebirdClient.dll", + "lib/netstandard2.1/FirebirdSql.Data.FirebirdClient.dll", + "license.txt" + ] + }, + "FluentMigrator/5.2.0": { + "sha512": "h3w95meLtHsdWQY1BVVh5eaGcI82zADR2T1WSCcc/NTc+P+rsGzmqG5RF9Gz+Fy1BNEQXL47Xppk/YorwJgEWg==", + "type": "package", + "path": "fluentmigrator/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.5.2.0.nupkg.sha512", + "fluentmigrator.nuspec", + "lib/net48/FluentMigrator.dll", + "lib/net48/FluentMigrator.pdb", + "lib/net48/FluentMigrator.xml", + "lib/netstandard2.0/FluentMigrator.dll", + "lib/netstandard2.0/FluentMigrator.pdb", + "lib/netstandard2.0/FluentMigrator.xml" + ] + }, + "FluentMigrator.Abstractions/5.2.0": { + "sha512": "MvzpENiB2o8QqIXYgKlbtrEPyaHc2m2ukRmaNWszL9ZJH3OBY/kYMotn/dxWC+zwlUo82ZPvoCJtoFi2nptz2w==", + "type": "package", + "path": "fluentmigrator.abstractions/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.abstractions.5.2.0.nupkg.sha512", + "fluentmigrator.abstractions.nuspec", + "lib/net48/FluentMigrator.Abstractions.dll", + "lib/net48/FluentMigrator.Abstractions.pdb", + "lib/net48/FluentMigrator.Abstractions.xml", + "lib/net48/de-DE/FluentMigrator.Abstractions.resources.dll", + "lib/netstandard2.0/FluentMigrator.Abstractions.dll", + "lib/netstandard2.0/FluentMigrator.Abstractions.pdb", + "lib/netstandard2.0/FluentMigrator.Abstractions.xml", + "lib/netstandard2.0/de-DE/FluentMigrator.Abstractions.resources.dll" + ] + }, + "FluentMigrator.Extensions.MySql/5.1.0": { + "sha512": "8dx8AS/XFs6HH7G3mw2FcDM43Y7+n96Z0OS9uQjmyum5Cv2Qp2dD2Gf747MCtbWbC/vdhJGomld+BnccBkNA3w==", + "type": "package", + "path": "fluentmigrator.extensions.mysql/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.mysql.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.mysql.nuspec", + "lib/net48/FluentMigrator.Extensions.MySql.dll", + "lib/net48/FluentMigrator.Extensions.MySql.pdb", + "lib/net48/FluentMigrator.Extensions.MySql.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.MySql.xml" + ] + }, + "FluentMigrator.Extensions.Oracle/5.1.0": { + "sha512": "Cpnav//COP8wl/NVa7EYyiQAsF0lAba3NYizAWXq+vIApxyu5L9Cp6GpyCTgIIOR4QLTx3FXV4cCg7/QKXkHHA==", + "type": "package", + "path": "fluentmigrator.extensions.oracle/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.oracle.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.oracle.nuspec", + "lib/net48/FluentMigrator.Extensions.Oracle.dll", + "lib/net48/FluentMigrator.Extensions.Oracle.pdb", + "lib/net48/FluentMigrator.Extensions.Oracle.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Oracle.xml" + ] + }, + "FluentMigrator.Extensions.Postgres/5.1.0": { + "sha512": "g3Se8v9zyjJUxFedx6mxCtCWrpr5IRD1BExyeIuvorJZZztE4emO/qXtpEB/m9YwdD8stJuPShbMWUa7bKm86Q==", + "type": "package", + "path": "fluentmigrator.extensions.postgres/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.postgres.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.postgres.nuspec", + "lib/net48/FluentMigrator.Extensions.Postgres.dll", + "lib/net48/FluentMigrator.Extensions.Postgres.pdb", + "lib/net48/FluentMigrator.Extensions.Postgres.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Postgres.xml" + ] + }, + "FluentMigrator.Extensions.Snowflake/5.1.0": { + "sha512": "3YnRq9q5AcShusF9OvbfMFu/Swyfn8V5YD/vkvAsNTcIIAWs4jXY0QhLR/lofIwvk56XqXE263x2OfzLZnf+gQ==", + "type": "package", + "path": "fluentmigrator.extensions.snowflake/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.snowflake.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.snowflake.nuspec", + "lib/net48/FluentMigrator.Extensions.Snowflake.dll", + "lib/net48/FluentMigrator.Extensions.Snowflake.pdb", + "lib/net48/FluentMigrator.Extensions.Snowflake.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.Snowflake.xml" + ] + }, + "FluentMigrator.Extensions.SqlServer/5.1.0": { + "sha512": "zdcQ1mYvyFY+gzfLScv5Y4j/qFXn4xLed71WqjiNWvN2/JkVh7Xa94K/b+PA6AYh8a7AIqdbnOKtzFr0Lh+95g==", + "type": "package", + "path": "fluentmigrator.extensions.sqlserver/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.extensions.sqlserver.5.1.0.nupkg.sha512", + "fluentmigrator.extensions.sqlserver.nuspec", + "lib/net48/FluentMigrator.Extensions.SqlServer.dll", + "lib/net48/FluentMigrator.Extensions.SqlServer.pdb", + "lib/net48/FluentMigrator.Extensions.SqlServer.xml", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.dll", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.pdb", + "lib/netstandard2.0/FluentMigrator.Extensions.SqlServer.xml" + ] + }, + "FluentMigrator.Runner/5.1.0": { + "sha512": "jincYPtHyQjQ3XgQ7c8aPkKLX88HxueHdeSz++WDVo0LXnR4aFbvi/UXbtAsnwt+Jj06KFhF1DlYVOoT3yrhKQ==", + "type": "package", + "path": "fluentmigrator.runner/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.5.1.0.nupkg.sha512", + "fluentmigrator.runner.nuspec", + "lib/net48/FluentMigrator.Runner.dll", + "lib/net48/FluentMigrator.Runner.pdb", + "lib/net48/FluentMigrator.Runner.xml", + "lib/netstandard2.0/FluentMigrator.Runner.dll", + "lib/netstandard2.0/FluentMigrator.Runner.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.xml" + ] + }, + "FluentMigrator.Runner.Core/5.1.0": { + "sha512": "nP/3ezpP57wqt/1+NScrsSRiQj90xeaNjEyjFIekNtPzmGyM/z//AYk3MXtfM8so8b+JZNL5INQYgXaVGISD0Q==", + "type": "package", + "path": "fluentmigrator.runner.core/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.core.5.1.0.nupkg.sha512", + "fluentmigrator.runner.core.nuspec", + "lib/net48/FluentMigrator.Runner.Core.dll", + "lib/net48/FluentMigrator.Runner.Core.pdb", + "lib/net48/FluentMigrator.Runner.Core.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Core.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Core.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Core.xml" + ] + }, + "FluentMigrator.Runner.Db2/5.1.0": { + "sha512": "Z9CdgQnkyBgNyRpTA2le/VEQaa2ukFNqDYEqkRu2cOZk+XF3JsjkQMeeQB2Byy7yZhgK/SGrauLvebB5wF1wEw==", + "type": "package", + "path": "fluentmigrator.runner.db2/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.db2.5.1.0.nupkg.sha512", + "fluentmigrator.runner.db2.nuspec", + "lib/net48/FluentMigrator.Runner.Db2.dll", + "lib/net48/FluentMigrator.Runner.Db2.pdb", + "lib/net48/FluentMigrator.Runner.Db2.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Db2.xml" + ] + }, + "FluentMigrator.Runner.Firebird/5.1.0": { + "sha512": "lNFo+LZQczW3vtuSjpOfRxUhoRrwBMg+PV+SOk12c1PnkfvDAtsX/HSn9yUI3xV+fN1x6krBIwIQ9o63HQZAfg==", + "type": "package", + "path": "fluentmigrator.runner.firebird/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.firebird.5.1.0.nupkg.sha512", + "fluentmigrator.runner.firebird.nuspec", + "lib/net48/FluentMigrator.Runner.Firebird.dll", + "lib/net48/FluentMigrator.Runner.Firebird.pdb", + "lib/net48/FluentMigrator.Runner.Firebird.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Firebird.xml" + ] + }, + "FluentMigrator.Runner.Hana/5.1.0": { + "sha512": "xCRna1elZYhOITRK4uNtPb3xut0GTtteCyTjQF7ZlHC4RFFpg1a2fAWFUF+TB9YVeFxf1QHKhbo8Kr5rGH6HqA==", + "type": "package", + "path": "fluentmigrator.runner.hana/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.hana.5.1.0.nupkg.sha512", + "fluentmigrator.runner.hana.nuspec", + "lib/net48/FluentMigrator.Runner.Hana.dll", + "lib/net48/FluentMigrator.Runner.Hana.pdb", + "lib/net48/FluentMigrator.Runner.Hana.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Hana.xml" + ] + }, + "FluentMigrator.Runner.MySql/5.1.0": { + "sha512": "VywFX3gKQ7EcveKoLcxLwf8aQkWnJn6WQ2aJqe7Dw6gld8o0WBpevsBwQFO1doGqXzhFDlWHO2NwKoqvXQCG+Q==", + "type": "package", + "path": "fluentmigrator.runner.mysql/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.mysql.5.1.0.nupkg.sha512", + "fluentmigrator.runner.mysql.nuspec", + "lib/net48/FluentMigrator.Runner.MySql.dll", + "lib/net48/FluentMigrator.Runner.MySql.pdb", + "lib/net48/FluentMigrator.Runner.MySql.xml", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.dll", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.MySql.xml" + ] + }, + "FluentMigrator.Runner.Oracle/5.1.0": { + "sha512": "qNmTirqFREMOm/HMkO68suXd3EIoadfQ69gvuJ5Hvy7LNQgMAW8FcrcGkNFn0t0JYAtGEbtH9t90/6dmBAwQIg==", + "type": "package", + "path": "fluentmigrator.runner.oracle/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.oracle.5.1.0.nupkg.sha512", + "fluentmigrator.runner.oracle.nuspec", + "lib/net48/FluentMigrator.Runner.Oracle.dll", + "lib/net48/FluentMigrator.Runner.Oracle.pdb", + "lib/net48/FluentMigrator.Runner.Oracle.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Oracle.xml" + ] + }, + "FluentMigrator.Runner.Postgres/5.1.0": { + "sha512": "Zr/cqR7b5PJqwO/JPtVz/zn2USO/jLz8b9JEFCjsYIb4AU8WIwNpLoRXsEcWSoHjlAc60LPcZM608tkgDGgA6A==", + "type": "package", + "path": "fluentmigrator.runner.postgres/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.postgres.5.1.0.nupkg.sha512", + "fluentmigrator.runner.postgres.nuspec", + "lib/net48/FluentMigrator.Runner.Postgres.dll", + "lib/net48/FluentMigrator.Runner.Postgres.pdb", + "lib/net48/FluentMigrator.Runner.Postgres.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Postgres.xml" + ] + }, + "FluentMigrator.Runner.Redshift/5.1.0": { + "sha512": "7GTF2EaaU8de9ViLobwxSKT+gY81h6b4zXIkMteALdqnAjkMNcynhEradH5OaDe9PorKWWh3/VBzCmO+N516xw==", + "type": "package", + "path": "fluentmigrator.runner.redshift/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.redshift.5.1.0.nupkg.sha512", + "fluentmigrator.runner.redshift.nuspec", + "lib/net48/FluentMigrator.Runner.Redshift.dll", + "lib/net48/FluentMigrator.Runner.Redshift.pdb", + "lib/net48/FluentMigrator.Runner.Redshift.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Redshift.xml" + ] + }, + "FluentMigrator.Runner.Snowflake/5.1.0": { + "sha512": "OmGfCxJPSrhJ6VcW6ypqc+NziwH1rygkNEJfW7Jl1DHfwrQtPgIgWw8qTA0abN+RkwtalXsfaEJ+4EuL0L+w6w==", + "type": "package", + "path": "fluentmigrator.runner.snowflake/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.snowflake.5.1.0.nupkg.sha512", + "fluentmigrator.runner.snowflake.nuspec", + "lib/net48/FluentMigrator.Runner.Snowflake.dll", + "lib/net48/FluentMigrator.Runner.Snowflake.pdb", + "lib/net48/FluentMigrator.Runner.Snowflake.xml", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.dll", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.Snowflake.xml" + ] + }, + "FluentMigrator.Runner.SQLite/5.1.0": { + "sha512": "5fADu6iWF9pnPKhI0S2VmdR8gaFFe4A+ZtAu57A9w8gcZCCPVzekye83+gm93XuAGxOQtT1RErVIy2T0aGcyYA==", + "type": "package", + "path": "fluentmigrator.runner.sqlite/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.sqlite.5.1.0.nupkg.sha512", + "fluentmigrator.runner.sqlite.nuspec", + "lib/net48/FluentMigrator.Runner.SQLite.dll", + "lib/net48/FluentMigrator.Runner.SQLite.pdb", + "lib/net48/FluentMigrator.Runner.SQLite.xml", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.dll", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.SQLite.xml" + ] + }, + "FluentMigrator.Runner.SqlServer/5.1.0": { + "sha512": "WiZjICPJRIjuOZG2c52JOspKG0iR9UrfotE/SQMNlGEoIxjp8XrksEw7LytWsXWCymDjZUedNnA7QTqZS4p/Iw==", + "type": "package", + "path": "fluentmigrator.runner.sqlserver/5.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentmigrator.runner.sqlserver.5.1.0.nupkg.sha512", + "fluentmigrator.runner.sqlserver.nuspec", + "lib/net48/FluentMigrator.Runner.SqlServer.dll", + "lib/net48/FluentMigrator.Runner.SqlServer.pdb", + "lib/net48/FluentMigrator.Runner.SqlServer.xml", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.dll", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.pdb", + "lib/netstandard2.0/FluentMigrator.Runner.SqlServer.xml" + ] + }, + "FluentValidation/11.5.1": { + "sha512": "0h1Q5lNOLLyYTWMJmyNoMqhY4CBRvvUWvJP1R4F2CnmmzuWwvB0A8aVmw5+lOuwYnwUwCRrdeMLbc81F38ahNQ==", + "type": "package", + "path": "fluentvalidation/11.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.11.5.1.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net5.0/FluentValidation.dll", + "lib/net5.0/FluentValidation.xml", + "lib/net6.0/FluentValidation.dll", + "lib/net6.0/FluentValidation.xml", + "lib/net7.0/FluentValidation.dll", + "lib/net7.0/FluentValidation.xml", + "lib/netstandard2.0/FluentValidation.dll", + "lib/netstandard2.0/FluentValidation.xml", + "lib/netstandard2.1/FluentValidation.dll", + "lib/netstandard2.1/FluentValidation.xml" + ] + }, + "FluentValidation.AspNetCore/11.3.0": { + "sha512": "jtFVgKnDFySyBlPS8bZbTKEEwJZnn11rXXJ2SQnjDhZ56rQqybBg9Joq4crRLz3y0QR8WoOq4iE4piV81w/Djg==", + "type": "package", + "path": "fluentvalidation.aspnetcore/11.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.aspnetcore.11.3.0.nupkg.sha512", + "fluentvalidation.aspnetcore.nuspec", + "lib/net5.0/FluentValidation.AspNetCore.dll", + "lib/net5.0/FluentValidation.AspNetCore.xml", + "lib/net6.0/FluentValidation.AspNetCore.dll", + "lib/net6.0/FluentValidation.AspNetCore.xml", + "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll", + "lib/netcoreapp3.1/FluentValidation.AspNetCore.xml" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.5.1": { + "sha512": "iWM0LS1MDYX06pcjMEQKqHirl2zkjHlNV23mEJSoR1IZI7KQmTa0RcTtGEJpj5+iHvBCfrzP2mYKM4FtRKVb+A==", + "type": "package", + "path": "fluentvalidation.dependencyinjectionextensions/11.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512", + "fluentvalidation.dependencyinjectionextensions.nuspec", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml" + ] + }, + "Google.Apis/1.68.0": { + "sha512": "s2MymhdpH+ybZNBeZ2J5uFgFHApBp+QXf9FjZSdM1lk/vx5VqIknJwnaWiuAzXxPrLEkesX0Q+UsiWn39yZ9zw==", + "type": "package", + "path": "google.apis/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.1.68.0.nupkg.sha512", + "google.apis.nuspec", + "lib/net462/Google.Apis.dll", + "lib/net462/Google.Apis.pdb", + "lib/net462/Google.Apis.xml", + "lib/net6.0/Google.Apis.dll", + "lib/net6.0/Google.Apis.pdb", + "lib/net6.0/Google.Apis.xml", + "lib/netstandard2.0/Google.Apis.dll", + "lib/netstandard2.0/Google.Apis.pdb", + "lib/netstandard2.0/Google.Apis.xml" + ] + }, + "Google.Apis.Auth/1.68.0": { + "sha512": "hFx8Qz5bZ4w0hpnn4tSmZaaFpjAMsgVElZ+ZgVLUZ2r9i+AKcoVgwiNfv1pruNS5cCvpXqhKECbruBCfRezPHA==", + "type": "package", + "path": "google.apis.auth/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.auth.1.68.0.nupkg.sha512", + "google.apis.auth.nuspec", + "lib/net462/Google.Apis.Auth.dll", + "lib/net462/Google.Apis.Auth.pdb", + "lib/net462/Google.Apis.Auth.xml", + "lib/net6.0/Google.Apis.Auth.dll", + "lib/net6.0/Google.Apis.Auth.pdb", + "lib/net6.0/Google.Apis.Auth.xml", + "lib/netstandard2.0/Google.Apis.Auth.dll", + "lib/netstandard2.0/Google.Apis.Auth.pdb", + "lib/netstandard2.0/Google.Apis.Auth.xml" + ] + }, + "Google.Apis.Core/1.68.0": { + "sha512": "pAqwa6pfu53UXCR2b7A/PAPXeuVg6L1OFw38WckN27NU2+mf+KTjoEg2YGv/f0UyKxzz7DxF1urOTKg/6dTP9g==", + "type": "package", + "path": "google.apis.core/1.68.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "NuGetIcon.png", + "google.apis.core.1.68.0.nupkg.sha512", + "google.apis.core.nuspec", + "lib/net462/Google.Apis.Core.dll", + "lib/net462/Google.Apis.Core.pdb", + "lib/net462/Google.Apis.Core.xml", + "lib/net6.0/Google.Apis.Core.dll", + "lib/net6.0/Google.Apis.Core.pdb", + "lib/net6.0/Google.Apis.Core.xml", + "lib/netstandard2.0/Google.Apis.Core.dll", + "lib/netstandard2.0/Google.Apis.Core.pdb", + "lib/netstandard2.0/Google.Apis.Core.xml" + ] + }, + "HarfBuzzSharp/7.3.0.1": { + "sha512": "/6z6TQBqWWbVpLUw7E/82HZKLT3OAzg/w6z8I6JFNFcYa3nM9RnZ8XGos9nD4buAzThLHpqPw/rb8FdZXEORAQ==", + "type": "package", + "path": "harfbuzzsharp/7.3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "harfbuzzsharp.7.3.0.1.nupkg.sha512", + "harfbuzzsharp.nuspec", + "lib/monoandroid1.0/HarfBuzzSharp.dll", + "lib/monoandroid1.0/HarfBuzzSharp.pdb", + "lib/monoandroid1.0/HarfBuzzSharp.xml", + "lib/net462/HarfBuzzSharp.dll", + "lib/net462/HarfBuzzSharp.pdb", + "lib/net462/HarfBuzzSharp.xml", + "lib/net6.0-android30.0/HarfBuzzSharp.dll", + "lib/net6.0-android30.0/HarfBuzzSharp.pdb", + "lib/net6.0-android30.0/HarfBuzzSharp.xml", + "lib/net6.0-ios13.6/HarfBuzzSharp.dll", + "lib/net6.0-ios13.6/HarfBuzzSharp.pdb", + "lib/net6.0-ios13.6/HarfBuzzSharp.xml", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.dll", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.pdb", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.xml", + "lib/net6.0-macos10.15/HarfBuzzSharp.dll", + "lib/net6.0-macos10.15/HarfBuzzSharp.pdb", + "lib/net6.0-macos10.15/HarfBuzzSharp.xml", + "lib/net6.0-tvos13.4/HarfBuzzSharp.dll", + "lib/net6.0-tvos13.4/HarfBuzzSharp.pdb", + "lib/net6.0-tvos13.4/HarfBuzzSharp.xml", + "lib/net6.0/HarfBuzzSharp.dll", + "lib/net6.0/HarfBuzzSharp.pdb", + "lib/net6.0/HarfBuzzSharp.xml", + "lib/netcoreapp3.1/HarfBuzzSharp.dll", + "lib/netcoreapp3.1/HarfBuzzSharp.pdb", + "lib/netcoreapp3.1/HarfBuzzSharp.xml", + "lib/netstandard1.3/HarfBuzzSharp.dll", + "lib/netstandard1.3/HarfBuzzSharp.pdb", + "lib/netstandard1.3/HarfBuzzSharp.xml", + "lib/netstandard2.0/HarfBuzzSharp.dll", + "lib/netstandard2.0/HarfBuzzSharp.pdb", + "lib/netstandard2.0/HarfBuzzSharp.xml", + "lib/netstandard2.1/HarfBuzzSharp.dll", + "lib/netstandard2.1/HarfBuzzSharp.pdb", + "lib/netstandard2.1/HarfBuzzSharp.xml", + "lib/tizen40/HarfBuzzSharp.dll", + "lib/tizen40/HarfBuzzSharp.pdb", + "lib/tizen40/HarfBuzzSharp.xml", + "lib/uap10.0.10240/HarfBuzzSharp.dll", + "lib/uap10.0.10240/HarfBuzzSharp.pdb", + "lib/uap10.0.10240/HarfBuzzSharp.xml", + "lib/uap10.0.16299/HarfBuzzSharp.dll", + "lib/uap10.0.16299/HarfBuzzSharp.pdb", + "lib/uap10.0.16299/HarfBuzzSharp.xml", + "lib/xamarinios1.0/HarfBuzzSharp.dll", + "lib/xamarinios1.0/HarfBuzzSharp.pdb", + "lib/xamarinios1.0/HarfBuzzSharp.xml", + "lib/xamarinmac2.0/HarfBuzzSharp.dll", + "lib/xamarinmac2.0/HarfBuzzSharp.pdb", + "lib/xamarinmac2.0/HarfBuzzSharp.xml", + "lib/xamarintvos1.0/HarfBuzzSharp.dll", + "lib/xamarintvos1.0/HarfBuzzSharp.pdb", + "lib/xamarintvos1.0/HarfBuzzSharp.xml", + "lib/xamarinwatchos1.0/HarfBuzzSharp.dll", + "lib/xamarinwatchos1.0/HarfBuzzSharp.pdb", + "lib/xamarinwatchos1.0/HarfBuzzSharp.xml" + ] + }, + "HarfBuzzSharp.NativeAssets.Linux/2.8.2.3": { + "sha512": "Qu1yJSHEN7PD3+fqfkaClnORWN5e2xJ2Xoziz/GUi/oBT1Z+Dp2oZeiONKP6NFltboSOBkvH90QuOA6YN/U1zg==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.linux/2.8.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "harfbuzzsharp.nativeassets.linux.2.8.2.3.nupkg.sha512", + "harfbuzzsharp.nativeassets.linux.nuspec", + "lib/net462/_._", + "lib/net5.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libHarfBuzzSharp.so", + "runtimes/linux-arm64/native/libHarfBuzzSharp.so", + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so", + "runtimes/linux-x64/native/libHarfBuzzSharp.so" + ] + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.1": { + "sha512": "4i6e8WhXF04At1rZ904xjt5g10W86u6B2SpzWAw+cfY4mzfyUV0hgZHIWsE6PsW8a9bP/bSdsZx/Rt4UIroi4w==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.macos/7.3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "harfbuzzsharp.nativeassets.macos.7.3.0.1.nupkg.sha512", + "harfbuzzsharp.nativeassets.macos.nuspec", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libHarfBuzzSharp.dylib" + ] + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.1": { + "sha512": "NxzjhGcY7fYCu51BsanQurXXyqGogZiMzFBpDrZg49jNhT/S0QWYe/uvmP9YbwagprKQ+2tbGT0cw1BvxJciXQ==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.win32/7.3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "harfbuzzsharp.nativeassets.win32.7.3.0.1.nupkg.sha512", + "harfbuzzsharp.nativeassets.win32.nuspec", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libHarfBuzzSharp.dll", + "runtimes/win-x64/native/libHarfBuzzSharp.dll", + "runtimes/win-x86/native/libHarfBuzzSharp.dll" + ] + }, + "Humanizer/2.14.1": { + "sha512": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", + "type": "package", + "path": "humanizer/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.2.14.1.nupkg.sha512", + "humanizer.nuspec", + "logo.png" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "Humanizer.Core.af/2.14.1": { + "sha512": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", + "type": "package", + "path": "humanizer.core.af/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.af.2.14.1.nupkg.sha512", + "humanizer.core.af.nuspec", + "lib/net6.0/af/Humanizer.resources.dll", + "lib/netstandard1.0/af/Humanizer.resources.dll", + "lib/netstandard2.0/af/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ar/2.14.1": { + "sha512": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", + "type": "package", + "path": "humanizer.core.ar/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ar.2.14.1.nupkg.sha512", + "humanizer.core.ar.nuspec", + "lib/net6.0/ar/Humanizer.resources.dll", + "lib/netstandard1.0/ar/Humanizer.resources.dll", + "lib/netstandard2.0/ar/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.az/2.14.1": { + "sha512": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", + "type": "package", + "path": "humanizer.core.az/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.az.2.14.1.nupkg.sha512", + "humanizer.core.az.nuspec", + "lib/net6.0/az/Humanizer.resources.dll", + "lib/netstandard1.0/az/Humanizer.resources.dll", + "lib/netstandard2.0/az/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bg/2.14.1": { + "sha512": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", + "type": "package", + "path": "humanizer.core.bg/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bg.2.14.1.nupkg.sha512", + "humanizer.core.bg.nuspec", + "lib/net6.0/bg/Humanizer.resources.dll", + "lib/netstandard1.0/bg/Humanizer.resources.dll", + "lib/netstandard2.0/bg/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bn-BD/2.14.1": { + "sha512": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", + "type": "package", + "path": "humanizer.core.bn-bd/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "humanizer.core.bn-bd.nuspec", + "lib/net6.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard1.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard2.0/bn-BD/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.cs/2.14.1": { + "sha512": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", + "type": "package", + "path": "humanizer.core.cs/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.cs.2.14.1.nupkg.sha512", + "humanizer.core.cs.nuspec", + "lib/net6.0/cs/Humanizer.resources.dll", + "lib/netstandard1.0/cs/Humanizer.resources.dll", + "lib/netstandard2.0/cs/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.da/2.14.1": { + "sha512": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", + "type": "package", + "path": "humanizer.core.da/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.da.2.14.1.nupkg.sha512", + "humanizer.core.da.nuspec", + "lib/net6.0/da/Humanizer.resources.dll", + "lib/netstandard1.0/da/Humanizer.resources.dll", + "lib/netstandard2.0/da/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.de/2.14.1": { + "sha512": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", + "type": "package", + "path": "humanizer.core.de/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.de.2.14.1.nupkg.sha512", + "humanizer.core.de.nuspec", + "lib/net6.0/de/Humanizer.resources.dll", + "lib/netstandard1.0/de/Humanizer.resources.dll", + "lib/netstandard2.0/de/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.el/2.14.1": { + "sha512": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", + "type": "package", + "path": "humanizer.core.el/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.el.2.14.1.nupkg.sha512", + "humanizer.core.el.nuspec", + "lib/net6.0/el/Humanizer.resources.dll", + "lib/netstandard1.0/el/Humanizer.resources.dll", + "lib/netstandard2.0/el/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.es/2.14.1": { + "sha512": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", + "type": "package", + "path": "humanizer.core.es/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.es.2.14.1.nupkg.sha512", + "humanizer.core.es.nuspec", + "lib/net6.0/es/Humanizer.resources.dll", + "lib/netstandard1.0/es/Humanizer.resources.dll", + "lib/netstandard2.0/es/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fa/2.14.1": { + "sha512": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", + "type": "package", + "path": "humanizer.core.fa/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fa.2.14.1.nupkg.sha512", + "humanizer.core.fa.nuspec", + "lib/net6.0/fa/Humanizer.resources.dll", + "lib/netstandard1.0/fa/Humanizer.resources.dll", + "lib/netstandard2.0/fa/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fi-FI/2.14.1": { + "sha512": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", + "type": "package", + "path": "humanizer.core.fi-fi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "humanizer.core.fi-fi.nuspec", + "lib/net6.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard1.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard2.0/fi-FI/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr/2.14.1": { + "sha512": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", + "type": "package", + "path": "humanizer.core.fr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr.2.14.1.nupkg.sha512", + "humanizer.core.fr.nuspec", + "lib/net6.0/fr/Humanizer.resources.dll", + "lib/netstandard1.0/fr/Humanizer.resources.dll", + "lib/netstandard2.0/fr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr-BE/2.14.1": { + "sha512": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", + "type": "package", + "path": "humanizer.core.fr-be/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr-be.2.14.1.nupkg.sha512", + "humanizer.core.fr-be.nuspec", + "lib/net6.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard1.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard2.0/fr-BE/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.he/2.14.1": { + "sha512": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", + "type": "package", + "path": "humanizer.core.he/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.he.2.14.1.nupkg.sha512", + "humanizer.core.he.nuspec", + "lib/net6.0/he/Humanizer.resources.dll", + "lib/netstandard1.0/he/Humanizer.resources.dll", + "lib/netstandard2.0/he/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hr/2.14.1": { + "sha512": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", + "type": "package", + "path": "humanizer.core.hr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hr.2.14.1.nupkg.sha512", + "humanizer.core.hr.nuspec", + "lib/net6.0/hr/Humanizer.resources.dll", + "lib/netstandard1.0/hr/Humanizer.resources.dll", + "lib/netstandard2.0/hr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hu/2.14.1": { + "sha512": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", + "type": "package", + "path": "humanizer.core.hu/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hu.2.14.1.nupkg.sha512", + "humanizer.core.hu.nuspec", + "lib/net6.0/hu/Humanizer.resources.dll", + "lib/netstandard1.0/hu/Humanizer.resources.dll", + "lib/netstandard2.0/hu/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hy/2.14.1": { + "sha512": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", + "type": "package", + "path": "humanizer.core.hy/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hy.2.14.1.nupkg.sha512", + "humanizer.core.hy.nuspec", + "lib/net6.0/hy/Humanizer.resources.dll", + "lib/netstandard1.0/hy/Humanizer.resources.dll", + "lib/netstandard2.0/hy/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.id/2.14.1": { + "sha512": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", + "type": "package", + "path": "humanizer.core.id/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.id.2.14.1.nupkg.sha512", + "humanizer.core.id.nuspec", + "lib/net6.0/id/Humanizer.resources.dll", + "lib/netstandard1.0/id/Humanizer.resources.dll", + "lib/netstandard2.0/id/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.is/2.14.1": { + "sha512": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", + "type": "package", + "path": "humanizer.core.is/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.is.2.14.1.nupkg.sha512", + "humanizer.core.is.nuspec", + "lib/net6.0/is/Humanizer.resources.dll", + "lib/netstandard1.0/is/Humanizer.resources.dll", + "lib/netstandard2.0/is/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.it/2.14.1": { + "sha512": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", + "type": "package", + "path": "humanizer.core.it/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.it.2.14.1.nupkg.sha512", + "humanizer.core.it.nuspec", + "lib/net6.0/it/Humanizer.resources.dll", + "lib/netstandard1.0/it/Humanizer.resources.dll", + "lib/netstandard2.0/it/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ja/2.14.1": { + "sha512": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", + "type": "package", + "path": "humanizer.core.ja/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ja.2.14.1.nupkg.sha512", + "humanizer.core.ja.nuspec", + "lib/net6.0/ja/Humanizer.resources.dll", + "lib/netstandard1.0/ja/Humanizer.resources.dll", + "lib/netstandard2.0/ja/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ko-KR/2.14.1": { + "sha512": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", + "type": "package", + "path": "humanizer.core.ko-kr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "humanizer.core.ko-kr.nuspec", + "lib/netstandard1.0/ko-KR/Humanizer.resources.dll", + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ku/2.14.1": { + "sha512": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", + "type": "package", + "path": "humanizer.core.ku/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ku.2.14.1.nupkg.sha512", + "humanizer.core.ku.nuspec", + "lib/net6.0/ku/Humanizer.resources.dll", + "lib/netstandard1.0/ku/Humanizer.resources.dll", + "lib/netstandard2.0/ku/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.lv/2.14.1": { + "sha512": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", + "type": "package", + "path": "humanizer.core.lv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.lv.2.14.1.nupkg.sha512", + "humanizer.core.lv.nuspec", + "lib/net6.0/lv/Humanizer.resources.dll", + "lib/netstandard1.0/lv/Humanizer.resources.dll", + "lib/netstandard2.0/lv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ms-MY/2.14.1": { + "sha512": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", + "type": "package", + "path": "humanizer.core.ms-my/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ms-my.2.14.1.nupkg.sha512", + "humanizer.core.ms-my.nuspec", + "lib/netstandard1.0/ms-MY/Humanizer.resources.dll", + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.mt/2.14.1": { + "sha512": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", + "type": "package", + "path": "humanizer.core.mt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.mt.2.14.1.nupkg.sha512", + "humanizer.core.mt.nuspec", + "lib/netstandard1.0/mt/Humanizer.resources.dll", + "lib/netstandard2.0/mt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb/2.14.1": { + "sha512": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", + "type": "package", + "path": "humanizer.core.nb/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb.2.14.1.nupkg.sha512", + "humanizer.core.nb.nuspec", + "lib/net6.0/nb/Humanizer.resources.dll", + "lib/netstandard1.0/nb/Humanizer.resources.dll", + "lib/netstandard2.0/nb/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb-NO/2.14.1": { + "sha512": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", + "type": "package", + "path": "humanizer.core.nb-no/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb-no.2.14.1.nupkg.sha512", + "humanizer.core.nb-no.nuspec", + "lib/net6.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard1.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard2.0/nb-NO/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nl/2.14.1": { + "sha512": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", + "type": "package", + "path": "humanizer.core.nl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nl.2.14.1.nupkg.sha512", + "humanizer.core.nl.nuspec", + "lib/net6.0/nl/Humanizer.resources.dll", + "lib/netstandard1.0/nl/Humanizer.resources.dll", + "lib/netstandard2.0/nl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pl/2.14.1": { + "sha512": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", + "type": "package", + "path": "humanizer.core.pl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pl.2.14.1.nupkg.sha512", + "humanizer.core.pl.nuspec", + "lib/net6.0/pl/Humanizer.resources.dll", + "lib/netstandard1.0/pl/Humanizer.resources.dll", + "lib/netstandard2.0/pl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pt/2.14.1": { + "sha512": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", + "type": "package", + "path": "humanizer.core.pt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pt.2.14.1.nupkg.sha512", + "humanizer.core.pt.nuspec", + "lib/net6.0/pt/Humanizer.resources.dll", + "lib/netstandard1.0/pt/Humanizer.resources.dll", + "lib/netstandard2.0/pt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ro/2.14.1": { + "sha512": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", + "type": "package", + "path": "humanizer.core.ro/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ro.2.14.1.nupkg.sha512", + "humanizer.core.ro.nuspec", + "lib/net6.0/ro/Humanizer.resources.dll", + "lib/netstandard1.0/ro/Humanizer.resources.dll", + "lib/netstandard2.0/ro/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ru/2.14.1": { + "sha512": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", + "type": "package", + "path": "humanizer.core.ru/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ru.2.14.1.nupkg.sha512", + "humanizer.core.ru.nuspec", + "lib/net6.0/ru/Humanizer.resources.dll", + "lib/netstandard1.0/ru/Humanizer.resources.dll", + "lib/netstandard2.0/ru/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sk/2.14.1": { + "sha512": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", + "type": "package", + "path": "humanizer.core.sk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sk.2.14.1.nupkg.sha512", + "humanizer.core.sk.nuspec", + "lib/net6.0/sk/Humanizer.resources.dll", + "lib/netstandard1.0/sk/Humanizer.resources.dll", + "lib/netstandard2.0/sk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sl/2.14.1": { + "sha512": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", + "type": "package", + "path": "humanizer.core.sl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sl.2.14.1.nupkg.sha512", + "humanizer.core.sl.nuspec", + "lib/net6.0/sl/Humanizer.resources.dll", + "lib/netstandard1.0/sl/Humanizer.resources.dll", + "lib/netstandard2.0/sl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr/2.14.1": { + "sha512": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", + "type": "package", + "path": "humanizer.core.sr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr.2.14.1.nupkg.sha512", + "humanizer.core.sr.nuspec", + "lib/net6.0/sr/Humanizer.resources.dll", + "lib/netstandard1.0/sr/Humanizer.resources.dll", + "lib/netstandard2.0/sr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "sha512": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", + "type": "package", + "path": "humanizer.core.sr-latn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "humanizer.core.sr-latn.nuspec", + "lib/net6.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard1.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard2.0/sr-Latn/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sv/2.14.1": { + "sha512": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", + "type": "package", + "path": "humanizer.core.sv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sv.2.14.1.nupkg.sha512", + "humanizer.core.sv.nuspec", + "lib/net6.0/sv/Humanizer.resources.dll", + "lib/netstandard1.0/sv/Humanizer.resources.dll", + "lib/netstandard2.0/sv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.th-TH/2.14.1": { + "sha512": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", + "type": "package", + "path": "humanizer.core.th-th/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.th-th.2.14.1.nupkg.sha512", + "humanizer.core.th-th.nuspec", + "lib/netstandard1.0/th-TH/Humanizer.resources.dll", + "lib/netstandard2.0/th-TH/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.tr/2.14.1": { + "sha512": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", + "type": "package", + "path": "humanizer.core.tr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.tr.2.14.1.nupkg.sha512", + "humanizer.core.tr.nuspec", + "lib/net6.0/tr/Humanizer.resources.dll", + "lib/netstandard1.0/tr/Humanizer.resources.dll", + "lib/netstandard2.0/tr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uk/2.14.1": { + "sha512": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", + "type": "package", + "path": "humanizer.core.uk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uk.2.14.1.nupkg.sha512", + "humanizer.core.uk.nuspec", + "lib/net6.0/uk/Humanizer.resources.dll", + "lib/netstandard1.0/uk/Humanizer.resources.dll", + "lib/netstandard2.0/uk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "sha512": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", + "type": "package", + "path": "humanizer.core.uz-cyrl-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-cyrl-uz.nuspec", + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "sha512": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", + "type": "package", + "path": "humanizer.core.uz-latn-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-latn-uz.nuspec", + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Latn-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.vi/2.14.1": { + "sha512": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", + "type": "package", + "path": "humanizer.core.vi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.vi.2.14.1.nupkg.sha512", + "humanizer.core.vi.nuspec", + "lib/net6.0/vi/Humanizer.resources.dll", + "lib/netstandard1.0/vi/Humanizer.resources.dll", + "lib/netstandard2.0/vi/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-CN/2.14.1": { + "sha512": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", + "type": "package", + "path": "humanizer.core.zh-cn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "humanizer.core.zh-cn.nuspec", + "lib/net6.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard1.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard2.0/zh-CN/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "sha512": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", + "type": "package", + "path": "humanizer.core.zh-hans/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "humanizer.core.zh-hans.nuspec", + "lib/net6.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hans/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "sha512": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", + "type": "package", + "path": "humanizer.core.zh-hant/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "humanizer.core.zh-hant.nuspec", + "lib/net6.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hant/Humanizer.resources.dll", + "logo.png" + ] + }, + "Irony.NetCore/1.0.11": { + "sha512": "/2MCkqdhEjPiSTZKYXg6u9AO9o3m68biqcFHAnM28WdnrcZii2vYbmKPzT5ejByyV72FUlygOtHBMt8SLnUyNw==", + "type": "package", + "path": "irony.netcore/1.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "irony.netcore.1.0.11.nupkg.sha512", + "irony.netcore.nuspec", + "lib/net452/Irony.dll", + "lib/net461/Irony.dll", + "lib/netstandard1.6/Irony.dll" + ] + }, + "LigerShark.WebOptimizer.Core/3.0.405": { + "sha512": "bsEO/TVYWsUwc/dAYjpEKBP+Dax1ikyehj8P2QMKDc/iKdi5/Wjljl13ab/D2RCiU4T7E560iOo06K2rCTNHAQ==", + "type": "package", + "path": "ligershark.weboptimizer.core/3.0.405", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "build/LigerShark.WebOptimizer.Core.props", + "build/LigerShark.WebOptimizer.Core.targets", + "lib/netcoreapp3.0/WebOptimizer.Core.dll", + "lib/netcoreapp3.0/WebOptimizer.Core.xml", + "ligershark.weboptimizer.core.3.0.405.nupkg.sha512", + "ligershark.weboptimizer.core.nuspec", + "logo.png" + ] + }, + "linq2db/5.4.1": { + "sha512": "qyH32MbFK6T55KsEcQYTbPFfkOa1Mo65lY/Zo8SFVMy0pwkQBCTnA/RUxyG5+l3D/mgfPz85PH3upDrtklSMrw==", + "type": "package", + "path": "linq2db/5.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MIT-LICENSE.txt", + "README.md", + "images/icon.png", + "lib/net45/linq2db.dll", + "lib/net45/linq2db.xml", + "lib/net46/linq2db.dll", + "lib/net46/linq2db.xml", + "lib/net472/linq2db.dll", + "lib/net472/linq2db.xml", + "lib/net6.0/linq2db.dll", + "lib/net6.0/linq2db.xml", + "lib/netcoreapp3.1/linq2db.dll", + "lib/netcoreapp3.1/linq2db.xml", + "lib/netstandard2.0/linq2db.dll", + "lib/netstandard2.0/linq2db.xml", + "lib/netstandard2.1/linq2db.dll", + "lib/netstandard2.1/linq2db.xml", + "linq2db.5.4.1.nupkg.sha512", + "linq2db.nuspec" + ] + }, + "MailKit/4.5.0": { + "sha512": "EaXHODUdIV5oPdWvBJGazwaEpKt1LI/H/S//EEozANYCsfOSKHntX+Skk2kW616lSQp+fkRTmSjk0CYxEuOyEA==", + "type": "package", + "path": "mailkit/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/ExchangeOAuth2.md", + "docs/FAQ.md", + "docs/GMailOAuth2.md", + "docs/README.md", + "icons/mailkit-50.png", + "lib/net462/MailKit.dll", + "lib/net462/MailKit.dll.config", + "lib/net462/MailKit.pdb", + "lib/net462/MailKit.xml", + "lib/net47/MailKit.dll", + "lib/net47/MailKit.dll.config", + "lib/net47/MailKit.pdb", + "lib/net47/MailKit.xml", + "lib/net48/MailKit.dll", + "lib/net48/MailKit.dll.config", + "lib/net48/MailKit.pdb", + "lib/net48/MailKit.xml", + "lib/net6.0/MailKit.dll", + "lib/net6.0/MailKit.dll.config", + "lib/net6.0/MailKit.pdb", + "lib/net6.0/MailKit.xml", + "lib/net8.0/MailKit.dll", + "lib/net8.0/MailKit.dll.config", + "lib/net8.0/MailKit.pdb", + "lib/net8.0/MailKit.xml", + "lib/netstandard2.0/MailKit.dll", + "lib/netstandard2.0/MailKit.dll.config", + "lib/netstandard2.0/MailKit.pdb", + "lib/netstandard2.0/MailKit.xml", + "lib/netstandard2.1/MailKit.dll", + "lib/netstandard2.1/MailKit.dll.config", + "lib/netstandard2.1/MailKit.pdb", + "lib/netstandard2.1/MailKit.xml", + "mailkit.4.5.0.nupkg.sha512", + "mailkit.nuspec" + ] + }, + "MaxMind.Db/4.1.0": { + "sha512": "lEjCFX0TUQCRmFS8xrXIQSi+4omJ1Fwy0gAHlbnjg8cgSBa0cllP5zOEftQ23EP247EbnF7mNCQ3JsG/bMkHAA==", + "type": "package", + "path": "maxmind.db/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MaxMind-logo.png", + "README.md", + "lib/net6.0/MaxMind.Db.dll", + "lib/net6.0/MaxMind.Db.xml", + "lib/net7.0/MaxMind.Db.dll", + "lib/net7.0/MaxMind.Db.xml", + "lib/net8.0/MaxMind.Db.dll", + "lib/net8.0/MaxMind.Db.xml", + "lib/netstandard2.0/MaxMind.Db.dll", + "lib/netstandard2.0/MaxMind.Db.xml", + "lib/netstandard2.1/MaxMind.Db.dll", + "lib/netstandard2.1/MaxMind.Db.xml", + "maxmind.db.4.1.0.nupkg.sha512", + "maxmind.db.nuspec" + ] + }, + "MaxMind.GeoIP2/5.2.0": { + "sha512": "E8i6yQPlAznLTfS8w208uY3oqCg6i7sQ9cxKmlDdhFMXVLfm4sKphOTMsIWdAHJCV7RxW2a3DlqxAPkQrqmqlA==", + "type": "package", + "path": "maxmind.geoip2/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MaxMind-logo.png", + "README.md", + "lib/net6.0/MaxMind.GeoIP2.dll", + "lib/net6.0/MaxMind.GeoIP2.xml", + "lib/net7.0/MaxMind.GeoIP2.dll", + "lib/net7.0/MaxMind.GeoIP2.xml", + "lib/net8.0/MaxMind.GeoIP2.dll", + "lib/net8.0/MaxMind.GeoIP2.xml", + "lib/netstandard2.0/MaxMind.GeoIP2.dll", + "lib/netstandard2.0/MaxMind.GeoIP2.xml", + "lib/netstandard2.1/MaxMind.GeoIP2.dll", + "lib/netstandard2.1/MaxMind.GeoIP2.xml", + "maxmind.geoip2.5.2.0.nupkg.sha512", + "maxmind.geoip2.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/3.1.32": { + "sha512": "tULjwFie6fYm4o6WfD+aHTTrps2I22MQVZpmEWaJumFmzZWA1nHsKezuCBl/u/iKiXtN3npL6MoINaiLHURr/A==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection/3.1.32": { + "sha512": "D46awzK+Q0jP7Bq0cQlsxQrhg7MBhlxG2z+U+9EzcbjcjaDzQvaD5/cxD+qKdu9bHMcSFf9fMr5wizSBPPai1Q==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml", + "microsoft.aspnetcore.dataprotection.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.nuspec" + ] + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.32": { + "sha512": "MPL4iVyiaRxnOUY5VATHjvhDWaAEFb77KFiUxVRklv3Z3v+STofUr1UG/aCt1O9cgN7FVTDaC5A7U+zsLub8Xg==", + "type": "package", + "path": "microsoft.aspnetcore.dataprotection.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "microsoft.aspnetcore.dataprotection.abstractions.3.1.32.nupkg.sha512", + "microsoft.aspnetcore.dataprotection.abstractions.nuspec" + ] + }, + "Microsoft.AspNetCore.JsonPatch/8.0.4": { + "sha512": "8iy7uza6GTuE5GadOryGfsGuA8xP1RTs16zqdXF5gM0b8iDfyNWnyDmatY5cZhXE1kJiko0S7s1T/gNFdIZ7Zg==", + "type": "package", + "path": "microsoft.aspnetcore.jsonpatch/8.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net462/Microsoft.AspNetCore.JsonPatch.xml", + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/net8.0/Microsoft.AspNetCore.JsonPatch.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml", + "microsoft.aspnetcore.jsonpatch.8.0.4.nupkg.sha512", + "microsoft.aspnetcore.jsonpatch.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.4": { + "sha512": "lhJq0JjrlGZQwQoYrpVbokhb1AlgLGxI3QacSyKgCNOXTNwCi0pUnMR7NrfON20DkL90Kqqyl3wDrLbRaRgcsA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/8.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml", + "microsoft.aspnetcore.mvc.newtonsoftjson.8.0.4.nupkg.sha512", + "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.0": { + "sha512": "M0h+ChPgydX2xY17agiphnAVa/Qh05RAP8eeuqGGhQKT10claRBlLNO6d2/oSV8zy0RLHzwLnNZm5xuC/gckGA==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", + "microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/8.0.4": { + "sha512": "876m+YvEo+rjbZNQv64RhOBtWVD08bOwT/g96G0cBm+810WiSR3f5C79XG+W59PuvF6JLGFz+IXYLHCjLCvOrQ==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/8.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "build/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.8.0.4.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Language/6.0.0": { + "sha512": "yCtBr1GSGzJrrp1NJUb4ltwFYMKHw/tJLnIDvg9g/FnkGIEzmE19tbCQqXARIJv5kdtBgsoVIdGLL+zmjxvM/A==", + "type": "package", + "path": "microsoft.aspnetcore.razor.language/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", + "microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512", + "microsoft.aspnetcore.razor.language.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.rtf", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "build/Microsoft.CodeAnalysis.Analyzers.targets", + "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_Default.editorconfig", + "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_Default.editorconfig", + "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_Default.editorconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.0.0": { + "sha512": "d02ybMhUJl1r/dI6SkJPHrTiTzXBYCZeJdOLMckV+jyoMU/GGkjqFX/sRbv1K0QmlpwwKuLTiYVQvfYC+8ox2g==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.4.0.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.0.0": { + "sha512": "2UVTGtyQGgTCazvnT6t82f+7AV2L+kqJdyb61rT9GQed4yK+tVh5IkaKcsm70VqyZQhBbDqsfZFNHnY65xhrRw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Razor/6.0.0": { + "sha512": "uqdzuQXxD7XrJCbIbbwpI/LOv0PBJ9VIR0gdvANTHOfK5pjTaCir+XcwvYvBZ5BIzd0KGzyiamzlEWw1cK1q0w==", + "type": "package", + "path": "microsoft.codeanalysis.razor/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", + "microsoft.codeanalysis.razor.6.0.0.nupkg.sha512", + "microsoft.codeanalysis.razor.nuspec" + ] + }, + "Microsoft.CSharp/4.7.0": { + "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "type": "package", + "path": "microsoft.csharp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.xml", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.7.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.SqlClient/5.2.0": { + "sha512": "3alfyqRN3ELRtdvU1dGtLBRNQqprr3TJ0WrUJfMISPwg1nPUN2P3Lelah68IKWuV27Ceb7ig95hWNHFTSXfxMg==", + "type": "package", + "path": "microsoft.data.sqlclient/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net462/Microsoft.Data.SqlClient.dll", + "lib/net462/Microsoft.Data.SqlClient.xml", + "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/Microsoft.Data.SqlClient.dll", + "lib/net6.0/Microsoft.Data.SqlClient.xml", + "lib/net6.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/Microsoft.Data.SqlClient.dll", + "lib/net8.0/Microsoft.Data.SqlClient.xml", + "lib/net8.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/de/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/es/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/it/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/netstandard2.1/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "microsoft.data.sqlclient.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net462/Microsoft.Data.SqlClient.dll", + "ref/net462/Microsoft.Data.SqlClient.xml", + "ref/net6.0/Microsoft.Data.SqlClient.dll", + "ref/net6.0/Microsoft.Data.SqlClient.xml", + "ref/net8.0/Microsoft.Data.SqlClient.dll", + "ref/net8.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net8.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.2.0": { + "sha512": "po1jhvFd+8pbfvJR/puh+fkHi0GRanAdvayh/0e47yaM6CXWZ6opUjCMFuYlAnD2LcbyvQE7fPJKvogmaUcN+w==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/5.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.SqlServer/8.0.4": { + "sha512": "Sp3d4JTCC9KRXIRJLvJslKd+UVo4Yffsg9USydEgik71eUWnX88qknDLztxL1kGmLyT4WbG6y0XSLcthw50snQ==", + "type": "package", + "path": "microsoft.extensions.caching.sqlserver/8.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/net462/Microsoft.Extensions.Caching.SqlServer.xml", + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/net8.0/Microsoft.Extensions.Caching.SqlServer.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.xml", + "microsoft.extensions.caching.sqlserver.8.0.4.nupkg.sha512", + "microsoft.extensions.caching.sqlserver.nuspec" + ] + }, + "Microsoft.Extensions.Caching.StackExchangeRedis/8.0.4": { + "sha512": "tfhJyJXVY6EpimYbDPrf7P2PerJZ/EWTjEbailE2+uEpETYKKPHAZA35TnZKxqPpOxzAlVyPE33hdgP1HU8B7A==", + "type": "package", + "path": "microsoft.extensions.caching.stackexchangeredis/8.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net462/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/net8.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml", + "microsoft.extensions.caching.stackexchangeredis.8.0.4.nupkg.sha512", + "microsoft.extensions.caching.stackexchangeredis.nuspec" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": { + "sha512": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "sha512": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/3.1.32": { + "sha512": "sS+U28IfgZSQUS2b3MayPdYGBJlHOWwgnfAZ77bZLkgU0z+lJz7lgzrKQUm9SgKF+OAc5B9kWJV5PB6l7mWWZA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.3.1.32.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.32": { + "sha512": "00J6eE920t5vfPnEHBSGyj1Ya9lG6WYsMwqvLZ0nMPPTD2UxkaL+FNJM5DNSnMFJtV84KkUudPRngmNiCkqhuA==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/3.1.32", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.3.1.32.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.1": { + "sha512": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.1.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/6.0.16": { + "sha512": "OVX5tlKg6LY+XKqlUn7i9KY+6Liut0iewWff2DNr7129i/NJ8rpUzbmxavPydZgcLREEWHklXZiPKCS895tNIQ==", + "type": "package", + "path": "microsoft.extensions.objectpool/6.0.16", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.ObjectPool.dll", + "lib/net461/Microsoft.Extensions.ObjectPool.xml", + "lib/net6.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net6.0/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.6.0.16.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/8.0.2": { + "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "type": "package", + "path": "microsoft.extensions.options/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.2.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.60.3": { + "sha512": "jve1RzmSpBhGlqMzPva6VfRbLMLZZc1Q8WRVZf8+iEruQkBgDTJPq8OeTehcY4GGYG1j6UB1xVofVE+n4BLDdw==", + "type": "package", + "path": "microsoft.identity.client/4.60.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/monoandroid12.0/Microsoft.Identity.Client.dll", + "lib/monoandroid12.0/Microsoft.Identity.Client.xml", + "lib/net462/Microsoft.Identity.Client.dll", + "lib/net462/Microsoft.Identity.Client.xml", + "lib/net6.0-android31.0/Microsoft.Identity.Client.dll", + "lib/net6.0-android31.0/Microsoft.Identity.Client.xml", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml", + "lib/net6.0-windows7.0/Microsoft.Identity.Client.dll", + "lib/net6.0-windows7.0/Microsoft.Identity.Client.xml", + "lib/net6.0/Microsoft.Identity.Client.dll", + "lib/net6.0/Microsoft.Identity.Client.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.xml", + "lib/uap10.0.17763/Microsoft.Identity.Client.dll", + "lib/uap10.0.17763/Microsoft.Identity.Client.pri", + "lib/uap10.0.17763/Microsoft.Identity.Client.xml", + "lib/xamarinios10/Microsoft.Identity.Client.dll", + "lib/xamarinios10/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.60.3.nupkg.sha512", + "microsoft.identity.client.nuspec" + ] + }, + "Microsoft.Identity.Client.Extensions.Msal/4.60.3": { + "sha512": "X1Cz14/RbmlLshusE5u2zfG+5ul6ttgou19BZe5Mdw1qm6fgOI9/imBB2TIsx2UD7nkgd2+MCSzhbukZf7udeg==", + "type": "package", + "path": "microsoft.identity.client.extensions.msal/4.60.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "microsoft.identity.client.extensions.msal.4.60.3.nupkg.sha512", + "microsoft.identity.client.extensions.msal.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/6.35.0": { + "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Abstractions.dll", + "lib/net45/Microsoft.IdentityModel.Abstractions.xml", + "lib/net461/Microsoft.IdentityModel.Abstractions.dll", + "lib/net461/Microsoft.IdentityModel.Abstractions.xml", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.35.0": { + "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.35.0": { + "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.35.0": { + "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": { + "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.35.0": { + "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/2.1.2": { + "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", + "type": "package", + "path": "microsoft.netcore.platforms/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.2.1.2.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.SqlServer.Server/1.0.0": { + "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "type": "package", + "path": "microsoft.sqlserver.server/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.SqlServer.Server.dll", + "lib/net46/Microsoft.SqlServer.Server.pdb", + "lib/net46/Microsoft.SqlServer.Server.xml", + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", + "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", + "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", + "microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "microsoft.sqlserver.server.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MimeKit/4.5.0": { + "sha512": "OYn8b8b66J4mgtDzoImepiUtdkJOAVGoTj/ghzJ+az4wVixA5L5Z8GmgFhRvQ1btAIwZh/d9zvZLCALndQdz5w==", + "type": "package", + "path": "mimekit/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/FAQ.md", + "docs/README.md", + "icons/mimekit-50.png", + "lib/net462/MimeKit.dll", + "lib/net462/MimeKit.dll.config", + "lib/net462/MimeKit.pdb", + "lib/net462/MimeKit.xml", + "lib/net47/MimeKit.dll", + "lib/net47/MimeKit.dll.config", + "lib/net47/MimeKit.pdb", + "lib/net47/MimeKit.xml", + "lib/net48/MimeKit.dll", + "lib/net48/MimeKit.dll.config", + "lib/net48/MimeKit.pdb", + "lib/net48/MimeKit.xml", + "lib/net6.0/MimeKit.dll", + "lib/net6.0/MimeKit.dll.config", + "lib/net6.0/MimeKit.pdb", + "lib/net6.0/MimeKit.xml", + "lib/net8.0/MimeKit.dll", + "lib/net8.0/MimeKit.dll.config", + "lib/net8.0/MimeKit.pdb", + "lib/net8.0/MimeKit.xml", + "lib/netstandard2.0/MimeKit.dll", + "lib/netstandard2.0/MimeKit.dll.config", + "lib/netstandard2.0/MimeKit.pdb", + "lib/netstandard2.0/MimeKit.xml", + "lib/netstandard2.1/MimeKit.dll", + "lib/netstandard2.1/MimeKit.dll.config", + "lib/netstandard2.1/MimeKit.pdb", + "lib/netstandard2.1/MimeKit.xml", + "mimekit.4.5.0.nupkg.sha512", + "mimekit.nuspec" + ] + }, + "MySqlConnector/2.3.7": { + "sha512": "YiVOxvJ+vAYW8NT9gHv8RxKCDFCSXAObF3z0Ou/8WRv8Lsn2QsxaPW5xEwPE+xCcAq6BGkrI8GTOC09Xg09blQ==", + "type": "package", + "path": "mysqlconnector/2.3.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/MySqlConnector.dll", + "lib/net462/MySqlConnector.xml", + "lib/net471/MySqlConnector.dll", + "lib/net471/MySqlConnector.xml", + "lib/net48/MySqlConnector.dll", + "lib/net48/MySqlConnector.xml", + "lib/net6.0/MySqlConnector.dll", + "lib/net6.0/MySqlConnector.xml", + "lib/net7.0/MySqlConnector.dll", + "lib/net7.0/MySqlConnector.xml", + "lib/net8.0/MySqlConnector.dll", + "lib/net8.0/MySqlConnector.xml", + "lib/netstandard2.0/MySqlConnector.dll", + "lib/netstandard2.0/MySqlConnector.xml", + "lib/netstandard2.1/MySqlConnector.dll", + "lib/netstandard2.1/MySqlConnector.xml", + "logo.png", + "mysqlconnector.2.3.7.nupkg.sha512", + "mysqlconnector.nuspec" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Newtonsoft.Json.Bson/1.0.2": { + "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "type": "package", + "path": "newtonsoft.json.bson/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net45/Newtonsoft.Json.Bson.dll", + "lib/net45/Newtonsoft.Json.Bson.pdb", + "lib/net45/Newtonsoft.Json.Bson.xml", + "lib/netstandard1.3/Newtonsoft.Json.Bson.dll", + "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb", + "lib/netstandard1.3/Newtonsoft.Json.Bson.xml", + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll", + "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb", + "lib/netstandard2.0/Newtonsoft.Json.Bson.xml", + "newtonsoft.json.bson.1.0.2.nupkg.sha512", + "newtonsoft.json.bson.nuspec" + ] + }, + "Nito.AsyncEx.Coordination/5.1.2": { + "sha512": "QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==", + "type": "package", + "path": "nito.asyncex.coordination/5.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.AsyncEx.Coordination.dll", + "lib/net461/Nito.AsyncEx.Coordination.xml", + "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll", + "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml", + "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll", + "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml", + "nito.asyncex.coordination.5.1.2.nupkg.sha512", + "nito.asyncex.coordination.nuspec" + ] + }, + "Nito.AsyncEx.Tasks/5.1.2": { + "sha512": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==", + "type": "package", + "path": "nito.asyncex.tasks/5.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.AsyncEx.Tasks.dll", + "lib/net461/Nito.AsyncEx.Tasks.xml", + "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll", + "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml", + "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll", + "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml", + "nito.asyncex.tasks.5.1.2.nupkg.sha512", + "nito.asyncex.tasks.nuspec" + ] + }, + "Nito.Collections.Deque/1.1.1": { + "sha512": "CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==", + "type": "package", + "path": "nito.collections.deque/1.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.Collections.Deque.dll", + "lib/net461/Nito.Collections.Deque.xml", + "lib/netstandard1.0/Nito.Collections.Deque.dll", + "lib/netstandard1.0/Nito.Collections.Deque.xml", + "lib/netstandard2.0/Nito.Collections.Deque.dll", + "lib/netstandard2.0/Nito.Collections.Deque.xml", + "nito.collections.deque.1.1.1.nupkg.sha512", + "nito.collections.deque.nuspec" + ] + }, + "Nito.Disposables/2.2.1": { + "sha512": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==", + "type": "package", + "path": "nito.disposables/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net461/Nito.Disposables.dll", + "lib/net461/Nito.Disposables.xml", + "lib/netstandard1.0/Nito.Disposables.dll", + "lib/netstandard1.0/Nito.Disposables.xml", + "lib/netstandard2.0/Nito.Disposables.dll", + "lib/netstandard2.0/Nito.Disposables.xml", + "lib/netstandard2.1/Nito.Disposables.dll", + "lib/netstandard2.1/Nito.Disposables.xml", + "nito.disposables.2.2.1.nupkg.sha512", + "nito.disposables.nuspec" + ] + }, + "Npgsql/8.0.2": { + "sha512": "MuJzLoWCaQhQAR3oh66YR0Ir6mxuezncGX3f8wxvAc21g0+9HICktJQlqMoODhxztZKXE5k9GxRxqUAN+vPb4g==", + "type": "package", + "path": "npgsql/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net7.0/Npgsql.dll", + "lib/net7.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.8.0.2.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "NUglify/1.21.4": { + "sha512": "MpliYRCSB42dQA9VgHoe6ahgDS4NIDUSr5e+seeHx6GEwLUvIaJ2JZKqWmg6fNfnsEHPZaGjCw/E+p+skZoYGQ==", + "type": "package", + "path": "nuglify/1.21.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/NUglify.dll", + "lib/net35/NUglify.xml", + "lib/net40/NUglify.dll", + "lib/net40/NUglify.xml", + "lib/net5.0/NUglify.dll", + "lib/net5.0/NUglify.xml", + "lib/netstandard1.3/NUglify.dll", + "lib/netstandard1.3/NUglify.xml", + "lib/netstandard2.0/NUglify.dll", + "lib/netstandard2.0/NUglify.xml", + "nuglify.1.21.4.nupkg.sha512", + "nuglify.nuspec", + "nuglify.png" + ] + }, + "Pipelines.Sockets.Unofficial/2.2.8": { + "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==", + "type": "package", + "path": "pipelines.sockets.unofficial/2.2.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Pipelines.Sockets.Unofficial.dll", + "lib/net461/Pipelines.Sockets.Unofficial.xml", + "lib/net472/Pipelines.Sockets.Unofficial.dll", + "lib/net472/Pipelines.Sockets.Unofficial.xml", + "lib/net5.0/Pipelines.Sockets.Unofficial.dll", + "lib/net5.0/Pipelines.Sockets.Unofficial.xml", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll", + "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll", + "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml", + "pipelines.sockets.unofficial.2.2.8.nupkg.sha512", + "pipelines.sockets.unofficial.nuspec" + ] + }, + "QuestPDF/2022.12.15": { + "sha512": "KryAKu3WX+KM4pF4Dpn6ycu+7fN2GhtwViuV82CjnxtQ3DpIbRN9PG4lMwICCugyQKStyXSwZZ2UIAeeuKNIew==", + "type": "package", + "path": "questpdf/2022.12.15", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Logo.png", + "PackageReadme.md", + "lib/net6.0/QuestPDF.dll", + "lib/net8.0/QuestPDF.dll", + "lib/netcoreapp3.0/QuestPDF.dll", + "lib/netstandard2.0/QuestPDF.dll", + "questpdf.2022.12.15.nupkg.sha512", + "questpdf.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "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" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { + "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "ShimSkiaSharp/1.0.0.18": { + "sha512": "zcUISy3XoIPrYWOeHqt/CrM2oX+OHon91aEtIbfiWb/7eP5V20kjkwhN1h4V0eloy62jVE8H1TE5PCVQ0k0M2Q==", + "type": "package", + "path": "shimskiasharp/1.0.0.18", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/ShimSkiaSharp.dll", + "lib/net6.0/ShimSkiaSharp.dll", + "lib/net8.0/ShimSkiaSharp.dll", + "lib/netstandard2.0/ShimSkiaSharp.dll", + "shimskiasharp.1.0.0.18.nupkg.sha512", + "shimskiasharp.nuspec" + ] + }, + "SixLabors.Fonts/1.0.0": { + "sha512": "LFQsCZlV0xlUyXAOMUo5kkSl+8zAQXXbbdwWchtk0B4o7zotZhQsQOcJUELGHdfPfm/xDAsz6hONAuV25bJaAg==", + "type": "package", + "path": "sixlabors.fonts/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netcoreapp3.1/SixLabors.Fonts.dll", + "lib/netcoreapp3.1/SixLabors.Fonts.xml", + "lib/netstandard2.0/SixLabors.Fonts.dll", + "lib/netstandard2.0/SixLabors.Fonts.xml", + "lib/netstandard2.1/SixLabors.Fonts.dll", + "lib/netstandard2.1/SixLabors.Fonts.xml", + "sixlabors.fonts.1.0.0.nupkg.sha512", + "sixlabors.fonts.128.png", + "sixlabors.fonts.nuspec" + ] + }, + "SkiaSharp/2.88.8": { + "sha512": "bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==", + "type": "package", + "path": "skiasharp/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll", + "lib/monoandroid1.0/SkiaSharp.dll", + "lib/monoandroid1.0/SkiaSharp.pdb", + "lib/monoandroid1.0/SkiaSharp.xml", + "lib/net462/SkiaSharp.dll", + "lib/net462/SkiaSharp.pdb", + "lib/net462/SkiaSharp.xml", + "lib/net6.0-android30.0/SkiaSharp.dll", + "lib/net6.0-android30.0/SkiaSharp.pdb", + "lib/net6.0-android30.0/SkiaSharp.xml", + "lib/net6.0-ios13.6/SkiaSharp.dll", + "lib/net6.0-ios13.6/SkiaSharp.pdb", + "lib/net6.0-ios13.6/SkiaSharp.xml", + "lib/net6.0-maccatalyst13.5/SkiaSharp.dll", + "lib/net6.0-maccatalyst13.5/SkiaSharp.pdb", + "lib/net6.0-maccatalyst13.5/SkiaSharp.xml", + "lib/net6.0-macos10.15/SkiaSharp.dll", + "lib/net6.0-macos10.15/SkiaSharp.pdb", + "lib/net6.0-macos10.15/SkiaSharp.xml", + "lib/net6.0-tizen7.0/SkiaSharp.dll", + "lib/net6.0-tizen7.0/SkiaSharp.pdb", + "lib/net6.0-tizen7.0/SkiaSharp.xml", + "lib/net6.0-tvos13.4/SkiaSharp.dll", + "lib/net6.0-tvos13.4/SkiaSharp.pdb", + "lib/net6.0-tvos13.4/SkiaSharp.xml", + "lib/net6.0/SkiaSharp.dll", + "lib/net6.0/SkiaSharp.pdb", + "lib/net6.0/SkiaSharp.xml", + "lib/netcoreapp3.1/SkiaSharp.dll", + "lib/netcoreapp3.1/SkiaSharp.pdb", + "lib/netcoreapp3.1/SkiaSharp.xml", + "lib/netstandard1.3/SkiaSharp.dll", + "lib/netstandard1.3/SkiaSharp.pdb", + "lib/netstandard1.3/SkiaSharp.xml", + "lib/netstandard2.0/SkiaSharp.dll", + "lib/netstandard2.0/SkiaSharp.pdb", + "lib/netstandard2.0/SkiaSharp.xml", + "lib/netstandard2.1/SkiaSharp.dll", + "lib/netstandard2.1/SkiaSharp.pdb", + "lib/netstandard2.1/SkiaSharp.xml", + "lib/tizen40/SkiaSharp.dll", + "lib/tizen40/SkiaSharp.pdb", + "lib/tizen40/SkiaSharp.xml", + "lib/uap10.0.10240/SkiaSharp.dll", + "lib/uap10.0.10240/SkiaSharp.pdb", + "lib/uap10.0.10240/SkiaSharp.xml", + "lib/uap10.0.16299/SkiaSharp.dll", + "lib/uap10.0.16299/SkiaSharp.pdb", + "lib/uap10.0.16299/SkiaSharp.xml", + "lib/xamarinios1.0/SkiaSharp.dll", + "lib/xamarinios1.0/SkiaSharp.pdb", + "lib/xamarinios1.0/SkiaSharp.xml", + "lib/xamarinmac2.0/SkiaSharp.dll", + "lib/xamarinmac2.0/SkiaSharp.pdb", + "lib/xamarinmac2.0/SkiaSharp.xml", + "lib/xamarintvos1.0/SkiaSharp.dll", + "lib/xamarintvos1.0/SkiaSharp.pdb", + "lib/xamarintvos1.0/SkiaSharp.xml", + "lib/xamarinwatchos1.0/SkiaSharp.dll", + "lib/xamarinwatchos1.0/SkiaSharp.pdb", + "lib/xamarinwatchos1.0/SkiaSharp.xml", + "skiasharp.2.88.8.nupkg.sha512", + "skiasharp.nuspec" + ] + }, + "SkiaSharp.HarfBuzz/2.88.7": { + "sha512": "4Vd+GpokorZNpDvUp09zjK6CMXN35zyJtNvzkGtS1TsXlG/5yA3lWTsQIU0nSQjfgpYql0tSEU5+WTsjxljugg==", + "type": "package", + "path": "skiasharp.harfbuzz/2.88.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net462/SkiaSharp.HarfBuzz.dll", + "lib/net462/SkiaSharp.HarfBuzz.pdb", + "lib/net462/SkiaSharp.HarfBuzz.xml", + "lib/net6.0/SkiaSharp.HarfBuzz.dll", + "lib/net6.0/SkiaSharp.HarfBuzz.pdb", + "lib/net6.0/SkiaSharp.HarfBuzz.xml", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.dll", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.pdb", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.xml", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.dll", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.xml", + "skiasharp.harfbuzz.2.88.7.nupkg.sha512", + "skiasharp.harfbuzz.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Linux.NoDependencies/2.88.8": { + "sha512": "/DoKtdyvRgCC5GR/SH+ps3ZiOjmf0BYpAyrhWQELFOO1hdcqddrDVJjDNCOJ41vV+NlS5b3kcDoZZ7jLhFjyXg==", + "type": "package", + "path": "skiasharp.nativeassets.linux.nodependencies/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Linux.NoDependencies.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Linux.NoDependencies.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libSkiaSharp.so", + "runtimes/linux-arm64/native/libSkiaSharp.so", + "runtimes/linux-musl-x64/native/libSkiaSharp.so", + "runtimes/linux-x64/native/libSkiaSharp.so", + "skiasharp.nativeassets.linux.nodependencies.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.linux.nodependencies.nuspec" + ] + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "sha512": "6Kn5TSkKlfyS6azWHF3Jk2sW5C4jCE5uSshM/5AbfFrR+5n6qM5XEnz9h4VaVl7LTxBvHvMkuPb/3bpbq0vxTw==", + "type": "package", + "path": "skiasharp.nativeassets.macos/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libSkiaSharp.dylib", + "skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.macos.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "sha512": "O9QXoWEXA+6cweR4h3BOnwMz+pO9vL9mXdjLrpDd0w1QzCgWmLQBxa1VgySDITiH7nQndrDG1h6937zm9pLj1Q==", + "type": "package", + "path": "skiasharp.nativeassets.win32/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libSkiaSharp.dll", + "runtimes/win-x64/native/libSkiaSharp.dll", + "runtimes/win-x86/native/libSkiaSharp.dll", + "skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.win32.nuspec" + ] + }, + "StackExchange.Redis/2.7.27": { + "sha512": "Uqc2OQHglqj9/FfGQ6RkKFkZfHySfZlfmbCl+hc+u2I/IqunfelQ7QJi7ZhvAJxUtu80pildVX6NPLdDaUffOw==", + "type": "package", + "path": "stackexchange.redis/2.7.27", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/StackExchange.Redis.dll", + "lib/net461/StackExchange.Redis.xml", + "lib/net472/StackExchange.Redis.dll", + "lib/net472/StackExchange.Redis.xml", + "lib/net6.0/StackExchange.Redis.dll", + "lib/net6.0/StackExchange.Redis.xml", + "lib/netcoreapp3.1/StackExchange.Redis.dll", + "lib/netcoreapp3.1/StackExchange.Redis.xml", + "lib/netstandard2.0/StackExchange.Redis.dll", + "lib/netstandard2.0/StackExchange.Redis.xml", + "stackexchange.redis.2.7.27.nupkg.sha512", + "stackexchange.redis.nuspec" + ] + }, + "Svg.Custom/1.0.0.18": { + "sha512": "bavGcKBodZwHY65Yw2JJ/Vd2ghNh7FYrqiDngPDv21uu6Uy8pj9FAQWYyoeBAyPmEVN/WFAl1l4CKMGEYlIuXw==", + "type": "package", + "path": "svg.custom/1.0.0.18", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Svg.Custom.dll", + "lib/net8.0/Svg.Custom.dll", + "lib/netstandard2.0/Svg.Custom.dll", + "svg.custom.1.0.0.18.nupkg.sha512", + "svg.custom.nuspec" + ] + }, + "Svg.Model/1.0.0.18": { + "sha512": "DXs+nOWjR4/xZp5wExWS3Ih8JN3MAwdhIrczduzKkO2pIox08DQnoyWWGy9nVlGnby7gyqAMDtLpbY639pugcA==", + "type": "package", + "path": "svg.model/1.0.0.18", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Model.dll", + "lib/net6.0/Svg.Model.dll", + "lib/net8.0/Svg.Model.dll", + "lib/netstandard2.0/Svg.Model.dll", + "svg.model.1.0.0.18.nupkg.sha512", + "svg.model.nuspec" + ] + }, + "Svg.Skia/1.0.0.18": { + "sha512": "o+fajf+Z3OUtLahZuwigeeS+bXNr21iyP4koweeDln9hD7Bzayw50IHJ6bPprfkRMpMkwMob7rWyupYq0GaEAg==", + "type": "package", + "path": "svg.skia/1.0.0.18", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Skia.dll", + "lib/net6.0/Svg.Skia.dll", + "lib/net8.0/Svg.Skia.dll", + "lib/netstandard2.0/Svg.Skia.dll", + "svg.skia.1.0.0.18.nupkg.sha512", + "svg.skia.nuspec" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.ClientModel/1.0.0": { + "sha512": "I3CVkvxeqFYjIVEP59DnjbeoGNfo/+SZrCLpRz2v/g0gpCHaEMPtWSY0s9k/7jR1rAsLNg2z2u1JRB76tPjnIw==", + "type": "package", + "path": "system.clientmodel/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net6.0/System.ClientModel.dll", + "lib/net6.0/System.ClientModel.xml", + "lib/netstandard2.0/System.ClientModel.dll", + "lib/netstandard2.0/System.ClientModel.xml", + "system.clientmodel.1.0.0.nupkg.sha512", + "system.clientmodel.nuspec" + ] + }, + "System.CodeDom/7.0.0": { + "sha512": "GLltyqEsE5/3IE+zYRP5sNa1l44qKl9v+bfdMcwg+M9qnQf47wK3H0SUR/T+3N4JEQXF3vV4CSuuo0rsg+nq2A==", + "type": "package", + "path": "system.codedom/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.CodeDom.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "lib/net462/System.CodeDom.dll", + "lib/net462/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/net7.0/System.CodeDom.dll", + "lib/net7.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.7.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/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.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.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/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Annotations/5.0.0": { + "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "type": "package", + "path": "system.componentmodel.annotations/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ComponentModel.Annotations.dll", + "lib/netcore50/System.ComponentModel.Annotations.dll", + "lib/netstandard1.4/System.ComponentModel.Annotations.dll", + "lib/netstandard2.0/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.dll", + "lib/netstandard2.1/System.ComponentModel.Annotations.xml", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ComponentModel.Annotations.dll", + "ref/net461/System.ComponentModel.Annotations.xml", + "ref/netcore50/System.ComponentModel.Annotations.dll", + "ref/netcore50/System.ComponentModel.Annotations.xml", + "ref/netcore50/de/System.ComponentModel.Annotations.xml", + "ref/netcore50/es/System.ComponentModel.Annotations.xml", + "ref/netcore50/fr/System.ComponentModel.Annotations.xml", + "ref/netcore50/it/System.ComponentModel.Annotations.xml", + "ref/netcore50/ja/System.ComponentModel.Annotations.xml", + "ref/netcore50/ko/System.ComponentModel.Annotations.xml", + "ref/netcore50/ru/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/System.ComponentModel.Annotations.dll", + "ref/netstandard1.1/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/System.ComponentModel.Annotations.dll", + "ref/netstandard1.3/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/System.ComponentModel.Annotations.dll", + "ref/netstandard1.4/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", + "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", + "ref/netstandard2.0/System.ComponentModel.Annotations.dll", + "ref/netstandard2.0/System.ComponentModel.Annotations.xml", + "ref/netstandard2.1/System.ComponentModel.Annotations.dll", + "ref/netstandard2.1/System.ComponentModel.Annotations.xml", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.annotations.5.0.0.nupkg.sha512", + "system.componentmodel.annotations.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/8.0.0": { + "sha512": "JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==", + "type": "package", + "path": "system.configuration.configurationmanager/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/net7.0/System.Configuration.ConfigurationManager.dll", + "lib/net7.0/System.Configuration.ConfigurationManager.xml", + "lib/net8.0/System.Configuration.ConfigurationManager.dll", + "lib/net8.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.8.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/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.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/7.0.2": { + "sha512": "hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/8.0.0": { + "sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==", + "type": "package", + "path": "system.diagnostics.eventlog/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/net7.0/System.Diagnostics.EventLog.dll", + "lib/net7.0/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.8.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/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.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.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.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Formats.Asn1/8.0.0": { + "sha512": "AJukBuLoe3QeAF+mfaRKQb2dgyrvt340iMBHYv+VdBzCUM06IxGlvl0o/uPOS7lHnXPN6u8fFRHSHudx5aTi8w==", + "type": "package", + "path": "system.formats.asn1/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Formats.Asn1.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "lib/net462/System.Formats.Asn1.dll", + "lib/net462/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/net7.0/System.Formats.Asn1.dll", + "lib/net7.0/System.Formats.Asn1.xml", + "lib/net8.0/System.Formats.Asn1.dll", + "lib/net8.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.8.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "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.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.35.0": { + "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "system.identitymodel.tokens.jwt.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.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.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/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Hashing/6.0.0": { + "sha512": "Rfm2jYCaUeGysFEZjDe7j1R4x6Z6BzumS/vUT5a1AA/AWJuGX71PoGB0RmpyX3VmrGqVnAwtfMn39OHR8Y/5+g==", + "type": "package", + "path": "system.io.hashing/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Hashing.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Hashing.dll", + "lib/net461/System.IO.Hashing.xml", + "lib/net6.0/System.IO.Hashing.dll", + "lib/net6.0/System.IO.Hashing.xml", + "lib/netstandard2.0/System.IO.Hashing.dll", + "lib/netstandard2.0/System.IO.Hashing.xml", + "system.io.hashing.6.0.0.nupkg.sha512", + "system.io.hashing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Packaging/6.0.0": { + "sha512": "C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", + "type": "package", + "path": "system.io.packaging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Packaging.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Packaging.dll", + "lib/net461/System.IO.Packaging.xml", + "lib/net6.0/System.IO.Packaging.dll", + "lib/net6.0/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.6.0.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/5.0.1": { + "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==", + "type": "package", + "path": "system.io.pipelines/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.IO.Pipelines.dll", + "lib/net461/System.IO.Pipelines.xml", + "lib/netcoreapp3.0/System.IO.Pipelines.dll", + "lib/netcoreapp3.0/System.IO.Pipelines.xml", + "lib/netstandard1.3/System.IO.Pipelines.dll", + "lib/netstandard1.3/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "ref/netcoreapp2.0/System.IO.Pipelines.dll", + "ref/netcoreapp2.0/System.IO.Pipelines.xml", + "system.io.pipelines.5.0.1.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.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/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Async/6.0.1": { + "sha512": "0YhHcaroWpQ9UCot3Pizah7ryAzQhNvobLMSxeDIGmnXfkQn8u5owvpOH0K6EVB+z9L7u6Cc4W17Br/+jyttEQ==", + "type": "package", + "path": "system.linq.async/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Logo.png", + "lib/net48/System.Linq.Async.dll", + "lib/net48/System.Linq.Async.xml", + "lib/net6.0/System.Linq.Async.dll", + "lib/net6.0/System.Linq.Async.xml", + "lib/netstandard2.0/System.Linq.Async.dll", + "lib/netstandard2.0/System.Linq.Async.xml", + "lib/netstandard2.1/System.Linq.Async.dll", + "lib/netstandard2.1/System.Linq.Async.xml", + "ref/net48/System.Linq.Async.dll", + "ref/net48/System.Linq.Async.xml", + "ref/net6.0/System.Linq.Async.dll", + "ref/net6.0/System.Linq.Async.xml", + "ref/netstandard2.0/System.Linq.Async.dll", + "ref/netstandard2.0/System.Linq.Async.xml", + "ref/netstandard2.1/System.Linq.Async.dll", + "ref/netstandard2.1/System.Linq.Async.xml", + "system.linq.async.6.0.1.nupkg.sha512", + "system.linq.async.nuspec" + ] + }, + "System.Linq.Dynamic.Core/1.3.12": { + "sha512": "uriIEVgq1Wp1wcGohFkS4VESynM2za9BhCH/Vtaxtq8cwvRCobjq9ZLnCrzRLwtJqexKRaH2ItBZwuMRISsclw==", + "type": "package", + "path": "system.linq.dynamic.core/1.3.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PackageReadme.md", + "lib/net35/System.Linq.Dynamic.Core.dll", + "lib/net35/System.Linq.Dynamic.Core.pdb", + "lib/net35/System.Linq.Dynamic.Core.xml", + "lib/net40/System.Linq.Dynamic.Core.dll", + "lib/net40/System.Linq.Dynamic.Core.pdb", + "lib/net40/System.Linq.Dynamic.Core.xml", + "lib/net45/System.Linq.Dynamic.Core.dll", + "lib/net45/System.Linq.Dynamic.Core.pdb", + "lib/net45/System.Linq.Dynamic.Core.xml", + "lib/net452/System.Linq.Dynamic.Core.dll", + "lib/net452/System.Linq.Dynamic.Core.pdb", + "lib/net452/System.Linq.Dynamic.Core.xml", + "lib/net46/System.Linq.Dynamic.Core.dll", + "lib/net46/System.Linq.Dynamic.Core.pdb", + "lib/net46/System.Linq.Dynamic.Core.xml", + "lib/net5.0/System.Linq.Dynamic.Core.dll", + "lib/net5.0/System.Linq.Dynamic.Core.pdb", + "lib/net5.0/System.Linq.Dynamic.Core.xml", + "lib/net6.0/System.Linq.Dynamic.Core.dll", + "lib/net6.0/System.Linq.Dynamic.Core.pdb", + "lib/net6.0/System.Linq.Dynamic.Core.xml", + "lib/net7.0/System.Linq.Dynamic.Core.dll", + "lib/net7.0/System.Linq.Dynamic.Core.pdb", + "lib/net7.0/System.Linq.Dynamic.Core.xml", + "lib/net8.0/System.Linq.Dynamic.Core.dll", + "lib/net8.0/System.Linq.Dynamic.Core.pdb", + "lib/net8.0/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.dll", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.pdb", + "lib/netcoreapp3.1/System.Linq.Dynamic.Core.xml", + "lib/netstandard1.3/System.Linq.Dynamic.Core.dll", + "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb", + "lib/netstandard1.3/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.0/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.0/System.Linq.Dynamic.Core.xml", + "lib/netstandard2.1/System.Linq.Dynamic.Core.dll", + "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb", + "lib/netstandard2.1/System.Linq.Dynamic.Core.xml", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri", + "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml", + "logo.png", + "system.linq.dynamic.core.1.3.12.nupkg.sha512", + "system.linq.dynamic.core.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.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/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.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.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Management/7.0.2": { + "sha512": "/qEUN91mP/MUQmJnM5y5BdT7ZoPuVrtxnFlbJ8a3kBJGhe2wCzBfnPFtK2wTtEEcf3DMGR9J00GZZfg6HRI6yA==", + "type": "package", + "path": "system.management/7.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "lib/net462/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/net7.0/System.Management.dll", + "lib/net7.0/System.Management.xml", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/net7.0/System.Management.dll", + "runtimes/win/lib/net7.0/System.Management.xml", + "system.management.7.0.2.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory.Data/1.0.2": { + "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "type": "package", + "path": "system.memory.data/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net461/System.Memory.Data.dll", + "lib/net461/System.Memory.Data.xml", + "lib/netstandard2.0/System.Memory.Data.dll", + "lib/netstandard2.0/System.Memory.Data.xml", + "system.memory.data.1.0.2.nupkg.sha512", + "system.memory.data.nuspec" + ] + }, + "System.Net.Http/4.3.4": { + "sha512": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", + "type": "package", + "path": "system.net.http/4.3.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.4.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.NameResolution/4.3.0": { + "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", + "type": "package", + "path": "system.net.nameresolution/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.NameResolution.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.dll", + "ref/netstandard1.3/System.Net.NameResolution.xml", + "ref/netstandard1.3/de/System.Net.NameResolution.xml", + "ref/netstandard1.3/es/System.Net.NameResolution.xml", + "ref/netstandard1.3/fr/System.Net.NameResolution.xml", + "ref/netstandard1.3/it/System.Net.NameResolution.xml", + "ref/netstandard1.3/ja/System.Net.NameResolution.xml", + "ref/netstandard1.3/ko/System.Net.NameResolution.xml", + "ref/netstandard1.3/ru/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml", + "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll", + "runtimes/win/lib/net46/System.Net.NameResolution.dll", + "runtimes/win/lib/netcore50/System.Net.NameResolution.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll", + "system.net.nameresolution.4.3.0.nupkg.sha512", + "system.net.nameresolution.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.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.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.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.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.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.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.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.Metadata/5.0.0": { + "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "type": "package", + "path": "system.reflection.metadata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Reflection.Metadata.dll", + "lib/net461/System.Reflection.Metadata.xml", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.5.0.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "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.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.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.Caching/8.0.0": { + "sha512": "4TmlmvGp4kzZomm7J2HJn6IIx0UUrQyhBDyb5O1XiunZlQImXW+B8b7W/sTPcXhSf9rp5NR5aDtQllwbB5elOQ==", + "type": "package", + "path": "system.runtime.caching/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/net7.0/System.Runtime.Caching.dll", + "lib/net7.0/System.Runtime.Caching.xml", + "lib/net8.0/System.Runtime.Caching.dll", + "lib/net8.0/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net7.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net7.0/System.Runtime.Caching.xml", + "runtimes/win/lib/net8.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net8.0/System.Runtime.Caching.xml", + "system.runtime.caching.8.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "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.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.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/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Pkcs/8.0.0": { + "sha512": "ULmp3xoOwNYjOYp4JZ2NK/6NdTgiN1GQXzVVN1njQ7LOZ0d0B9vyMnhyqbIi9Qw4JXj1JgCsitkTShboHRx7Eg==", + "type": "package", + "path": "system.security.cryptography.pkcs/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "lib/net462/System.Security.Cryptography.Pkcs.dll", + "lib/net462/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net7.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.8.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/8.0.0": { + "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==", + "type": "package", + "path": "system.security.cryptography.protecteddata/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net8.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Cryptography.Xml/6.0.1": { + "sha512": "5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==", + "type": "package", + "path": "system.security.cryptography.xml/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/net6.0/System.Security.Cryptography.Xml.dll", + "lib/net6.0/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.6.0.1.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Http/8.0.0": { + "sha512": "Qwkoe0F+2e/2LiNwiIgfBTJTw11flv208UwS38ru+GR7nZk2VdGvAE8tqGB0RQIGra73Rux9jKNgfy1XtfXdLg==", + "type": "package", + "path": "system.servicemodel.http/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.ServiceModel.Http.dll", + "lib/net8.0/System.ServiceModel.Http.pdb", + "lib/net8.0/cs/System.ServiceModel.Http.resources.dll", + "lib/net8.0/de/System.ServiceModel.Http.resources.dll", + "lib/net8.0/es/System.ServiceModel.Http.resources.dll", + "lib/net8.0/fr/System.ServiceModel.Http.resources.dll", + "lib/net8.0/it/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ja/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ko/System.ServiceModel.Http.resources.dll", + "lib/net8.0/pl/System.ServiceModel.Http.resources.dll", + "lib/net8.0/pt-BR/System.ServiceModel.Http.resources.dll", + "lib/net8.0/ru/System.ServiceModel.Http.resources.dll", + "lib/net8.0/tr/System.ServiceModel.Http.resources.dll", + "lib/net8.0/zh-Hans/System.ServiceModel.Http.resources.dll", + "lib/net8.0/zh-Hant/System.ServiceModel.Http.resources.dll", + "system.servicemodel.http.8.0.0.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.Primitives/8.0.0": { + "sha512": "hVzK77Bl00H+1V7ho7h03tKlgxAIKssV3eUnRdH+gTCZCK4Ywnv2CR35AV9ly/tRpvsGwNL1d/jkAwB1MWw3Fw==", + "type": "package", + "path": "system.servicemodel.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.ServiceModel.Primitives.dll", + "lib/net8.0/System.ServiceModel.Primitives.pdb", + "lib/net8.0/cs/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/de/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/es/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/fr/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/it/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ja/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ko/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/pl/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/pt-BR/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/ru/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/tr/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/zh-Hans/System.ServiceModel.Primitives.resources.dll", + "lib/net8.0/zh-Hant/System.ServiceModel.Primitives.resources.dll", + "ref/net8.0/System.ServiceModel.Primitives.dll", + "system.servicemodel.primitives.8.0.0.nupkg.sha512", + "system.servicemodel.primitives.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/4.5.1": { + "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "type": "package", + "path": "system.text.encoding.codepages/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "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/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.5.1.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.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.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/8.0.0": { + "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "type": "package", + "path": "system.text.encodings.web/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.8.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/8.0.0": { + "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "type": "package", + "path": "system.text.json/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.8.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.1": { + "sha512": "N0kNRrWe4+nXOWlpLT4LAY5brb8caNFlUuIRpraCVMDLYutKkol1aV079rQjLuSxKMJT2SpBQsYX9xbcTMmzwg==", + "type": "package", + "path": "system.text.regularexpressions/4.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.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/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.1.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "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" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.ValueTuple/4.5.0": { + "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", + "type": "package", + "path": "system.valuetuple/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.ValueTuple.dll", + "lib/net461/System.ValueTuple.xml", + "lib/net47/System.ValueTuple.dll", + "lib/net47/System.ValueTuple.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.ValueTuple.dll", + "lib/netstandard1.0/System.ValueTuple.xml", + "lib/netstandard2.0/_._", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.ValueTuple.dll", + "ref/net47/System.ValueTuple.dll", + "ref/netcoreapp2.0/_._", + "ref/netstandard2.0/_._", + "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.valuetuple.4.5.0.nupkg.sha512", + "system.valuetuple.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.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/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.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.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "WebMarkupMin.AspNet.Common/2.16.0": { + "sha512": "9jNoL5isfNdxGqmAtW0jPlA7vjU+k9ypl/3SWviK8YPJKxDsU5LH5HXLsP/2W3lcq9eN1axy2XHzUolAV7EX9A==", + "type": "package", + "path": "webmarkupmin.aspnet.common/2.16.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "icon.png", + "lib/net40/WebMarkupMin.AspNet.Common.dll", + "lib/net40/WebMarkupMin.AspNet.Common.xml", + "lib/net45/WebMarkupMin.AspNet.Common.dll", + "lib/net45/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard1.3/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard1.3/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard2.0/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard2.0/WebMarkupMin.AspNet.Common.xml", + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.dll", + "lib/netstandard2.1/WebMarkupMin.AspNet.Common.xml", + "readme.txt", + "webmarkupmin.aspnet.common.2.16.0.nupkg.sha512", + "webmarkupmin.aspnet.common.nuspec" + ] + }, + "WebMarkupMin.AspNetCore8/2.16.0": { + "sha512": "Tx2brMbWWs0fuYGeNsorH50nGBL2JImgx6M/FBwUsmRqkXsBng/tDMdfA+rekKq4IQAdWYsWy3I1UDVLGgrDvw==", + "type": "package", + "path": "webmarkupmin.aspnetcore8/2.16.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "icon.png", + "lib/net8.0/WebMarkupMin.AspNetCore8.dll", + "lib/net8.0/WebMarkupMin.AspNetCore8.xml", + "readme.txt", + "webmarkupmin.aspnetcore8.2.16.0.nupkg.sha512", + "webmarkupmin.aspnetcore8.nuspec" + ] + }, + "WebMarkupMin.Core/2.16.0": { + "sha512": "0ndPjU+SxszmnynCpx7pK2iyz2o4VB9cdVdejh4KlXaxvcFFspBM443iXSFkt36W4nkgSc4idDm7pctXEpOQ3A==", + "type": "package", + "path": "webmarkupmin.core/2.16.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "icon.png", + "lib/net40-client/WebMarkupMin.Core.dll", + "lib/net40-client/WebMarkupMin.Core.xml", + "lib/net45/WebMarkupMin.Core.dll", + "lib/net45/WebMarkupMin.Core.xml", + "lib/netstandard1.3/WebMarkupMin.Core.dll", + "lib/netstandard1.3/WebMarkupMin.Core.xml", + "lib/netstandard2.0/WebMarkupMin.Core.dll", + "lib/netstandard2.0/WebMarkupMin.Core.xml", + "lib/netstandard2.1/WebMarkupMin.Core.dll", + "lib/netstandard2.1/WebMarkupMin.Core.xml", + "readme.txt", + "webmarkupmin.core.2.16.0.nupkg.sha512", + "webmarkupmin.core.nuspec" + ] + }, + "WebMarkupMin.NUglify/2.16.0": { + "sha512": "Ux09ry3Zg/1cW7tVBX7pcqaiX59uRZopWyiT3TaNn15PfDtR9IvO7Yeb1GGHx397ZH2apm/AMX1/ZxWEitl6Aw==", + "type": "package", + "path": "webmarkupmin.nuglify/2.16.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "icon.png", + "lib/net40-client/WebMarkupMin.NUglify.dll", + "lib/net40-client/WebMarkupMin.NUglify.xml", + "lib/net45/WebMarkupMin.NUglify.dll", + "lib/net45/WebMarkupMin.NUglify.xml", + "lib/netstandard1.3/WebMarkupMin.NUglify.dll", + "lib/netstandard1.3/WebMarkupMin.NUglify.xml", + "lib/netstandard2.0/WebMarkupMin.NUglify.dll", + "lib/netstandard2.0/WebMarkupMin.NUglify.xml", + "nuglify-license.txt", + "readme.txt", + "webmarkupmin.nuglify.2.16.0.nupkg.sha512", + "webmarkupmin.nuglify.nuspec" + ] + }, + "XLParser/1.5.2": { + "sha512": "8tnUCmMbn6c/HGuHFyq1sulHym8YReTKDNXFFQk0U8nldNx6RGrwRvLh0+aQjEc7YoC3Q1ztH1npLt7dClKqjw==", + "type": "package", + "path": "xlparser/1.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/XLParser.dll", + "lib/net461/XLParser.dll", + "lib/netstandard1.6/XLParser.dll", + "xlparser.1.5.2.nupkg.sha512", + "xlparser.nuspec" + ] + }, + "Nop.Core/4.70.0": { + "type": "project", + "path": "../../Libraries/Nop.Core/Nop.Core.csproj", + "msbuildProject": "../../Libraries/Nop.Core/Nop.Core.csproj" + }, + "Nop.Data/4.70.0": { + "type": "project", + "path": "../../Libraries/Nop.Data/Nop.Data.csproj", + "msbuildProject": "../../Libraries/Nop.Data/Nop.Data.csproj" + }, + "Nop.Services/4.70.0": { + "type": "project", + "path": "../../Libraries/Nop.Services/Nop.Services.csproj", + "msbuildProject": "../../Libraries/Nop.Services/Nop.Services.csproj" + }, + "Nop.Web.Framework/4.70.0": { + "type": "project", + "path": "../../Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj", + "msbuildProject": "../../Presentation/Nop.Web.Framework/Nop.Web.Framework.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Nop.Web.Framework >= 4.70.0" + ] + }, + "packageFolders": { + "C:\\Users\\Ádám\\.nuget\\packages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.AgeVerification\\Nop.Plugin.Widgets.AgeVerification.csproj", + "projectName": "Nop.Plugin.Widgets.AgeVerification", + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.AgeVerification\\Nop.Plugin.Widgets.AgeVerification.csproj", + "packagesPath": "C:\\Users\\Ádám\\.nuget\\packages\\", + "outputPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.AgeVerification\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\DevExpress 24.1\\Components\\Offline Packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Ádám\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 24.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\DevExpress 24.1\\Components\\System\\Components\\Packages": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj": { + "projectPath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Presentation\\Nop.Web.Framework\\Nop.Web.Framework.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.AgeVerification/obj/project.nuget.cache b/Nop.Plugin.Widgets.AgeVerification/obj/project.nuget.cache new file mode 100644 index 0000000..8f8ef8d --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/obj/project.nuget.cache @@ -0,0 +1,285 @@ +{ + "version": 2, + "dgSpecHash": "yKOsBxut3Sc=", + "success": true, + "projectFilePath": "D:\\Munka\\MANGOWEB\\FlirtyFluffers\\src\\Plugins\\Nop.Plugin.Widgets.AgeVerification\\Nop.Plugin.Widgets.AgeVerification.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Ádám\\.nuget\\packages\\advancedstringbuilder\\0.1.1\\advancedstringbuilder.0.1.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\autofac\\8.0.0\\autofac.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\autofac.extensions.dependencyinjection\\9.0.0\\autofac.extensions.dependencyinjection.9.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\automapper\\13.0.1\\automapper.13.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.extensions.aspnetcore.dataprotection.blobs\\1.3.4\\azure.extensions.aspnetcore.dataprotection.blobs.1.3.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.extensions.aspnetcore.dataprotection.keys\\1.2.3\\azure.extensions.aspnetcore.dataprotection.keys.1.2.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.identity\\1.11.2\\azure.identity.1.11.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.security.keyvault.keys\\4.2.0\\azure.security.keyvault.keys.4.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.storage.blobs\\12.19.1\\azure.storage.blobs.12.19.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\azure.storage.common\\12.18.1\\azure.storage.common.12.18.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\bouncycastle.cryptography\\2.3.0\\bouncycastle.cryptography.2.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\closedxml\\0.102.2\\closedxml.0.102.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\documentformat.openxml\\2.16.0\\documentformat.openxml.2.16.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\excelnumberformat\\1.1.0\\excelnumberformat.1.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\excss\\4.2.3\\excss.4.2.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\firebirdsql.data.firebirdclient\\10.0.0\\firebirdsql.data.firebirdclient.10.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator\\5.2.0\\fluentmigrator.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.abstractions\\5.2.0\\fluentmigrator.abstractions.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.mysql\\5.1.0\\fluentmigrator.extensions.mysql.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.oracle\\5.1.0\\fluentmigrator.extensions.oracle.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.postgres\\5.1.0\\fluentmigrator.extensions.postgres.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.snowflake\\5.1.0\\fluentmigrator.extensions.snowflake.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.extensions.sqlserver\\5.1.0\\fluentmigrator.extensions.sqlserver.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner\\5.1.0\\fluentmigrator.runner.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.core\\5.1.0\\fluentmigrator.runner.core.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.db2\\5.1.0\\fluentmigrator.runner.db2.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.firebird\\5.1.0\\fluentmigrator.runner.firebird.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.hana\\5.1.0\\fluentmigrator.runner.hana.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.mysql\\5.1.0\\fluentmigrator.runner.mysql.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.oracle\\5.1.0\\fluentmigrator.runner.oracle.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.postgres\\5.1.0\\fluentmigrator.runner.postgres.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.redshift\\5.1.0\\fluentmigrator.runner.redshift.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.snowflake\\5.1.0\\fluentmigrator.runner.snowflake.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.sqlite\\5.1.0\\fluentmigrator.runner.sqlite.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentmigrator.runner.sqlserver\\5.1.0\\fluentmigrator.runner.sqlserver.5.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation\\11.5.1\\fluentvalidation.11.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation.aspnetcore\\11.3.0\\fluentvalidation.aspnetcore.11.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\11.5.1\\fluentvalidation.dependencyinjectionextensions.11.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis\\1.68.0\\google.apis.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis.auth\\1.68.0\\google.apis.auth.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\google.apis.core\\1.68.0\\google.apis.core.1.68.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp\\7.3.0.1\\harfbuzzsharp.7.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.linux\\2.8.2.3\\harfbuzzsharp.nativeassets.linux.2.8.2.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.macos\\7.3.0.1\\harfbuzzsharp.nativeassets.macos.7.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\harfbuzzsharp.nativeassets.win32\\7.3.0.1\\harfbuzzsharp.nativeassets.win32.7.3.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer\\2.14.1\\humanizer.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.af\\2.14.1\\humanizer.core.af.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ar\\2.14.1\\humanizer.core.ar.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.az\\2.14.1\\humanizer.core.az.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.bg\\2.14.1\\humanizer.core.bg.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.bn-bd\\2.14.1\\humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.cs\\2.14.1\\humanizer.core.cs.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.da\\2.14.1\\humanizer.core.da.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.de\\2.14.1\\humanizer.core.de.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.el\\2.14.1\\humanizer.core.el.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.es\\2.14.1\\humanizer.core.es.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fa\\2.14.1\\humanizer.core.fa.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fi-fi\\2.14.1\\humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fr\\2.14.1\\humanizer.core.fr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.fr-be\\2.14.1\\humanizer.core.fr-be.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.he\\2.14.1\\humanizer.core.he.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hr\\2.14.1\\humanizer.core.hr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hu\\2.14.1\\humanizer.core.hu.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.hy\\2.14.1\\humanizer.core.hy.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.id\\2.14.1\\humanizer.core.id.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.is\\2.14.1\\humanizer.core.is.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.it\\2.14.1\\humanizer.core.it.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ja\\2.14.1\\humanizer.core.ja.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ko-kr\\2.14.1\\humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ku\\2.14.1\\humanizer.core.ku.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.lv\\2.14.1\\humanizer.core.lv.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ms-my\\2.14.1\\humanizer.core.ms-my.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.mt\\2.14.1\\humanizer.core.mt.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nb\\2.14.1\\humanizer.core.nb.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nb-no\\2.14.1\\humanizer.core.nb-no.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.nl\\2.14.1\\humanizer.core.nl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.pl\\2.14.1\\humanizer.core.pl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.pt\\2.14.1\\humanizer.core.pt.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ro\\2.14.1\\humanizer.core.ro.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.ru\\2.14.1\\humanizer.core.ru.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sk\\2.14.1\\humanizer.core.sk.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sl\\2.14.1\\humanizer.core.sl.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sr\\2.14.1\\humanizer.core.sr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sr-latn\\2.14.1\\humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.sv\\2.14.1\\humanizer.core.sv.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.th-th\\2.14.1\\humanizer.core.th-th.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.tr\\2.14.1\\humanizer.core.tr.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uk\\2.14.1\\humanizer.core.uk.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uz-cyrl-uz\\2.14.1\\humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.uz-latn-uz\\2.14.1\\humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.vi\\2.14.1\\humanizer.core.vi.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-cn\\2.14.1\\humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-hans\\2.14.1\\humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\humanizer.core.zh-hant\\2.14.1\\humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\irony.netcore\\1.0.11\\irony.netcore.1.0.11.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\ligershark.weboptimizer.core\\3.0.405\\ligershark.weboptimizer.core.3.0.405.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\linq2db\\5.4.1\\linq2db.5.4.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mailkit\\4.5.0\\mailkit.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\maxmind.db\\4.1.0\\maxmind.db.4.1.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\maxmind.geoip2\\5.2.0\\maxmind.geoip2.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\3.1.32\\microsoft.aspnetcore.cryptography.internal.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.dataprotection\\3.1.32\\microsoft.aspnetcore.dataprotection.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.dataprotection.abstractions\\3.1.32\\microsoft.aspnetcore.dataprotection.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\8.0.4\\microsoft.aspnetcore.jsonpatch.8.0.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\8.0.4\\microsoft.aspnetcore.mvc.newtonsoftjson.8.0.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.extensions\\6.0.0\\microsoft.aspnetcore.mvc.razor.extensions.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.runtimecompilation\\8.0.4\\microsoft.aspnetcore.mvc.razor.runtimecompilation.8.0.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\6.0.0\\microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.0\\microsoft.codeanalysis.common.4.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.0\\microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.codeanalysis.razor\\6.0.0\\microsoft.codeanalysis.razor.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.data.sqlclient\\5.2.0\\microsoft.data.sqlclient.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.2.0\\microsoft.data.sqlclient.sni.runtime.5.2.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.sqlserver\\8.0.4\\microsoft.extensions.caching.sqlserver.8.0.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.caching.stackexchangeredis\\8.0.4\\microsoft.extensions.caching.stackexchangeredis.8.0.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.1\\microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.0\\microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.32\\microsoft.extensions.fileproviders.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.32\\microsoft.extensions.hosting.abstractions.3.1.32.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.1\\microsoft.extensions.logging.abstractions.8.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.objectpool\\6.0.16\\microsoft.extensions.objectpool.6.0.16.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identity.client\\4.60.3\\microsoft.identity.client.4.60.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.60.3\\microsoft.identity.client.extensions.msal.4.60.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.35.0\\microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.35.0\\microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.logging\\6.35.0\\microsoft.identitymodel.logging.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.35.0\\microsoft.identitymodel.protocols.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.35.0\\microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.35.0\\microsoft.identitymodel.tokens.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mimekit\\4.5.0\\mimekit.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\mysqlconnector\\2.3.7\\mysqlconnector.2.3.7.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.asyncex.coordination\\5.1.2\\nito.asyncex.coordination.5.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.asyncex.tasks\\5.1.2\\nito.asyncex.tasks.5.1.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.collections.deque\\1.1.1\\nito.collections.deque.1.1.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nito.disposables\\2.2.1\\nito.disposables.2.2.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\npgsql\\8.0.2\\npgsql.8.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\nuglify\\1.21.4\\nuglify.1.21.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\pipelines.sockets.unofficial\\2.2.8\\pipelines.sockets.unofficial.2.2.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\questpdf\\2022.12.15\\questpdf.2022.12.15.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\shimskiasharp\\1.0.0.18\\shimskiasharp.1.0.0.18.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\sixlabors.fonts\\1.0.0\\sixlabors.fonts.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp\\2.88.8\\skiasharp.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.harfbuzz\\2.88.7\\skiasharp.harfbuzz.2.88.7.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.linux.nodependencies\\2.88.8\\skiasharp.nativeassets.linux.nodependencies.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.8\\skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.8\\skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\stackexchange.redis\\2.7.27\\stackexchange.redis.2.7.27.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.custom\\1.0.0.18\\svg.custom.1.0.0.18.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.model\\1.0.0.18\\svg.model.1.0.0.18.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\svg.skia\\1.0.0.18\\svg.skia.1.0.0.18.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.codedom\\7.0.0\\system.codedom.7.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.diagnosticsource\\7.0.2\\system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.0\\system.diagnostics.eventlog.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.formats.asn1\\8.0.0\\system.formats.asn1.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.35.0\\system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.filesystem.accesscontrol\\5.0.0\\system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.hashing\\6.0.0\\system.io.hashing.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.packaging\\6.0.0\\system.io.packaging.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.io.pipelines\\5.0.1\\system.io.pipelines.5.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.async\\6.0.1\\system.linq.async.6.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.dynamic.core\\1.3.12\\system.linq.dynamic.core.1.3.12.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.management\\7.0.2\\system.management.7.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime\\4.3.1\\system.runtime.4.3.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.caching\\8.0.0\\system.runtime.caching.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.pkcs\\8.0.0\\system.security.cryptography.pkcs.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.cryptography.xml\\6.0.1\\system.security.cryptography.xml.6.0.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.servicemodel.http\\8.0.0\\system.servicemodel.http.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.servicemodel.primitives\\8.0.0\\system.servicemodel.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.text.regularexpressions\\4.3.1\\system.text.regularexpressions.4.3.1.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.aspnet.common\\2.16.0\\webmarkupmin.aspnet.common.2.16.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.aspnetcore8\\2.16.0\\webmarkupmin.aspnetcore8.2.16.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.core\\2.16.0\\webmarkupmin.core.2.16.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\webmarkupmin.nuglify\\2.16.0\\webmarkupmin.nuglify.2.16.0.nupkg.sha512", + "C:\\Users\\Ádám\\.nuget\\packages\\xlparser\\1.5.2\\xlparser.1.5.2.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Nop.Plugin.Widgets.AgeVerification/plugin.json b/Nop.Plugin.Widgets.AgeVerification/plugin.json new file mode 100644 index 0000000..9121d69 --- /dev/null +++ b/Nop.Plugin.Widgets.AgeVerification/plugin.json @@ -0,0 +1,11 @@ +{ + "Group": "Widgets", + "FriendlyName": "AgeVerification", + "SystemName": "Widgets.AgeVerification", + "Version": "4.70.7", + "SupportedVersions": [ "4.70" ], + "Author": "AYcode", + "DisplayOrder": 1, + "FileName": "Nop.Plugin.Widgets.AgeVerification.dll", + "Description": "This plugin asks the visitor if they are over 18." +} \ No newline at end of file

la@*G(k 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/project.razor.vs.bin b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/project.razor.vs.bin new file mode 100644 index 0000000000000000000000000000000000000000..72096315444ac18160490c4cd952ac79c5130d17 GIT binary patch literal 197629 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 literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/ref/Nop.Plugin.Misc.TestPlugin.dll b/Nop.Plugin.Misc.TestPlugin/obj/Debug/net8.0/ref/Nop.Plugin.Misc.TestPlugin.dll new file mode 100644 index 0000000000000000000000000000000000000000..79698ab7c17acd81cb41ee74212f53c93917d402 GIT binary patch literal 9216 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 + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Ádám\.nuget\packages\;C:\Program Files\DevExpress 24.1\Components\Offline Packages;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.10.1 + + + + + + + + C:\Users\Ádám\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 + + \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Nop.Plugin.Misc.TestPlugin.csproj.nuget.g.targets b/Nop.Plugin.Misc.TestPlugin/obj/Nop.Plugin.Misc.TestPlugin.csproj.nuget.g.targets new file mode 100644 index 0000000..dfc75fc --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/Nop.Plugin.Misc.TestPlugin.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs b/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs new file mode 100644 index 0000000..df1e477 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Nop.Plugin.Misc.TestPlugin")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Nop.Plugin.Misc.TestPlugin")] +[assembly: System.Reflection.AssemblyTitleAttribute("Nop.Plugin.Misc.TestPlugin")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache b/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache new file mode 100644 index 0000000..69a2a0f --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +4bec69cb8594c379592c29cf9bd3de6ddf4d374d108b69d12cd0296be01d2445 diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig b/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..44b0fb2 --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.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 = Nop.Plugin.Misc.TestPlugin +build_property.ProjectDir = D:\Munka\MANGOWEB\LoveBits\NopSRC\Plugins\Nop.Plugin.Misc.TestPlugin\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.GlobalUsings.g.cs b/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.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/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.assets.cache b/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..41f8c15a50150c634f0270b589dc2fd527552341 GIT binary patch literal 136335 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 N7Cm4RJ2JZs{~tK5r858k literal 0 HcmV?d00001 diff --git a/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache b/Nop.Plugin.Misc.TestPlugin/obj/Release/net8.0/Nop.Plugin.Misc.TestPlugin.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..c9e75ef93e82d610a14b23f5d096c8bab11fd32d GIT binary patch literal 69500 zcmds=2S5``*RYAbi(f zid{tPdhPnp&StZluptwa@0T~;g6vH8lxNSJDLYe)6K`i{$LZncB@T*FM`7Zic3s*B z_w@G>ch(HXeH40~xQiw_w41LuM2qWiwI0(eG-~2^+@82ZEK#V%-Ebw2>2R?c*NeC= z)FrM=spN3LclYZ*b?b|_cS>+LoZ^ORoFd@&0pMTehbYS#0sd2DB=`aRpVLpSP~u)Z z9?#E<2ZiHN!tp5Kc%*PVrf|gX2;q1@IG#Z`9w{7ki4YFn!;aI&P`bHO7_QX;-Mocd z4;L=@)7;57MyZd{;@)aJMz6(`&7DGGBua%e5RdP!iNe+1>KO1f@WUxJSP1I4y14Q^ z?Ks`7TeGu5qQ$fd9GaKwtI^_?Y)M=*8q@jw$C(CWmLLQtE+Se}jBZV%aL``FJuKOh z63$@Ewv!I z%>XT?!ecesC`;A`agA#%M4Nnm<#`5^S0Gd}DTQeFLFjg8if#<4MyV{>-$W>e6FTOQ z_)mIbps$y>hYo~x@v%{|V=Gl+t~w?H*NdYuX%rR#u*PJAF|`zz>GWEKIzkeoP|9$v z*oDjI^2JJpglN`udQ2_Dv@!u`-r5<8hr;4MWO1V-?0$S(E)~JXt}<&$qG2OjH?rX{ z{%qRxMN`i3_2NP4d8G6_QhFXGJ&#p-9+aL3q$k=vhV(pEnV|HEggo`h)^{%Wu~;GU z@7+S%@$Eo+%>jQ7?A>rZsFYgd`sMPZ`u>`MT~6LxTWr(}yQa$YsjlB1E}u{}(J8X$ z!ZG{pdZ-)kdoeu1uhd<;mS?Jk);}3J(&_G+$=ln8*WZ4*5C2GV(%5%X=e>{V*XP^f zX19u!E_deQ(Af7)^p*O%Ila%g8r=7A_hN09kG-K?;jrvL>Y+w&?2~8gy~rs6WXg10 z^}WO#@7tVStjf^rKqH_uisryT?45Fg!}O7j z0e`xppRr;`sv?bu@>^}Yvk;Mnl*@9j$|*%^Wc)8opuyiv!^#wnjR;v$l}D<|hFI?M zB8Qy6i@-=UZ_t2}_W4tU2BH9}!lI)=1IBj+{Sjje=57c?LGU6C+Ly)E8#acZl_FFl zFLTNoF(Q9phbhz+mPo01q*N3yKq?rL7*Zt?ceE0f;xk^4dl|K^-Js!>gB={3mm1I{ zsrcMA+36FN!;VdC@L$s5zQyWky*TGflwTNMF`~q)k24%Pox8J065rmZ_kc~#3#vFp zgbZ&biJ!e8YBnBuSyXb-w$lB={PzZ&YjZBL){}b)Klgv0e=>agm+lG5GBVd9;TO(r z`C9q;fUDImomT`lNrF-7;QaH=MX&9Pa=OrlWB8r0K2jf2f_u74Wdf~9rgEi3FOts{3eEfuFH$`<*eADp{|Z~1Y4E%8GQ89r2tYMOzw39SR6J5D z6Tcg8iyR9|CR}a0FKg9EBiwbjmjOiG_na_f$Seob~AUUoWNku>wgL%e37 zIzn`GX!zE{^%XxC^nA0r{o-Tx*LqD3Sv76g75<*$KLq_9_hi0=exI$c+xr36?=HZYzOaCP5QFuH-y5P4- z2P1t9&;wtU4n6=uw}lSkJ0Ryohbni@lk$Ue!WaN^V2t0y+-QtM;!(BIM*m&0T5AL4 zgqlpqf#LoXIh~25fG)4}-M`(rI)yuP<__1w^MNsV#d24iUnN5fQ-fVFzirZ6L9$ z#DgkXrixv{0?Jr;ZdRv>gC_Y?0jWPCaC(gvjFnO;q<|{`|4^jCt|dvBp_o~I=wI~n zvgZ&i2ZM^ta-1@NqblHEqIo1f>^#YBt2L?}>gTQ3%)(zqB@ z|5LyWunicgMx_F?#e@)y;q;uu_`-5@ESkRN{1_6MN~YS81tBw)4Xh9jV`pYy-k2eU zhR^_^EknZ)I*|~fKvC11&90`{0OkJ_HdZHLB$^m7get{!dLmCJP~7210K|XiIGK_kXx<_ zn+t83a@{5RSMyJtSszENp4TjV>@ab1v@|9n{=sSaqO*5?#f6XZJL_`E|G&Y`HFVV< zIkkAwymi{Lcbwk62H`EH`-eOdR|)MWy*A=&zacZ4E}QykNST(sdVUbc~Zpspx=FV=+(X0b>NJHV6KNBO%4PcRnNwCW$y=iwe;|fvGdJ z@h}$;0WOoug_xVG0L;g*j*E1&7KNlrjSiQ^sg%S#o(p3QY~zogA- z_zINg)Y4)Vt2uyCU~V*~1v9CzXU&pmGA$YcOVWm&J9X#0s?f0ZMlHBxA=on^txEov z{Xs-d0L;aOeP5QY37=tPhPa7@5LQBYt-|3aig@_09Jr@@z`>5|O1kb=6#B6yWZsQq zugaYKGU8D6eMjzITK!>^@1qTUj~AH`|7=8`vfDA<*u7yd&-7}sw)~dH-%nm#9Pn8F z^xlS_k~{sr*Q&3m)cDpNzspOWdOv7Z;l{n=rxOa#jr~%7x@ujxsNTeiqwV(nDs-_! z({`KQb-cb6K7O^rb%T3$?wZXBHMb~@2MFM3PaR+8CiiglaCh?%O5OOl)Zht|QD}*^ zr%tAk#;8EoRj$#hFg;fTX2ys|&}1Tlm=X0elnWrs1%q_s`m zkRkDb&!*x3IUmVL)JKwCa2^z#dOC^eQ+8>f;E9AdR)Q3HB0kslmUmKeUFql+d%n(k+pDp&N^ouc&zKIq-?aFp}gAf0#GuL{SiO&R)8x#7j3N@1Qe{UViu)c2}B(F>~i%stZRXRC}A4NKli z2@gtb_<3i&5l-GsryPRV%t%x24B{-V%IVFn4Gj-eA0@Jg_0?44J7~iG+m<6mC*$md_{f ztoB&&I4Q1F$EYN@mJD3Pup9e8ia$}b3oL4gUDP61JMFuwsq!1dBG(EzO2HP63RQ&T z*jqT{?n(}ciQzZ)(YGA3AP1{&RhRl{#h0TGMZ51WgX7;rY7J<<@p;)W$LU<}E!XV> zKb$W+KJ|XJDDJoW_`;@=Qz-`bfNaKd!DBzx{__`zb>o zEgYfX@5&x}d0N-W+gd!V@BX7=!qn0)2faTuC-cfP#hxV9KMTc=k{cY$+<&X_y?_lc zSUI2kc)jKQ;s0>D=TL;k1uBmcrv$E2ce$I)!&QR2c;HfuaD{oCYHO{L1IE`8V{HPi zE7dFU0JQkW`G$tl5$Ad0?k|UL6F3xwS2#t$oroR>v*pU!Vs$`mv7i)ScnnBEHBdkb z9xX*8xR`>WvTAg;}X;i0~Js$RJB*~6xd}T+atc7u0Nr{+8$}=Ilnw5O)#>JNDexz&nhkY78 zSl2o%_+Yt83w8~jGyC3}IY)T24#j?Q?6ZF4fd!{BrvJ>?z3afP2K%9l4;-v=aLJsg z#heaMc-pN{ITW`_WD=b34(8D%p04f^Pgb|aSaYjfp~WQ%txPuvBqCtClS}TJpN|##N^I*c&IrYLW-9Gp9@u6&|%Zd@*ZWbMm?b$B4)Np_1+^f}Ibq<>H zwM6Ldsj*AjJ6&x>8C@QGEfX*WFT49;y>ncTV-PKmkd5c~A!%heQY&iF z(4nu_arJO>!6Z_tE8oopEGlEonEP0zP8kE>QYpY#2N&>(&9fT&wzy}NNzHg8)L+S}bF=AW%C9Y){uA9(Re%c3=^^z3qzw`fDJ znH|%|^tFqfzvLEY+qeIobo_KewG-m9;o_-#ef~LAl+)Ez3z`n7HcCjsFsWSXA;aA; zDJGG#FY3|T1_u|DfECIZTw$m~CZ!#t5{*rgXt@EK8m6jpndK1~8k#qTO!PqpiYXs* zF#5ab>Yt0r^9i+~HloH@Po#td9A7^&)5sROYi z!WH#l4_#xC*GkAuVi$8oD^w1!XCZmEB4`2SPhv$aCWF8*e=6J!&pU%)@=>b9^8#To ztjR{9lVvNAl@Ku;{|7K6^~(!~4E+*`$HmHsz~2=JrPf@KPb7}Ey3|Z=F=9k(bovPJ zB5Yn@3^CMY!?B)aTTs;yft>sYfTXm{3zC$$1vEP1)*X>gSdRS-EOly4tXzpjCJytEMuH@g zcyAZi(r~I;#UsE;)%(AMlTtKKa8d&Q55h^QmQQe6U0otKZO^qaYPAhCc7w&)_^WL8 zK$0a9i9=pl!YVy7VhrgEUW(X@)xi0Lk=Di@3W*W<))i`GGkC-FWvo51dP6{~&Z;lD z%Lg%{XT4jTkjK#&hBCIIWmKl%@zu|=z4HmO=)6HDlL(MoPXl9q5&<2vXvC_qs|-pb z#;v&DBMfL_D`1o+1&=TDfqU9D`Gi+O-teL(ifmm&eUzC0Tl7&{bb%LB<&&Tk$iU4T8~+p7t_dq+&=mjCBwJ z%=01@bLDI$&?smDMbLbain;ysiNQQ3d|-)`LXST8N-5K|GpI#JKYCuvLc$jcDa zF#Ol#&FXO5CLCxvd8C}wI(7Jd1MIMy$%zuG8coX_m&Q->dAhg%+kwK{@spN%ITz^} z)U*EUfA-vT+kfd$SoP1Z1ckP>nHUf<;J`D9GO+LEM(TdkuJg8*88U87t5X~1?R&m@ zlz!2oLj2MmqdBM2mU3eo9@|`Db+IJZudkD%_imZrZ$`xJ=Jf-zd{&I?yDdf(IeKGC z;<{Te5@Kd`x(ipR4|~$#7H{wUH=OR~rlipTIwQXGORP^9iezBtV+n@4$X!TZn7+2D zvXu=ky#XPC33zFf!i3oM!(41GW0OJSQsJXTYV~u0#27}|81ACWBf=AtS9lnT5F7zT zD2|BjW2`As@Q^YLcd*(zzvx%hx2U%}PpH=qzDiM=aUH&7>_^6M_+R$Mv) z?~T{HapZ9ET9+d_G#U2l=bq)0mPd}y zned%6_FTZ{QoZC)_f6l`Mz(r>mm9pu5cfSbs-J0H$1h|G{-n+Y*n|dhzN&?{V>fbw z87eTm4>d)3=K<^_&zEEFxT{bm@$kSTY^|r&%!*-TE*7I7XaxbV)AT@^1Ihi#1`g~Q zx^Rg?h%g{$R_1bAA;KspN;CL(VbR^(lz#;qQgUbS+`@x#6&4)H8kIGcjSZquezHNx zX@w1=oCTZ>LXZ4n!|MK412L^!5|fai13yHIJ&5eobVJ4tpnwl35K0uFL&oG&bf*vCIpj@AfV4 zR`y7_IfuBfE=~xnA6q75)a@*N`yaQyHX2gzUi)jmvi#=jlfHbvIQHKVMTt2h8wVY@ z93F7~SH+bF;vT=Y!!K3IfGtRI(Tf!h-0NYS5ECVsEFgBkTs*+0{}N9*-&KIiJlxz3 zrZ?F)r;D`&VqlC4Q!5g{0(s)$1KZ{C8QYx^IYb9z0b^48&&TmPxDM}iz!u{~d zF&JRaAHq=c2UEGgCU}HgCJ30wl}Oy#%Ij-i?1RIX+^#bDL0fnAmh)qeE7F{@gw9vf z7tOy~xAVgTONN$So%QcO-Nn9(I_u0tr&gy^-Udw7CuzqlD}N*U)-;EtJ5gS#x88_?raL~GbJF3)ls8Rf z0SOfr6>a;d;Wgp-Ch?R?|b ze6LhQfP<~T!xqJj#U+|(y+TEkK*R*0z@17biOdq5z!hvPWDLZx!N~Uhada1q3>9*e zGVY1A0Twlg3jSw$xQq%FjoieB`ym0bDN=~MGlxJ#z#!K`b2{a?NPELz0hDac(&l(p zk9|@q)Pn>v2^fbpd+ZDs=-B(%Tk;_cTDZ938XQk0Hin_h%Kpe9ANyqZS}<&C_NXys zNhI87Re!p6&dz(6o}R6jT~pfXP}@-{BA1!NuS?W<()0S2N96XBkL?{QhA(ed ziqpv;KJ8ejAc|XYA>W1X$``oFJ&7MNLU&+plL%|o#VSmpj8f>qoquz9%bg|(Yhj1@(Y8mzUO&1$v0XzQ?4~F4@H{wU8EQ!R;a&d75aQXbhlDg(k zOU+nY?y2ut!Sh3-I_|W0Jh4UIVaa51ir?GMQ`aZ#xq08sr<&`UH&??pojO`~@q>Ua zZX)H%hn^dJLZ&Rgy}e4{*U=lAmhXIX%*`izn_j#>*?v{Y*3FuIZae+8Z-t=UOFS2y zSp4?#o#rdb-2P~Dcyxek4SjIZ%W*-(H9raM=#2@E&pyH- z%2GiXbs74aFg^8Q_jNbaFi8sq+|AgcfOI!?S142>am!phP8{C%sI1{3had1B4^2e;yGr}q6ERLEtn%x&H8up6VlY(mrXP=GP(QZpO!R%`)FV_&hIY_`Sg~5q*kR(cXMMj30V4s_hRK z=fFp;UyS%SY3($r&-_@suvJ^0K#$8)lg{uWr)sfg~*CZ?$E6{Ti z+)kiE2vLC!6~bjjE8Ku>LhYbjtH9@jc#f%~{Mf_C5ajS-yc<0wLu&-ih9opH!O2*` zqDClqz4vNTBzXPxwr950^_uf!=-BPr(_KnWE?52W^oaGJ|GT#=e1vzmP0o)epK#>7 zy)&=W!I`yI2Q^*Za>MOP)vKNw{{94hxBru(fwL}3_qB@L-A237EA_c|`C~_gQw9g8 zrfoT_^L|pPcgn_qUWLaVTBbk#aFlG<`G@U4&)QpjQq5%(nx^lAcHF!tUex4n$^ece zccas|k@i4oaWI(#Wbdvbfu~G{;qI*SX5*~RY^aRZX1GT+Sjtu7v3hW_BtVhC50$(i zP_v7%Ccz<%;NFcf1_T?iS|ev&L>8wZPhKEui%MlqiIJPZzYEVOM2F-Tr!(`;sTNDn zXc@aHiNRn4ojK7HP9RS@rvmMw-vt<~v;@N@I5_kpTA?JDw;(q5G{Im& zAMqXFKoIIX=-}I~O}rua@~zk^=eHn+;gx@i=$y8&B_NYeb51P^DB3YLyNgEr&n6Sr zcLq`!BP=7CAfuELQ%A&r!<%dj&!jUu8!FQ{bEoez1ZHPe`t;{i(B#FB3K#cnZn?JH&$S0u*HcDL^C;E%a^X*v zIz*}W*XuoQji`NX^~XWyW+!2->~?>}uhqP8|Ll|ZQkOG{b=r;Tv7*N7`sbQdJ$cjN zQF1$1uUbWK9!zg0Itv@7b3+_{oo{isD`!Bimd^usQmKc8?<$vrbFpPInH!%-=FEp} zt!|`2hYG1ihJ*K!mGL^TjD|ej3k>ryl2u~n3>=K^3f8pJs`!Fh?WkJDsWZ1Jd)v-{ zyj5W@iZ}>_yo*MzYJh=3pazwA(rPd;%b`XhVM{Axg*(2_d{$^g#DvnIy7DD*SCN}LCUbQc;;yWR zt;eDVG*ht1$#@&V@->^GKl4)JL-NIlXC^)*Yan7a!uHW37Nu;(jGGSnQrp z&{=))$U+!^Ii96Pl-ct(QH9KTj4^FT-F=3ft|t4FMt0N@n^5Ezk8)GVQUeMmx{Rr= z1(i^U`@05#!gJG!2JVlhZF2M|2am%5?}Hgm!XW2Kw76WX#`U11!)P+$F&JRSM)MOe zKHYv-Rs_eu9cfif3&Xi^qGh5!?1MLI+vAz3_=Z^&AU=;2p8=GqM99h5k#Sn=J_H9Wem zpEcrCayGA8&4~%AT3xg78{w+a_r_xT_s+?_pl$DQW&D^mPLp~Mdz@AOo%Gw{=(M2A zANC{`zA({yQ`dXF*W7NF>a*Bq|Mj{RU%|%GIeWy>YgtLjoW7PUOoQY`Bn>FdrN9-J zdVuvQGIt!qz=@2cZ%n7p$Jj6cL$B25N-^m`g*t)@xH4=Gn%k%gV~Eh#P!V8ezA>nF z%NKics-+=qgxsnkj;~C~L#H4&RdXFw$xU8lB>%4X7K!E!8qhyGd@}Dh3DslLC~)2q z*w_iIw!&p#p}wuC65jw0u!7$J-lAtN=0E4~-M}m(5V0|k<2w-HUG|6I&0z(bDbArm z0mWIDJI*=O%rCAJ^TxFd2j^|daB$qRLLG_2^JGlUVu5rUPj@$M;2B`DyfkETdJJ?f z(TLlfJ)W3!4YvMntd_I(O-9gjPYu@n9_ZH00&y2mU2R|%_UF}_G6j@*u+W5BA7KLn zrsN}~94M3PR*w=<8HL5;^tf6F-dP6kPZ_yafsq}h&6o!fwP>ncyKFE}UEhjrU_}#% ziG#V=^IP=eL{N0JnOR!LMB-tyGD`G!Wf>7DZZIcO(A>#4MyZd{;@)aJ2Ar>@Z0-~i zBT*`(fp~m(O%$&7Mj>)y-a@fb6A?iq!6rw05y^%1@Y~r?HOGNiFyua~m}-ENF@4T> zaM@~`5K4HTozR)T7iQU1M#Pj&=mHu}8Pn!gykZWl%bx*Of!_UBfLuYZ(8qHP{eL0X z-JRb20Srno1^_xzWz9zb{6y&+-@zQ98vU4>m4-u_J_hhC131X`ApkQKz;Gs^0@aoS z6&P)~nNY}pwV01ZG}#fX;&>10v6wR=WJ3q6gSO!b=XuL2$M0#=CS%ayDGSSAcCeGA zd3!&oe0+D8gyWH~`&Vn)_L={%aIX^oDYJG}@Etj#d8@Qr{hhbXDB64QqPVsibw8I2 zo3AenKjqbDz~U+Tl^La)c+S)(7GBlxjPI3^KhLNRp0baeFbVhE3?JW8Seu}mlQL5{ z{VZCU28y%-$~b@v<_@M~gff|@$P*V~tS_rfvLOVT`Gc{Dh^x|JN-#O&4#p^`)t0#< z#&~{$KwY|lzW-|Bs=E+5MhrCfu32q}U^{|6!-qWv&dNg!w4yV?B+wa+Ni(SnD5ENi zjB?EsG+`EwURjTVD9nzqJqp6y(X_#K=ek;@l}xPI8*8!nZIgHKWdcSfNr9TPA{>Ty zrT_*1XJ>T6Z!nruNiZHyD49E+Ib}sA^Y5B)9GH{LoVw9alD0t!q$u-`qw)|)Nrw^Z zg=2Avo=97Xl@+L1603#5YjiN(W$ZJdbUo0JF~;cV;xI2Fw{W=5&0N(D@xfwAXBMC zB7|G%VgFrWQEJ8R`9)oPUYqG?twyhrYLvDF!w{+tok?zQ;n|1`gmo=hz*q~By-~j% z1dY1cfS*yy0vh~qtLD!y1Z|l^GL3vjKXEl+++87)YQW)hQoRk4koH* z+}HD}A*eFmi!`+bSp|{NJiHfaiYTd(4MZ|DDtG`g-iu^2dVcX{^@J!o*D|gQ;Tjf* zz>Q6*K_SLVR*dmSdQph^+K}nPo%TF{>vpTtjfi=1#BGp}Pl&Rt4A>-#v2d563?qV@ zONZQO|6L1`7(? zJxE!=_#ZK+%-qp~A&a&6LhR_#=5?}TbUp1*;h;Iw>@zyIzj`(MAkRG@?8KqR$Kwk7 zd(BGe7OrjMTjj^h)t`0p4>vpX7Q{Xe`7b>~{cylQ$JjMDpVe%=cKC#+bwqKgwG@Z! z?_}OPIQvBBbt_AK_q$UfBG`Lp?=BzxuMOj$YwfuEOW7Iq$^=GS&m7Tr__Po9n`WeJ zg9Fe9@70_faB^TJu%iblKJ8-U9X%wt4ChNln9yD7?k?gBfo|Yqy6VjO<__^Xuws$S zlr&nfEtV_SgNhw+O+!3@(U3`j*I13c%vJWUmr3BLaXENcmaz!jABz-){4e{k8~WxB zCIW)}v4DUk?$0Tp6ESaW=rL9TKNmCny<2EIzMVZW5XiABTK9B~H*d0sG_0|E$&N8t zEsqGNe%+f_IpfxvukW$xzlxW$y)U(lefIRn$_+CrpBOjzX4#bTdp`UKyfUF=O0^|Z zW2;HOMqDrL_UR>WpK^eYr`zVQ_Xk8&$x=S5Ugvz+kFCYNmuXqCXm(VxW^0*B$Lkhd z!?}CuP|8}TVWEAStX}bR^qUeRKl~Rw{^|aA>K*l)I<(xpEJ5(7;sE!ZQyjKCTxh!> z$6Jqn$qA(xtl55%73Z*GBsrB+)tGn zKOS9e@7(g?_J=W_T89r8yT2mq-m$XpO1E&h)V$T>3)`A$4*qE1Gx17z%dN*7Y+3MN z{-W!zGfr(xzU#lM(f)-SZ^+aCd%E0pO_#tveYQNl-m#%_$h&bp%C7%bSY!YCQ*m)%>w(?`h#Ax##D#{r~;8^v9wxH@r*x?uxoRDKLH8 zt+MIfwF^rYcB}ek!lnz=M}&1(*6lEJQ_75!T@EwQLV!`3#%U10X@C#GcFFMJG$H^h%k&ss9F1 zv%crr$eK(&7U;k5%{K3N-`(&jyzJdNbVK;m*_^JX4AT!I*hvI!38>7~RpyF=JytL` zxk&0MFtBg3gHjJ`NhH0c0o;H>%qMo{a-|+eVt$9-x&ZE>K|hbvp4UpM0|&>;o0Z{| zWj>AIXZ8oOAL?|WnUFkENa~R!CJD_1KyHseVi}EwDob}9CYdSNZh!t_V|D1zqV4N{ z`juG4*Z;p}tz}M4uCFU|tm~{vJp@xb-I-iuqVwySX%|IV!_uxd`RCnE*JFDRmPq4s z79J^4ZQhZYP4-80ouluvahcA4_Zn@l?5h7(yl`OO)>WfA47-r^ZP}O&bIJ?s+Z?Rb zq=HZ16Z*D=PC+JIHU~f5x+di%C)7+08VaZ}(kdNS7fc2=U2>NQFn0{cWo%SfU14r! zaIS>d?t(}JjH@3Qc~K5Rd`z~uSl@QUf$rCc9Stj)smCP>A|`gotIOF$hbf(Lffz&d z9NZX1PbBPSWeD)^f~O~&br}Sqh7}ZmtiIu=R_Hb43#E7*c&|^Rl_}KZ8~ns^?CcZ~ zRp85{{&C<~b-D^2aa0%Xju{Di3e~z;Ds4Oog=m4P4~#!1Cs!c900orBIR4AFZr7aRAR--@DO?pfhrGux|SocqNqAcwg2jy*pV=9{H1&bki zBoetb$RRYMD~v)Le9$qctbfq>kx0e|L*Pnsr7y7za!?Eo!YuehHNcEmC5F=aGRpfA z9Dd#J7~IFI!J{KUcMvZ5b)%>!dVyWw?`fl! zOBuH91?>G5BQL?!i7;VNgB>ZdO}D=7gltN9L%874jWQt7?`H^-NZiRvQqZhb@6t`X zcngOQjJs3*LwfDBu;e064a&%?7V&k7uH|-SWL$E_f;BD1oLP0dMezpC>%Mn%SlFO* z)Fi=@skJVA@T#4#5)0j*)%1DNph{u&M{5RLKmDxcr3O2?CsrMD({1g@`Ay!eO+6L& zV*BR8t!sR&cx3&_3t0`*V)qC9b4Fz6+dr0k<*eV7nOAuMKh|$0fG!nKFH)_C0d@}dqm_br@wz#(Zd|GoW>CdxB~!%tk^ zR`QEeU6&wXa^tmwn=AOw-t-iZo1ItQA7`I(v_^kUph0}v$)tuTUgo<=q#h!${VpyQ z@Fi}n%Lmogyd15F#=%CwxQ?sSfcLTVI&O?w145Wo0Tv7r5k$oFe2B4hsG)QZV`&