diff --git a/Core/Core.csproj.user b/Core/Core.csproj.user
deleted file mode 100644
index 88a5509..0000000
--- a/Core/Core.csproj.user
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/Core/obj/Core.csproj.nuget.g.props b/Core/obj/Core.csproj.nuget.g.props
deleted file mode 100644
index f58dcab..0000000
--- a/Core/obj/Core.csproj.nuget.g.props
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\maski\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
- PackageReference
- 6.14.1
-
-
-
-
-
-
-
-
-
- C:\Users\maski\.nuget\packages\newtonsoft.json\10.0.3
-
-
\ No newline at end of file
diff --git a/Core/obj/Core.csproj.nuget.g.targets b/Core/obj/Core.csproj.nuget.g.targets
deleted file mode 100644
index 7e3adca..0000000
--- a/Core/obj/Core.csproj.nuget.g.targets
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index 2217181..0000000
--- a/Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/Core/obj/Debug/net8.0/Core.GlobalUsings.g.cs b/Core/obj/Debug/net8.0/Core.GlobalUsings.g.cs
deleted file mode 100644
index 8578f3d..0000000
--- a/Core/obj/Debug/net8.0/Core.GlobalUsings.g.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-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/Core/obj/Debug/net8.0/Core.csproj.BuildWithSkipAnalyzers b/Core/obj/Debug/net8.0/Core.csproj.BuildWithSkipAnalyzers
deleted file mode 100644
index e69de29..0000000
diff --git a/Domain/Entities/ELSStockReservation.cs b/Domain/Entities/ELSStockReservation.cs
new file mode 100644
index 0000000..d262343
--- /dev/null
+++ b/Domain/Entities/ELSStockReservation.cs
@@ -0,0 +1,57 @@
+namespace Domain.Entities
+{
+ /// Estado de la reserva (establecido en decisiones 2025-10-12)
+ public enum StockReservationStatus
+ {
+ Reserved = 1, // Activa: descuenta disponibilidad
+ Consumed = 2, // Consumida al cerrar expedición
+ Released = 3 // Liberada por cancelación / devolución
+ }
+ public class ELSStockReservation
+ {
+ ///
+ /// Identificador autoincremental de la reserva.
+ ///
+ public int Id { get; set; }
+
+ ///
+ /// Tipo de origen de la reserva. 1=Expedition (extensible a futuros orígenes).
+ ///
+ public byte SourceType { get; set; }
+
+ ///
+ /// Identificador del origen. Ej.: expedition_id cuando source_type=1.
+ ///
+ public int SourceId { get; set; }
+
+ ///
+ /// Referencia al StockItem exacto bloqueado (FK a PhLSM_StockItem). Define producto/ubicación/trazabilidad por JOIN.
+ ///
+ public int StockitemId { get; set; }
+
+ ///
+ /// Cantidad reservada (bloqueada). No disponible mientras status=1 (Reserved).
+ ///
+ public decimal ReservedQuantity { get; set; }
+
+ ///
+ /// Estado de la reserva: 1=Reserved, 2=Released, 3=Consumed.
+ ///
+ public StockReservationStatus Status { get; set; } = StockReservationStatus.Reserved;
+
+ ///
+ /// Fecha/hora de creación (UTC).
+ ///
+ public DateTime Createdat { get; set; }
+
+ ///
+ /// Última modificación (UTC). Puede ser NULL si nunca se actualizó.
+ ///
+ public DateTime? Modifiedat { get; set; }
+
+ ///
+ /// Token de concurrencia optimista (ROWVERSION) para actualizaciones seguras.
+ ///
+ public byte[] Rowversion { get; set; } = Array.Empty();
+ }
+}
diff --git a/Domain/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Domain/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index 2217181..0000000
--- a/Domain/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/Domain/obj/Debug/net8.0/Domain.GlobalUsings.g.cs b/Domain/obj/Debug/net8.0/Domain.GlobalUsings.g.cs
deleted file mode 100644
index 8578f3d..0000000
--- a/Domain/obj/Debug/net8.0/Domain.GlobalUsings.g.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-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/Domain/obj/Domain.csproj.nuget.dgspec.json b/Domain/obj/Domain.csproj.nuget.dgspec.json
deleted file mode 100644
index 3d0a6d9..0000000
--- a/Domain/obj/Domain.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,74 +0,0 @@
-{
- "format": 1,
- "restore": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {}
- },
- "projects": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj",
- "projectName": "Domain",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "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"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "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\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Domain/obj/Domain.csproj.nuget.g.props b/Domain/obj/Domain.csproj.nuget.g.props
deleted file mode 100644
index ca369a5..0000000
--- a/Domain/obj/Domain.csproj.nuget.g.props
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\maski\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
- PackageReference
- 6.14.1
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Domain/obj/Domain.csproj.nuget.g.targets b/Domain/obj/Domain.csproj.nuget.g.targets
deleted file mode 100644
index 3dc06ef..0000000
--- a/Domain/obj/Domain.csproj.nuget.g.targets
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/Domain/obj/project.assets.json b/Domain/obj/project.assets.json
deleted file mode 100644
index 79a3f78..0000000
--- a/Domain/obj/project.assets.json
+++ /dev/null
@@ -1,80 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net8.0": {}
- },
- "libraries": {},
- "projectFileDependencyGroups": {
- "net8.0": []
- },
- "packageFolders": {
- "C:\\Users\\maski\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj",
- "projectName": "Domain",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "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"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "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\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Models/Models/PhLsmStockReservation.cs b/Models/Models/PhLsmStockReservation.cs
new file mode 100644
index 0000000..fb86da2
--- /dev/null
+++ b/Models/Models/PhLsmStockReservation.cs
@@ -0,0 +1,57 @@
+using System;
+using System.Collections.Generic;
+
+namespace Models.Models;
+
+///
+/// Reservas de stock por origen genérico (source_type/source_id). Cada fila bloquea cantidad sobre un StockItem. No duplica lote/serie/vencimiento; se resuelve por JOIN a PhLSM_StockItem.
+///
+public partial class PhLsmStockReservation
+{
+ ///
+ /// Identificador autoincremental de la reserva.
+ ///
+ public int Id { get; set; }
+
+ ///
+ /// Tipo de origen de la reserva. 1=Expedition (extensible a futuros orígenes).
+ ///
+ public byte SourceType { get; set; }
+
+ ///
+ /// Identificador del origen. Ej.: expedition_id cuando source_type=1.
+ ///
+ public int SourceId { get; set; }
+
+ ///
+ /// Referencia al StockItem exacto bloqueado (FK a PhLSM_StockItem). Define producto/ubicación/trazabilidad por JOIN.
+ ///
+ public int StockitemId { get; set; }
+
+ ///
+ /// Cantidad reservada (bloqueada). No disponible mientras status=1 (Reserved).
+ ///
+ public decimal ReservedQuantity { get; set; }
+
+ ///
+ /// Estado de la reserva: 1=Reserved, 2=Released, 3=Consumed.
+ ///
+ public int Status { get; set; }
+
+ ///
+ /// Fecha/hora de creación (UTC).
+ ///
+ public DateTime Createdat { get; set; }
+
+ ///
+ /// Última modificación (UTC). Puede ser NULL si nunca se actualizó.
+ ///
+ public DateTime? Modifiedat { get; set; }
+
+ ///
+ /// Token de concurrencia optimista (ROWVERSION) para actualizaciones seguras.
+ ///
+ public byte[] Rowversion { get; set; } = null!;
+
+ public virtual PhLsmStockItem Stockitem { get; set; } = null!;
+}
diff --git a/Models/Repositories/Stock/PhLSMStockReservationRepository.cs b/Models/Repositories/Stock/PhLSMStockReservationRepository.cs
new file mode 100644
index 0000000..c7cf4ca
--- /dev/null
+++ b/Models/Repositories/Stock/PhLSMStockReservationRepository.cs
@@ -0,0 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Models.Repositories.Stock
+{
+ internal class PhLSMStockReservationRepository
+ {
+ }
+}
diff --git a/Models/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Models/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index 2217181..0000000
--- a/Models/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/Models/obj/Debug/net8.0/Models.GlobalUsings.g.cs b/Models/obj/Debug/net8.0/Models.GlobalUsings.g.cs
deleted file mode 100644
index 8578f3d..0000000
--- a/Models/obj/Debug/net8.0/Models.GlobalUsings.g.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-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/Models/obj/Debug/net8.0/Models.csproj.BuildWithSkipAnalyzers b/Models/obj/Debug/net8.0/Models.csproj.BuildWithSkipAnalyzers
deleted file mode 100644
index e69de29..0000000
diff --git a/Models/obj/Models.csproj.nuget.dgspec.json b/Models/obj/Models.csproj.nuget.dgspec.json
deleted file mode 100644
index 9891ed5..0000000
--- a/Models/obj/Models.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,156 +0,0 @@
-{
- "format": 1,
- "restore": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj": {}
- },
- "projects": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj",
- "projectName": "Domain",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "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"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "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\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj",
- "projectName": "Models",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.EntityFrameworkCore.SqlServer": {
- "target": "Package",
- "version": "[8.0.10, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Models/obj/Models.csproj.nuget.g.props b/Models/obj/Models.csproj.nuget.g.props
deleted file mode 100644
index fb03bea..0000000
--- a/Models/obj/Models.csproj.nuget.g.props
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\maski\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
- PackageReference
- 6.14.1
-
-
-
-
-
-
-
-
-
-
- C:\Users\maski\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3
-
-
\ No newline at end of file
diff --git a/Models/obj/Models.csproj.nuget.g.targets b/Models/obj/Models.csproj.nuget.g.targets
deleted file mode 100644
index 7e3adca..0000000
--- a/Models/obj/Models.csproj.nuget.g.targets
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Models/obj/project.assets.json b/Models/obj/project.assets.json
deleted file mode 100644
index d40c124..0000000
--- a/Models/obj/project.assets.json
+++ /dev/null
@@ -1,4105 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net8.0": {
- "Azure.Core/1.35.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
- "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.Identity/1.10.3": {
- "type": "package",
- "dependencies": {
- "Azure.Core": "1.35.0",
- "Microsoft.Identity.Client": "4.56.0",
- "Microsoft.Identity.Client.Extensions.Msal": "4.56.0",
- "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"
- }
- }
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Humanizer.dll": {
- "related": ".xml"
- }
- }
- },
- "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.3": {
- "type": "package",
- "build": {
- "build/_._": {}
- }
- },
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.1",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0"
- },
- "compile": {
- "lib/netcoreapp3.1/_._": {
- "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.5.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "[4.5.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/_._": {
- "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.CSharp.Workspaces/4.5.0": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "[4.5.0]",
- "Microsoft.CodeAnalysis.Common": "[4.5.0]",
- "Microsoft.CodeAnalysis.Workspaces.Common": "[4.5.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/_._": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "Microsoft.CodeAnalysis.Common": "[4.5.0]",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "6.0.3",
- "System.Threading.Channels": "6.0.0"
- },
- "compile": {
- "lib/netcoreapp3.1/_._": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CSharp/4.5.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "Microsoft.Data.SqlClient/5.1.5": {
- "type": "package",
- "dependencies": {
- "Azure.Identity": "1.10.3",
- "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1",
- "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": "6.0.1",
- "System.Diagnostics.DiagnosticSource": "6.0.1",
- "System.Runtime.Caching": "6.0.0",
- "System.Security.Cryptography.Cng": "5.0.0",
- "System.Security.Principal.Windows": "5.0.0",
- "System.Text.Encoding.CodePages": "6.0.0",
- "System.Text.Encodings.Web": "6.0.0"
- },
- "compile": {
- "ref/net6.0/Microsoft.Data.SqlClient.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Data.SqlClient.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
- "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.EntityFrameworkCore/8.0.10": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
- "Microsoft.Extensions.Logging": "8.0.1"
- },
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/_._": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10",
- "Microsoft.Extensions.DependencyModel": "8.0.2",
- "Mono.TextTemplating": "2.2.1"
- },
- "compile": {
- "lib/net8.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.SqlServer/8.0.10": {
- "type": "package",
- "dependencies": {
- "Microsoft.Data.SqlClient": "5.1.5",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10"
- },
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "related": ".xml"
- }
- }
- },
- "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.Memory/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "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.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "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/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "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.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.56.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "6.22.0"
- },
- "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.56.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Identity.Client": "4.56.0",
- "System.IO.FileSystem.AccessControl": "5.0.0",
- "System.Security.Cryptography.ProtectedData": "4.5.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.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/1.1.0": {
- "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.SystemEvents/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "Mono.TextTemplating/2.2.1": {
- "type": "package",
- "dependencies": {
- "System.CodeDom": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/Mono.TextTemplating.dll": {}
- }
- },
- "System.CodeDom/4.4.0": {
- "type": "package",
- "compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.CodeDom.dll": {}
- }
- },
- "System.Collections.Immutable/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Convention": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0",
- "System.Composition.TypedParts": "6.0.0"
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.AttributedModel/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.AttributedModel.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.Convention/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.Convention.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.Hosting/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.Runtime": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.Hosting.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.Runtime/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.Runtime.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.TypedParts/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.TypedParts.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Configuration.ConfigurationManager/6.0.1": {
- "type": "package",
- "dependencies": {
- "System.Security.Cryptography.ProtectedData": "6.0.0",
- "System.Security.Permissions": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/6.0.1": {
- "type": "package",
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Drawing.Common/6.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Win32.SystemEvents": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Drawing.Common.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Formats.Asn1/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Formats.Asn1.dll": {
- "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.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.Pipelines/6.0.3": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "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.Numerics.Vectors/4.5.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.Reflection.Metadata/6.0.1": {
- "type": "package",
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "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/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Configuration.ConfigurationManager": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Runtime.Caching.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.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.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/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Formats.Asn1": "5.0.0"
- },
- "compile": {
- "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.ProtectedData/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Permissions/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.AccessControl": "6.0.0",
- "System.Windows.Extensions": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Security.Permissions.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.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/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.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/4.7.2": {
- "type": "package",
- "compile": {
- "lib/netcoreapp3.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Threading.Channels/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Threading.Channels.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "System.Windows.Extensions/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Drawing.Common": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "Domain/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v8.0",
- "compile": {
- "bin/placeholder/Domain.dll": {}
- },
- "runtime": {
- "bin/placeholder/Domain.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Azure.Core/1.35.0": {
- "sha512": "hENcx03Jyuqv05F4RBEPbxz29UrM3Nbhnr6Wl6NQpoU9BCIbL3XLentrxDCTrH54NLS11Exxi/o8MYgT/cnKFA==",
- "type": "package",
- "path": "azure.core/1.35.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "CHANGELOG.md",
- "README.md",
- "azure.core.1.35.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/net5.0/Azure.Core.dll",
- "lib/net5.0/Azure.Core.xml",
- "lib/net6.0/Azure.Core.dll",
- "lib/net6.0/Azure.Core.xml",
- "lib/netcoreapp2.1/Azure.Core.dll",
- "lib/netcoreapp2.1/Azure.Core.xml",
- "lib/netstandard2.0/Azure.Core.dll",
- "lib/netstandard2.0/Azure.Core.xml"
- ]
- },
- "Azure.Identity/1.10.3": {
- "sha512": "l1Xm2MWOF2Mzcwuarlw8kWQXLZk3UeB55aQXVyjj23aBfDwOZ3gu5GP2kJ6KlmZeZv2TCzw7x4L3V36iNr3gww==",
- "type": "package",
- "path": "azure.identity/1.10.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "CHANGELOG.md",
- "README.md",
- "azure.identity.1.10.3.nupkg.sha512",
- "azure.identity.nuspec",
- "azureicon.png",
- "lib/netstandard2.0/Azure.Identity.dll",
- "lib/netstandard2.0/Azure.Identity.xml"
- ]
- },
- "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"
- ]
- },
- "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.3": {
- "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "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_all.editorconfig",
- "build/config/analysislevel_2_9_8_default.editorconfig",
- "build/config/analysislevel_2_9_8_minimum.editorconfig",
- "build/config/analysislevel_2_9_8_none.editorconfig",
- "build/config/analysislevel_2_9_8_recommended.editorconfig",
- "build/config/analysislevel_3_3_all.editorconfig",
- "build/config/analysislevel_3_3_default.editorconfig",
- "build/config/analysislevel_3_3_minimum.editorconfig",
- "build/config/analysislevel_3_3_none.editorconfig",
- "build/config/analysislevel_3_3_recommended.editorconfig",
- "build/config/analysislevel_3_all.editorconfig",
- "build/config/analysislevel_3_default.editorconfig",
- "build/config/analysislevel_3_minimum.editorconfig",
- "build/config/analysislevel_3_none.editorconfig",
- "build/config/analysislevel_3_recommended.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_all.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_default.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_none.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig",
- "build/config/analysislevelcorrectness_3_3_all.editorconfig",
- "build/config/analysislevelcorrectness_3_3_default.editorconfig",
- "build/config/analysislevelcorrectness_3_3_minimum.editorconfig",
- "build/config/analysislevelcorrectness_3_3_none.editorconfig",
- "build/config/analysislevelcorrectness_3_3_recommended.editorconfig",
- "build/config/analysislevelcorrectness_3_all.editorconfig",
- "build/config/analysislevelcorrectness_3_default.editorconfig",
- "build/config/analysislevelcorrectness_3_minimum.editorconfig",
- "build/config/analysislevelcorrectness_3_none.editorconfig",
- "build/config/analysislevelcorrectness_3_recommended.editorconfig",
- "build/config/analysislevellibrary_2_9_8_all.editorconfig",
- "build/config/analysislevellibrary_2_9_8_default.editorconfig",
- "build/config/analysislevellibrary_2_9_8_minimum.editorconfig",
- "build/config/analysislevellibrary_2_9_8_none.editorconfig",
- "build/config/analysislevellibrary_2_9_8_recommended.editorconfig",
- "build/config/analysislevellibrary_3_3_all.editorconfig",
- "build/config/analysislevellibrary_3_3_default.editorconfig",
- "build/config/analysislevellibrary_3_3_minimum.editorconfig",
- "build/config/analysislevellibrary_3_3_none.editorconfig",
- "build/config/analysislevellibrary_3_3_recommended.editorconfig",
- "build/config/analysislevellibrary_3_all.editorconfig",
- "build/config/analysislevellibrary_3_default.editorconfig",
- "build/config/analysislevellibrary_3_minimum.editorconfig",
- "build/config/analysislevellibrary_3_none.editorconfig",
- "build/config/analysislevellibrary_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.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.3.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.5.0": {
- "sha512": "lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.common/4.5.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.5.0.nupkg.sha512",
- "microsoft.codeanalysis.common.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "sha512": "cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp/4.5.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.5.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "sha512": "h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.workspaces.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
- "sha512": "l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
- "type": "package",
- "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
- "microsoft.codeanalysis.workspaces.common.nuspec"
- ]
- },
- "Microsoft.CSharp/4.5.0": {
- "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
- "type": "package",
- "path": "microsoft.csharp/4.5.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/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.5.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.1.5": {
- "sha512": "6kvhQjY5uBCdBccezFD2smfnpQjQ33cZtUZVrNvxlwoBu6uopM5INH6uSgLI7JRLtlQ3bMPwnhMq4kchsXeZ5w==",
- "type": "package",
- "path": "microsoft.data.sqlclient/5.1.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "dotnet.png",
- "lib/net462/Microsoft.Data.SqlClient.dll",
- "lib/net462/Microsoft.Data.SqlClient.pdb",
- "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.pdb",
- "lib/net6.0/Microsoft.Data.SqlClient.xml",
- "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
- "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
- "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
- "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
- "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
- "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
- "microsoft.data.sqlclient.5.1.5.nupkg.sha512",
- "microsoft.data.sqlclient.nuspec",
- "ref/net462/Microsoft.Data.SqlClient.dll",
- "ref/net462/Microsoft.Data.SqlClient.pdb",
- "ref/net462/Microsoft.Data.SqlClient.xml",
- "ref/net6.0/Microsoft.Data.SqlClient.dll",
- "ref/net6.0/Microsoft.Data.SqlClient.pdb",
- "ref/net6.0/Microsoft.Data.SqlClient.xml",
- "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
- "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
- "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
- "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
- "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
- "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
- "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll",
- "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.pdb",
- "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
- "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
- "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
- "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
- "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll",
- "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb",
- "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll",
- "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.pdb",
- "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
- "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
- "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
- "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
- ]
- },
- "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
- "sha512": "wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==",
- "type": "package",
- "path": "microsoft.data.sqlclient.sni.runtime/5.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "dotnet.png",
- "microsoft.data.sqlclient.sni.runtime.5.1.1.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.EntityFrameworkCore/8.0.10": {
- "sha512": "PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
- "type": "package",
- "path": "microsoft.entityframeworkcore/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.xml",
- "microsoft.entityframeworkcore.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "sha512": "FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
- "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.abstractions.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "sha512": "51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
- "docs/PACKAGE.md",
- "lib/netstandard2.0/_._",
- "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.analyzers.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.10": {
- "sha512": "uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.design/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "build/net8.0/Microsoft.EntityFrameworkCore.Design.props",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml",
- "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.design.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "sha512": "OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.relational/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
- "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.relational.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.SqlServer/8.0.10": {
- "sha512": "DvhBEk44UjWMebFKwIFDIdEsG8gzbgflWIZljDCpIkZVpId+PKs0ufzJxnTQ94InPO+pS7+wE45cRsPRt9B0Iw==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.sqlserver/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
- "microsoft.entityframeworkcore.sqlserver.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.sqlserver.nuspec"
- ]
- },
- "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.Memory/8.0.1": {
- "sha512": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
- "type": "package",
- "path": "microsoft.extensions.caching.memory/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
- "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
- "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
- "microsoft.extensions.caching.memory.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "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.1": {
- "sha512": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/8.0.1",
- "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.1.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.Logging/8.0.1": {
- "sha512": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
- "type": "package",
- "path": "microsoft.extensions.logging/8.0.1",
- "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.1.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.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.56.0": {
- "sha512": "rr4zbidvHy9r4NvOAs5hdd964Ao2A0pAeFBJKR95u1CJAVzbd1p6tPTXUZ+5ld0cfThiVSGvz6UHwY6JjraTpA==",
- "type": "package",
- "path": "microsoft.identity.client/4.56.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
- "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
- "lib/monoandroid90/Microsoft.Identity.Client.dll",
- "lib/monoandroid90/Microsoft.Identity.Client.xml",
- "lib/net45/Microsoft.Identity.Client.dll",
- "lib/net45/Microsoft.Identity.Client.xml",
- "lib/net461/Microsoft.Identity.Client.dll",
- "lib/net461/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/netcoreapp2.1/Microsoft.Identity.Client.dll",
- "lib/netcoreapp2.1/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.56.0.nupkg.sha512",
- "microsoft.identity.client.nuspec"
- ]
- },
- "Microsoft.Identity.Client.Extensions.Msal/4.56.0": {
- "sha512": "H12YAzEGK55vZ+QpxUzozhW8ZZtgPDuWvgA0JbdIR9UhMUplj29JhIgE2imuH8W2Nw9D8JKygR1uxRFtpSNcrg==",
- "type": "package",
- "path": "microsoft.identity.client.extensions.msal/4.56.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
- "microsoft.identity.client.extensions.msal.4.56.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/1.1.0": {
- "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "type": "package",
- "path": "microsoft.netcore.platforms/1.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json"
- ]
- },
- "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.SystemEvents/6.0.0": {
- "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
- "type": "package",
- "path": "microsoft.win32.systemevents/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/Microsoft.Win32.SystemEvents.dll",
- "lib/net461/Microsoft.Win32.SystemEvents.xml",
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
- "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
- "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
- "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
- "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
- "microsoft.win32.systemevents.nuspec",
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
- "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
- "useSharedDesignerContext.txt"
- ]
- },
- "Mono.TextTemplating/2.2.1": {
- "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
- "type": "package",
- "path": "mono.texttemplating/2.2.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net472/Mono.TextTemplating.dll",
- "lib/netstandard2.0/Mono.TextTemplating.dll",
- "mono.texttemplating.2.2.1.nupkg.sha512",
- "mono.texttemplating.nuspec"
- ]
- },
- "System.CodeDom/4.4.0": {
- "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
- "type": "package",
- "path": "system.codedom/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.CodeDom.dll",
- "lib/netstandard2.0/System.CodeDom.dll",
- "ref/net461/System.CodeDom.dll",
- "ref/net461/System.CodeDom.xml",
- "ref/netstandard2.0/System.CodeDom.dll",
- "ref/netstandard2.0/System.CodeDom.xml",
- "system.codedom.4.4.0.nupkg.sha512",
- "system.codedom.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Collections.Immutable/6.0.0": {
- "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
- "type": "package",
- "path": "system.collections.immutable/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Collections.Immutable.dll",
- "lib/net461/System.Collections.Immutable.xml",
- "lib/net6.0/System.Collections.Immutable.dll",
- "lib/net6.0/System.Collections.Immutable.xml",
- "lib/netstandard2.0/System.Collections.Immutable.dll",
- "lib/netstandard2.0/System.Collections.Immutable.xml",
- "system.collections.immutable.6.0.0.nupkg.sha512",
- "system.collections.immutable.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition/6.0.0": {
- "sha512": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
- "type": "package",
- "path": "system.composition/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "system.composition.6.0.0.nupkg.sha512",
- "system.composition.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.AttributedModel/6.0.0": {
- "sha512": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
- "type": "package",
- "path": "system.composition.attributedmodel/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.AttributedModel.dll",
- "lib/net461/System.Composition.AttributedModel.xml",
- "lib/net6.0/System.Composition.AttributedModel.dll",
- "lib/net6.0/System.Composition.AttributedModel.xml",
- "lib/netstandard2.0/System.Composition.AttributedModel.dll",
- "lib/netstandard2.0/System.Composition.AttributedModel.xml",
- "system.composition.attributedmodel.6.0.0.nupkg.sha512",
- "system.composition.attributedmodel.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Convention/6.0.0": {
- "sha512": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
- "type": "package",
- "path": "system.composition.convention/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.Convention.dll",
- "lib/net461/System.Composition.Convention.xml",
- "lib/net6.0/System.Composition.Convention.dll",
- "lib/net6.0/System.Composition.Convention.xml",
- "lib/netstandard2.0/System.Composition.Convention.dll",
- "lib/netstandard2.0/System.Composition.Convention.xml",
- "system.composition.convention.6.0.0.nupkg.sha512",
- "system.composition.convention.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Hosting/6.0.0": {
- "sha512": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
- "type": "package",
- "path": "system.composition.hosting/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.Hosting.dll",
- "lib/net461/System.Composition.Hosting.xml",
- "lib/net6.0/System.Composition.Hosting.dll",
- "lib/net6.0/System.Composition.Hosting.xml",
- "lib/netstandard2.0/System.Composition.Hosting.dll",
- "lib/netstandard2.0/System.Composition.Hosting.xml",
- "system.composition.hosting.6.0.0.nupkg.sha512",
- "system.composition.hosting.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Runtime/6.0.0": {
- "sha512": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
- "type": "package",
- "path": "system.composition.runtime/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.Runtime.dll",
- "lib/net461/System.Composition.Runtime.xml",
- "lib/net6.0/System.Composition.Runtime.dll",
- "lib/net6.0/System.Composition.Runtime.xml",
- "lib/netstandard2.0/System.Composition.Runtime.dll",
- "lib/netstandard2.0/System.Composition.Runtime.xml",
- "system.composition.runtime.6.0.0.nupkg.sha512",
- "system.composition.runtime.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.TypedParts/6.0.0": {
- "sha512": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
- "type": "package",
- "path": "system.composition.typedparts/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.TypedParts.dll",
- "lib/net461/System.Composition.TypedParts.xml",
- "lib/net6.0/System.Composition.TypedParts.dll",
- "lib/net6.0/System.Composition.TypedParts.xml",
- "lib/netstandard2.0/System.Composition.TypedParts.dll",
- "lib/netstandard2.0/System.Composition.TypedParts.xml",
- "system.composition.typedparts.6.0.0.nupkg.sha512",
- "system.composition.typedparts.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Configuration.ConfigurationManager/6.0.1": {
- "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
- "type": "package",
- "path": "system.configuration.configurationmanager/6.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Configuration.ConfigurationManager.dll",
- "lib/net461/System.Configuration.ConfigurationManager.xml",
- "lib/net6.0/System.Configuration.ConfigurationManager.dll",
- "lib/net6.0/System.Configuration.ConfigurationManager.xml",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
- "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
- "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
- "system.configuration.configurationmanager.6.0.1.nupkg.sha512",
- "system.configuration.configurationmanager.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Diagnostics.DiagnosticSource/6.0.1": {
- "sha512": "KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==",
- "type": "package",
- "path": "system.diagnostics.diagnosticsource/6.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Diagnostics.DiagnosticSource.dll",
- "lib/net461/System.Diagnostics.DiagnosticSource.xml",
- "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
- "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
- "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
- "system.diagnostics.diagnosticsource.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Drawing.Common/6.0.0": {
- "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
- "type": "package",
- "path": "system.drawing.common/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Drawing.Common.dll",
- "lib/net461/System.Drawing.Common.xml",
- "lib/net6.0/System.Drawing.Common.dll",
- "lib/net6.0/System.Drawing.Common.xml",
- "lib/netcoreapp3.1/System.Drawing.Common.dll",
- "lib/netcoreapp3.1/System.Drawing.Common.xml",
- "lib/netstandard2.0/System.Drawing.Common.dll",
- "lib/netstandard2.0/System.Drawing.Common.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
- "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
- "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
- "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
- "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
- "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
- "system.drawing.common.6.0.0.nupkg.sha512",
- "system.drawing.common.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Formats.Asn1/5.0.0": {
- "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
- "type": "package",
- "path": "system.formats.asn1/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Formats.Asn1.dll",
- "lib/net461/System.Formats.Asn1.xml",
- "lib/netstandard2.0/System.Formats.Asn1.dll",
- "lib/netstandard2.0/System.Formats.Asn1.xml",
- "system.formats.asn1.5.0.0.nupkg.sha512",
- "system.formats.asn1.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "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.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.Pipelines/6.0.3": {
- "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
- "type": "package",
- "path": "system.io.pipelines/6.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.IO.Pipelines.dll",
- "lib/net461/System.IO.Pipelines.xml",
- "lib/net6.0/System.IO.Pipelines.dll",
- "lib/net6.0/System.IO.Pipelines.xml",
- "lib/netcoreapp3.1/System.IO.Pipelines.dll",
- "lib/netcoreapp3.1/System.IO.Pipelines.xml",
- "lib/netstandard2.0/System.IO.Pipelines.dll",
- "lib/netstandard2.0/System.IO.Pipelines.xml",
- "system.io.pipelines.6.0.3.nupkg.sha512",
- "system.io.pipelines.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.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.Metadata/6.0.1": {
- "sha512": "III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
- "type": "package",
- "path": "system.reflection.metadata/6.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Reflection.Metadata.dll",
- "lib/net461/System.Reflection.Metadata.xml",
- "lib/net6.0/System.Reflection.Metadata.dll",
- "lib/net6.0/System.Reflection.Metadata.xml",
- "lib/netstandard2.0/System.Reflection.Metadata.dll",
- "lib/netstandard2.0/System.Reflection.Metadata.xml",
- "system.reflection.metadata.6.0.1.nupkg.sha512",
- "system.reflection.metadata.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "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/6.0.0": {
- "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
- "type": "package",
- "path": "system.runtime.caching/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/_._",
- "lib/net6.0/System.Runtime.Caching.dll",
- "lib/net6.0/System.Runtime.Caching.xml",
- "lib/netcoreapp3.1/System.Runtime.Caching.dll",
- "lib/netcoreapp3.1/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/net461/_._",
- "runtimes/win/lib/net6.0/System.Runtime.Caching.dll",
- "runtimes/win/lib/net6.0/System.Runtime.Caching.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml",
- "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
- "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
- "system.runtime.caching.6.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.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/5.0.0": {
- "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
- "type": "package",
- "path": "system.security.cryptography.cng/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "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/net461/System.Security.Cryptography.Cng.xml",
- "lib/net462/System.Security.Cryptography.Cng.dll",
- "lib/net462/System.Security.Cryptography.Cng.xml",
- "lib/net47/System.Security.Cryptography.Cng.dll",
- "lib/net47/System.Security.Cryptography.Cng.xml",
- "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
- "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
- "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
- "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/netstandard2.0/System.Security.Cryptography.Cng.xml",
- "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
- "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
- "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/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
- "ref/netcoreapp3.0/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/netstandard2.1/System.Security.Cryptography.Cng.dll",
- "ref/netstandard2.1/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/net461/System.Security.Cryptography.Cng.xml",
- "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
- "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
- "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
- "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.5.0.0.nupkg.sha512",
- "system.security.cryptography.cng.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Security.Cryptography.ProtectedData/6.0.0": {
- "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
- "type": "package",
- "path": "system.security.cryptography.protecteddata/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Security.Cryptography.ProtectedData.dll",
- "lib/net461/System.Security.Cryptography.ProtectedData.xml",
- "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
- "lib/net6.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/_._",
- "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
- "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
- "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
- "system.security.cryptography.protecteddata.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Security.Permissions/6.0.0": {
- "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
- "type": "package",
- "path": "system.security.permissions/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Security.Permissions.dll",
- "lib/net461/System.Security.Permissions.xml",
- "lib/net5.0/System.Security.Permissions.dll",
- "lib/net5.0/System.Security.Permissions.xml",
- "lib/net6.0/System.Security.Permissions.dll",
- "lib/net6.0/System.Security.Permissions.xml",
- "lib/netcoreapp3.1/System.Security.Permissions.dll",
- "lib/netcoreapp3.1/System.Security.Permissions.xml",
- "lib/netstandard2.0/System.Security.Permissions.dll",
- "lib/netstandard2.0/System.Security.Permissions.xml",
- "runtimes/win/lib/net461/System.Security.Permissions.dll",
- "runtimes/win/lib/net461/System.Security.Permissions.xml",
- "system.security.permissions.6.0.0.nupkg.sha512",
- "system.security.permissions.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.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/6.0.0": {
- "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
- "type": "package",
- "path": "system.text.encoding.codepages/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Text.Encoding.CodePages.dll",
- "lib/net461/System.Text.Encoding.CodePages.xml",
- "lib/net6.0/System.Text.Encoding.CodePages.dll",
- "lib/net6.0/System.Text.Encoding.CodePages.xml",
- "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
- "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
- "system.text.encoding.codepages.6.0.0.nupkg.sha512",
- "system.text.encoding.codepages.nuspec",
- "useSharedDesignerContext.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/4.7.2": {
- "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
- "type": "package",
- "path": "system.text.json/4.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Text.Json.dll",
- "lib/net461/System.Text.Json.xml",
- "lib/netcoreapp3.0/System.Text.Json.dll",
- "lib/netcoreapp3.0/System.Text.Json.xml",
- "lib/netstandard2.0/System.Text.Json.dll",
- "lib/netstandard2.0/System.Text.Json.xml",
- "system.text.json.4.7.2.nupkg.sha512",
- "system.text.json.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Threading.Channels/6.0.0": {
- "sha512": "TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==",
- "type": "package",
- "path": "system.threading.channels/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Threading.Channels.dll",
- "lib/net461/System.Threading.Channels.xml",
- "lib/net6.0/System.Threading.Channels.dll",
- "lib/net6.0/System.Threading.Channels.xml",
- "lib/netcoreapp3.1/System.Threading.Channels.dll",
- "lib/netcoreapp3.1/System.Threading.Channels.xml",
- "lib/netstandard2.0/System.Threading.Channels.dll",
- "lib/netstandard2.0/System.Threading.Channels.xml",
- "lib/netstandard2.1/System.Threading.Channels.dll",
- "lib/netstandard2.1/System.Threading.Channels.xml",
- "system.threading.channels.6.0.0.nupkg.sha512",
- "system.threading.channels.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "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.Windows.Extensions/6.0.0": {
- "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
- "type": "package",
- "path": "system.windows.extensions/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net6.0/System.Windows.Extensions.dll",
- "lib/net6.0/System.Windows.Extensions.xml",
- "lib/netcoreapp3.1/System.Windows.Extensions.dll",
- "lib/netcoreapp3.1/System.Windows.Extensions.xml",
- "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
- "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
- "system.windows.extensions.6.0.0.nupkg.sha512",
- "system.windows.extensions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Domain/1.0.0": {
- "type": "project",
- "path": "../Domain/Domain.csproj",
- "msbuildProject": "../Domain/Domain.csproj"
- }
- },
- "projectFileDependencyGroups": {
- "net8.0": [
- "Domain >= 1.0.0",
- "Microsoft.EntityFrameworkCore.Design >= 8.0.10",
- "Microsoft.EntityFrameworkCore.SqlServer >= 8.0.10"
- ]
- },
- "packageFolders": {
- "C:\\Users\\maski\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj",
- "projectName": "Models",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.EntityFrameworkCore.SqlServer": {
- "target": "Package",
- "version": "[8.0.10, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Services/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Services/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index 2217181..0000000
--- a/Services/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/Services/obj/Debug/net8.0/Services.GlobalUsings.g.cs b/Services/obj/Debug/net8.0/Services.GlobalUsings.g.cs
deleted file mode 100644
index 8578f3d..0000000
--- a/Services/obj/Debug/net8.0/Services.GlobalUsings.g.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-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/Services/obj/Services.csproj.nuget.dgspec.json b/Services/obj/Services.csproj.nuget.dgspec.json
deleted file mode 100644
index 510a44e..0000000
--- a/Services/obj/Services.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,88 +0,0 @@
-{
- "format": 1,
- "restore": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj": {}
- },
- "projects": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj",
- "projectName": "Services",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "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"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "EPPlus": {
- "target": "Package",
- "version": "[7.5.2, )"
- },
- "MimeKit": {
- "target": "Package",
- "version": "[4.8.0, )"
- },
- "NETCore.MailKit": {
- "target": "Package",
- "version": "[2.1.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\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Services/obj/Services.csproj.nuget.g.props b/Services/obj/Services.csproj.nuget.g.props
deleted file mode 100644
index ca369a5..0000000
--- a/Services/obj/Services.csproj.nuget.g.props
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\maski\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
- PackageReference
- 6.14.1
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Services/obj/Services.csproj.nuget.g.targets b/Services/obj/Services.csproj.nuget.g.targets
deleted file mode 100644
index 3dc06ef..0000000
--- a/Services/obj/Services.csproj.nuget.g.targets
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/Services/obj/project.assets.json b/Services/obj/project.assets.json
deleted file mode 100644
index da9cc45..0000000
--- a/Services/obj/project.assets.json
+++ /dev/null
@@ -1,1325 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net8.0": {
- "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"
- }
- }
- },
- "EPPlus/7.5.2": {
- "type": "package",
- "dependencies": {
- "EPPlus.System.Drawing": "7.5.0",
- "Microsoft.Extensions.Configuration.Json": "8.0.1",
- "Microsoft.IO.RecyclableMemoryStream": "3.0.1",
- "System.ComponentModel.Annotations": "5.0.0",
- "System.Security.Cryptography.Pkcs": "8.0.1",
- "System.Text.Encoding.CodePages": "8.0.0"
- },
- "compile": {
- "lib/net8.0/EPPlus.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/EPPlus.dll": {
- "related": ".xml"
- }
- }
- },
- "EPPlus.Interfaces/7.5.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/EPPlus.Interfaces.dll": {}
- },
- "runtime": {
- "lib/net8.0/EPPlus.Interfaces.dll": {}
- }
- },
- "EPPlus.System.Drawing/7.5.0": {
- "type": "package",
- "dependencies": {
- "EPPlus.Interfaces": "7.5.0",
- "System.Drawing.Common": "8.0.4"
- },
- "compile": {
- "lib/net8.0/EPPlus.System.Drawing.dll": {}
- },
- "runtime": {
- "lib/net8.0/EPPlus.System.Drawing.dll": {}
- }
- },
- "MailKit/3.2.0": {
- "type": "package",
- "dependencies": {
- "MimeKit": "3.2.0"
- },
- "compile": {
- "lib/net6.0/MailKit.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/MailKit.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "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.Configuration.FileExtensions/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "8.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Json/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "8.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/6.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "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.IO.RecyclableMemoryStream/3.0.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Win32.SystemEvents/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.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"
- }
- }
- },
- "NETCore.MailKit/2.1.0": {
- "type": "package",
- "dependencies": {
- "MailKit": "3.2.0",
- "Microsoft.Extensions.DependencyInjection": "6.0.0"
- },
- "compile": {
- "lib/netstandard2.1/NETCore.MailKit.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/NETCore.MailKit.dll": {}
- }
- },
- "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.Drawing.Common/8.0.4": {
- "type": "package",
- "dependencies": {
- "Microsoft.Win32.SystemEvents": "8.0.0"
- },
- "compile": {
- "lib/net8.0/System.Drawing.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.Drawing.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "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.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.Security.Cryptography.Pkcs/8.0.1": {
- "type": "package",
- "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.Text.Encoding.CodePages/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- }
- }
- },
- "libraries": {
- "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"
- ]
- },
- "EPPlus/7.5.2": {
- "sha512": "qHJurPvgWoheHyyam53NV8d2CiOO2q88Rg/Lk0wSYwi/aoGDtzYihTMCHeTwGM9zHZnnI3aVLu482SODN+HB4g==",
- "type": "package",
- "path": "epplus/7.5.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EPPlusLogo.png",
- "epplus.7.5.2.nupkg.sha512",
- "epplus.nuspec",
- "lib/net35/EPPlus.dll",
- "lib/net35/EPPlus.xml",
- "lib/net462/EPPlus.dll",
- "lib/net462/EPPlus.xml",
- "lib/net6.0/EPPlus.dll",
- "lib/net6.0/EPPlus.xml",
- "lib/net7.0/EPPlus.dll",
- "lib/net7.0/EPPlus.xml",
- "lib/net8.0/EPPlus.dll",
- "lib/net8.0/EPPlus.xml",
- "lib/netstandard2.0/EPPlus.dll",
- "lib/netstandard2.0/EPPlus.xml",
- "lib/netstandard2.1/EPPlus.dll",
- "lib/netstandard2.1/EPPlus.xml",
- "license.md",
- "readme.md",
- "readme.txt"
- ]
- },
- "EPPlus.Interfaces/7.5.0": {
- "sha512": "mGLKgdIKkXRYIu+HIGmZUngVAAlPzIQgI/KqG10m6P5P2112l6p/5dDa35UHu4GV4Qevw0Pq9PxAymrrrl4tzA==",
- "type": "package",
- "path": "epplus.interfaces/7.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EPPlusLogo.png",
- "epplus.interfaces.7.5.0.nupkg.sha512",
- "epplus.interfaces.nuspec",
- "lib/net35/EPPlus.Interfaces.dll",
- "lib/net462/EPPlus.Interfaces.dll",
- "lib/net6.0/EPPlus.Interfaces.dll",
- "lib/net7.0/EPPlus.Interfaces.dll",
- "lib/net8.0/EPPlus.Interfaces.dll",
- "lib/netstandard2.0/EPPlus.Interfaces.dll",
- "lib/netstandard2.1/EPPlus.Interfaces.dll",
- "license.md",
- "readme.md"
- ]
- },
- "EPPlus.System.Drawing/7.5.0": {
- "sha512": "cgwstM12foFisisURUyxwJOWHMD/rZxPSyBXFsCOFayaKq0oKlOs1mCTueKNNIlpPDG1no9vcaQiJgZXFM4KPA==",
- "type": "package",
- "path": "epplus.system.drawing/7.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EPPlusLogo.png",
- "epplus.system.drawing.7.5.0.nupkg.sha512",
- "epplus.system.drawing.nuspec",
- "lib/net35/EPPlus.System.Drawing.dll",
- "lib/net462/EPPlus.System.Drawing.dll",
- "lib/net6.0/EPPlus.System.Drawing.dll",
- "lib/net7.0/EPPlus.System.Drawing.dll",
- "lib/net8.0/EPPlus.System.Drawing.dll",
- "lib/netstandard2.0/EPPlus.System.Drawing.dll",
- "lib/netstandard2.1/EPPlus.System.Drawing.dll",
- "license.md",
- "readme.md"
- ]
- },
- "MailKit/3.2.0": {
- "sha512": "5MTpTqmjqT7HPvYbP3HozRZMth5vSaT0ReN0iM3rAM4CgLI/R1qqtLDDNWGnFFIlcNzeJkZQRJJMkv8cgzWBbA==",
- "type": "package",
- "path": "mailkit/3.2.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "icons/mailkit-50.png",
- "lib/net452/MailKit.dll",
- "lib/net452/MailKit.pdb",
- "lib/net452/MailKit.xml",
- "lib/net461/MailKit.dll",
- "lib/net461/MailKit.pdb",
- "lib/net461/MailKit.xml",
- "lib/net47/MailKit.dll",
- "lib/net47/MailKit.pdb",
- "lib/net47/MailKit.xml",
- "lib/net48/MailKit.dll",
- "lib/net48/MailKit.pdb",
- "lib/net48/MailKit.xml",
- "lib/net5.0/MailKit.dll",
- "lib/net5.0/MailKit.pdb",
- "lib/net5.0/MailKit.xml",
- "lib/net6.0/MailKit.dll",
- "lib/net6.0/MailKit.pdb",
- "lib/net6.0/MailKit.xml",
- "lib/netstandard2.0/MailKit.dll",
- "lib/netstandard2.0/MailKit.pdb",
- "lib/netstandard2.0/MailKit.xml",
- "lib/netstandard2.1/MailKit.dll",
- "lib/netstandard2.1/MailKit.pdb",
- "lib/netstandard2.1/MailKit.xml",
- "mailkit.3.2.0.nupkg.sha512",
- "mailkit.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration/8.0.0": {
- "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
- "type": "package",
- "path": "microsoft.extensions.configuration/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets",
- "lib/net462/Microsoft.Extensions.Configuration.dll",
- "lib/net462/Microsoft.Extensions.Configuration.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
- "microsoft.extensions.configuration.8.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "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.Configuration.FileExtensions/8.0.1": {
- "sha512": "EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==",
- "type": "package",
- "path": "microsoft.extensions.configuration.fileextensions/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets",
- "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "microsoft.extensions.configuration.fileextensions.8.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.fileextensions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Configuration.Json/8.0.1": {
- "sha512": "L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==",
- "type": "package",
- "path": "microsoft.extensions.configuration.json/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets",
- "lib/net462/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net462/Microsoft.Extensions.Configuration.Json.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
- "microsoft.extensions.configuration.json.8.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.json.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection/6.0.0": {
- "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net6.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.6.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
- "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net6.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.6.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
- "type": "package",
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/net8.0/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.8.0.0.nupkg.sha512",
- "microsoft.extensions.fileproviders.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
- "sha512": "UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==",
- "type": "package",
- "path": "microsoft.extensions.fileproviders.physical/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
- "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
- "microsoft.extensions.fileproviders.physical.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
- "sha512": "OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==",
- "type": "package",
- "path": "microsoft.extensions.filesystemglobbing/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
- "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
- "microsoft.extensions.filesystemglobbing.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.IO.RecyclableMemoryStream/3.0.1": {
- "sha512": "s/s20YTVY9r9TPfTrN5g8zPF1YhwxyqO6PxUkrYTGI2B+OGPe9AdajWZrLhFqXIvqIW23fnUE4+ztrUWNU1+9g==",
- "type": "package",
- "path": "microsoft.io.recyclablememorystream/3.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll",
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.xml",
- "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll",
- "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml",
- "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll",
- "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml",
- "microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512",
- "microsoft.io.recyclablememorystream.nuspec"
- ]
- },
- "Microsoft.Win32.SystemEvents/8.0.0": {
- "sha512": "9opKRyOKMCi2xJ7Bj7kxtZ1r9vbzosMvRrdEhVhDz8j8MoBGgB+WmC94yH839NPH+BclAjtQ/pyagvi/8gDLkw==",
- "type": "package",
- "path": "microsoft.win32.systemevents/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
- "lib/net462/Microsoft.Win32.SystemEvents.dll",
- "lib/net462/Microsoft.Win32.SystemEvents.xml",
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
- "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
- "lib/net7.0/Microsoft.Win32.SystemEvents.dll",
- "lib/net7.0/Microsoft.Win32.SystemEvents.xml",
- "lib/net8.0/Microsoft.Win32.SystemEvents.dll",
- "lib/net8.0/Microsoft.Win32.SystemEvents.xml",
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
- "microsoft.win32.systemevents.8.0.0.nupkg.sha512",
- "microsoft.win32.systemevents.nuspec",
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
- "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml",
- "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.xml",
- "useSharedDesignerContext.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"
- ]
- },
- "NETCore.MailKit/2.1.0": {
- "sha512": "+1C0sg4YJQczp/2RVrVbKLIntg7Mou7Ie5M01UBiAsxmIarjfBRlCgKK4sEbPyGask52VRKV29/Zi+41B6LPXA==",
- "type": "package",
- "path": "netcore.mailkit/2.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.1/NETCore.MailKit.dll",
- "netcore.mailkit.2.1.0.nupkg.sha512",
- "netcore.mailkit.nuspec"
- ]
- },
- "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.Drawing.Common/8.0.4": {
- "sha512": "3G4xpa8mUYGzEF0HlswlBArAFywHJIzsZoB5hU4yMlnYHaabj/lg019BwbyyYBxj0aoM7Cz+jdlgUemeno9LOQ==",
- "type": "package",
- "path": "system.drawing.common/8.0.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Drawing.Common.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net462/System.Drawing.Common.dll",
- "lib/net462/System.Drawing.Common.pdb",
- "lib/net462/System.Drawing.Common.xml",
- "lib/net6.0/System.Drawing.Common.dll",
- "lib/net6.0/System.Drawing.Common.pdb",
- "lib/net6.0/System.Drawing.Common.xml",
- "lib/net7.0/System.Drawing.Common.dll",
- "lib/net7.0/System.Drawing.Common.pdb",
- "lib/net7.0/System.Drawing.Common.xml",
- "lib/net8.0/System.Drawing.Common.dll",
- "lib/net8.0/System.Drawing.Common.pdb",
- "lib/net8.0/System.Drawing.Common.xml",
- "lib/netstandard2.0/System.Drawing.Common.dll",
- "lib/netstandard2.0/System.Drawing.Common.pdb",
- "lib/netstandard2.0/System.Drawing.Common.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "system.drawing.common.8.0.4.nupkg.sha512",
- "system.drawing.common.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "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.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.Security.Cryptography.Pkcs/8.0.1": {
- "sha512": "CoCRHFym33aUSf/NtWSVSZa99dkd0Hm7OCZUxORBjRB16LNhIEOf8THPqzIYlvKM0nNDAPTRBa1FxEECrgaxxA==",
- "type": "package",
- "path": "system.security.cryptography.pkcs/8.0.1",
- "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.1.nupkg.sha512",
- "system.security.cryptography.pkcs.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Text.Encoding.CodePages/8.0.0": {
- "sha512": "OZIsVplFGaVY90G2SbpgU7EnCoOO5pw1t4ic21dBF3/1omrJFpAGoNAVpPyMVOC90/hvgkGG3VFqR13YgZMQfg==",
- "type": "package",
- "path": "system.text.encoding.codepages/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Text.Encoding.CodePages.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net462/System.Text.Encoding.CodePages.dll",
- "lib/net462/System.Text.Encoding.CodePages.xml",
- "lib/net6.0/System.Text.Encoding.CodePages.dll",
- "lib/net6.0/System.Text.Encoding.CodePages.xml",
- "lib/net7.0/System.Text.Encoding.CodePages.dll",
- "lib/net7.0/System.Text.Encoding.CodePages.xml",
- "lib/net8.0/System.Text.Encoding.CodePages.dll",
- "lib/net8.0/System.Text.Encoding.CodePages.xml",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.xml",
- "system.text.encoding.codepages.8.0.0.nupkg.sha512",
- "system.text.encoding.codepages.nuspec",
- "useSharedDesignerContext.txt"
- ]
- }
- },
- "projectFileDependencyGroups": {
- "net8.0": [
- "EPPlus >= 7.5.2",
- "MimeKit >= 4.8.0",
- "NETCore.MailKit >= 2.1.0"
- ]
- },
- "packageFolders": {
- "C:\\Users\\maski\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj",
- "projectName": "Services",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "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"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "EPPlus": {
- "target": "Package",
- "version": "[7.5.2, )"
- },
- "MimeKit": {
- "target": "Package",
- "version": "[4.8.0, )"
- },
- "NETCore.MailKit": {
- "target": "Package",
- "version": "[2.1.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\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Transversal/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Transversal/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index 2217181..0000000
--- a/Transversal/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/Transversal/obj/Debug/net8.0/Transversal.GlobalUsings.g.cs b/Transversal/obj/Debug/net8.0/Transversal.GlobalUsings.g.cs
deleted file mode 100644
index 8578f3d..0000000
--- a/Transversal/obj/Debug/net8.0/Transversal.GlobalUsings.g.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-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/Transversal/obj/Transversal.csproj.nuget.g.props b/Transversal/obj/Transversal.csproj.nuget.g.props
deleted file mode 100644
index f7a31ae..0000000
--- a/Transversal/obj/Transversal.csproj.nuget.g.props
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\maski\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
- PackageReference
- 6.14.1
-
-
-
-
-
-
- C:\Users\maski\.nuget\packages\newtonsoft.json\10.0.3
-
-
\ No newline at end of file
diff --git a/Transversal/obj/Transversal.csproj.nuget.g.targets b/Transversal/obj/Transversal.csproj.nuget.g.targets
deleted file mode 100644
index 3dc06ef..0000000
--- a/Transversal/obj/Transversal.csproj.nuget.g.targets
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/phronCare.API/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/phronCare.API/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index 2217181..0000000
--- a/phronCare.API/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/phronCare.API/obj/Debug/net8.0/ApiEndpoints.json b/phronCare.API/obj/Debug/net8.0/ApiEndpoints.json
deleted file mode 100644
index 063e378..0000000
--- a/phronCare.API/obj/Debug/net8.0/ApiEndpoints.json
+++ /dev/null
@@ -1,2653 +0,0 @@
-[
- {
- "ContainingType": "phronCare.API.Controllers.AccountController",
- "Method": "CreateRole",
- "RelativePath": "api/Account/CreateRole",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "model",
- "Type": "phronCare.API.Models.Account.Role",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AccountController",
- "Method": "DeleteRole",
- "RelativePath": "api/Account/DeleteRole/{roleId}",
- "HttpMethod": "DELETE",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "roleId",
- "Type": "System.String",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AccountController",
- "Method": "DeleteUser",
- "RelativePath": "api/Account/DeleteUser/{userId}",
- "HttpMethod": "DELETE",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "userId",
- "Type": "System.String",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AccountController",
- "Method": "GetAllRoles",
- "RelativePath": "api/Account/GetAllRoles",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AccountController",
- "Method": "GetAllUsers",
- "RelativePath": "api/Account/GetAllUsers",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AccountController",
- "Method": "GetRoleById",
- "RelativePath": "api/Account/GetRoleById/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.String",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AccountController",
- "Method": "GetUserById",
- "RelativePath": "api/Account/GetUserById/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.String",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AccountController",
- "Method": "UpdateRole",
- "RelativePath": "api/Account/UpdateRole/{id}",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.String",
- "IsRequired": true
- },
- {
- "Name": "model",
- "Type": "phronCare.API.Models.Account.Role",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AccountController",
- "Method": "UpdateUser",
- "RelativePath": "api/Account/UpdateUser/{id}",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.String",
- "IsRequired": true
- },
- {
- "Name": "model",
- "Type": "phronCare.API.Models.Account.UserUpdate",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.AccountTypeController",
- "Method": "GetAll",
- "RelativePath": "api/AccountType/GetAll",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.AccountTypeController",
- "Method": "GetByName",
- "RelativePath": "api/AccountType/GetByName/{name}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "name",
- "Type": "System.String",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.AdjustmentReasonController",
- "Method": "GetAll",
- "RelativePath": "api/AdjustmentReason/GetAll",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AuthenticationController",
- "Method": "ConfirmEmail",
- "RelativePath": "api/Authentication/confirmemail",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "token",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "email",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AuthenticationController",
- "Method": "ForgotPassword",
- "RelativePath": "api/Authentication/forgot-password",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "email",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AuthenticationController",
- "Method": "GenerateQRCodeAsync",
- "RelativePath": "api/Authentication/generate-qr-code",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AuthenticationController",
- "Method": "Login",
- "RelativePath": "api/Authentication/login",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "loginModel",
- "Type": "phronCare.API.Models.Authentication.Login.LoginModel",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AuthenticationController",
- "Method": "LoginWithOTP",
- "RelativePath": "api/Authentication/login-2FA",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "code",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "username",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AuthenticationController",
- "Method": "Register",
- "RelativePath": "api/Authentication/register",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "registerUser",
- "Type": "phronCare.API.Models.Authentication.SingUp.RegisterUser",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AuthenticationController",
- "Method": "ResetPassword",
- "RelativePath": "api/Authentication/reset-password",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "token",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "email",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.AuthenticationController",
- "Method": "ResetPassword",
- "RelativePath": "api/Authentication/reset-password",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "resetPassword",
- "Type": "phronCare.API.Models.Authentication.SingUp.ResetPassword",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.BusinessUnitController",
- "Method": "GetById",
- "RelativePath": "api/BusinessUnit/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Entities.EBusinessUnit",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.BusinessUnitController",
- "Method": "Delete",
- "RelativePath": "api/BusinessUnit/{id}",
- "HttpMethod": "DELETE",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.BusinessUnitController",
- "Method": "GetAll",
- "RelativePath": "api/BusinessUnit/all",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.BusinessUnitController",
- "Method": "Create",
- "RelativePath": "api/BusinessUnit/create",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "unit",
- "Type": "Domain.Entities.EBusinessUnit",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.BusinessUnitController",
- "Method": "Search",
- "RelativePath": "api/BusinessUnit/search",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "term",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.BusinessUnitController",
- "Method": "Update",
- "RelativePath": "api/BusinessUnit/update",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "unit",
- "Type": "Domain.Entities.EBusinessUnit",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.CustomerController",
- "Method": "GetById",
- "RelativePath": "api/Customer/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Entities.ECustomer",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.CustomerController",
- "Method": "GetAll",
- "RelativePath": "api/Customer/all",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.CustomerController",
- "Method": "Create",
- "RelativePath": "api/Customer/create",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "customer",
- "Type": "Domain.Entities.ECustomer",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.CustomerController",
- "Method": "ExportFiltered",
- "RelativePath": "api/Customer/exportfiltered",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "searchParams",
- "Type": "Domain.Generics.CustomerSearchParams",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.CustomerController",
- "Method": "Search",
- "RelativePath": "api/Customer/search",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "name",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "email",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "document",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.CustomerController",
- "Method": "Update",
- "RelativePath": "api/Customer/update",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "customer",
- "Type": "Domain.Entities.ECustomer",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.DocumentTestController",
- "Method": "TestQuote",
- "RelativePath": "api/DocumentTest/test-quote",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.DocumentTypeController",
- "Method": "GetAll",
- "RelativePath": "api/DocumentType/GetAll",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.DocumentTypeController",
- "Method": "GetByName",
- "RelativePath": "api/DocumentType/GetByName/{name}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "name",
- "Type": "System.String",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Integrations.ExchangeRateController",
- "Method": "GetByDateAsync",
- "RelativePath": "api/ExchangeRate/{date}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "date",
- "Type": "System.DateTime",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Entities.EExchangeRateHistory",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Integrations.ExchangeRateController",
- "Method": "GetYesterdayAsync",
- "RelativePath": "api/ExchangeRate/yesterday",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": [
- {
- "Type": "Domain.Entities.EExchangeRateHistory",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.ExpeditionController",
- "Method": "GetById",
- "RelativePath": "api/Expedition/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Dtos.Stock.ExpeditionDto",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- },
- {
- "Type": "Microsoft.AspNetCore.Mvc.ProblemDetails",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 404
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.ExpeditionController",
- "Method": "GetQuotePdf",
- "RelativePath": "api/Expedition/{id}/pdf",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.ExpeditionController",
- "Method": "CreateFullExpedition",
- "RelativePath": "api/Expedition/createfull",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "request",
- "Type": "phronCare.API.Controllers.Stock.CreateFullExpeditionRequest",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.ExpeditionController",
- "Method": "ExportFiltered",
- "RelativePath": "api/Expedition/exportfiltered",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "searchParams",
- "Type": "Domain.Generics.ExpeditionSearchParams",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.ExpeditionController",
- "Method": "Search",
- "RelativePath": "api/Expedition/search",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "expeditionNumber",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "status",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "issueDateFrom",
- "Type": "System.Nullable\u00601[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "IsRequired": false
- },
- {
- "Name": "issueDateTo",
- "Type": "System.Nullable\u00601[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "IsRequired": false
- },
- {
- "Name": "locationId",
- "Type": "System.Nullable\u00601[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "IsRequired": false
- },
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Generics.PagedResult\u00601[[Domain.Dtos.Stock.ExpeditionDto, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.ExpeditionController",
- "Method": "GetByNumber",
- "RelativePath": "api/Expedition/summary/{expeditionNumber}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "expeditionNumber",
- "Type": "System.String",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Dtos.Stock.ExpeditionDto",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- },
- {
- "Type": "Microsoft.AspNetCore.Mvc.ProblemDetails",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 404
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.InstitutionController",
- "Method": "GetById",
- "RelativePath": "api/Institution/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Entities.EInstitution",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.InstitutionController",
- "Method": "GetAll",
- "RelativePath": "api/Institution/all",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.InstitutionController",
- "Method": "Create",
- "RelativePath": "api/Institution/create",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "institution",
- "Type": "Domain.Entities.EInstitution",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.InstitutionController",
- "Method": "ExportFiltered",
- "RelativePath": "api/Institution/exportfiltered",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "searchParams",
- "Type": "Domain.Generics.InstitutionSearchParams",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.InstitutionController",
- "Method": "Search",
- "RelativePath": "api/Institution/search",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "name",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "type",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "province",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.InstitutionController",
- "Method": "Update",
- "RelativePath": "api/Institution/update",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "institution",
- "Type": "Domain.Entities.EInstitution",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.LookUpController",
- "Method": "ApprovedQuotes",
- "RelativePath": "api/LookUp/approvedquotes",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "q",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[Domain.Entities.ELookUpItem, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.LookUpController",
- "Method": "BussinessUnits",
- "RelativePath": "api/LookUp/bussinessunits",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "q",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[Domain.Entities.ELookUpItem, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.LookUpController",
- "Method": "Customers",
- "RelativePath": "api/LookUp/customers",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "q",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[Domain.Entities.ELookUpItem, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.LookUpController",
- "Method": "Institutions",
- "RelativePath": "api/LookUp/institutions",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "q",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[Domain.Entities.ELookUpItem, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.LookUpController",
- "Method": "Patients",
- "RelativePath": "api/LookUp/patients",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "q",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[Domain.Entities.ELookUpItem, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.LookUpController",
- "Method": "PaymentTerms",
- "RelativePath": "api/LookUp/paymentterms",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[Domain.Entities.ELookUpItem, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.LookUpController",
- "Method": "People",
- "RelativePath": "api/LookUp/people",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "q",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[Domain.Entities.ELookUpItem, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.LookUpController",
- "Method": "Products",
- "RelativePath": "api/LookUp/products",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "q",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[Domain.Entities.EProductLookupItem, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.LookUpController",
- "Method": "Professionals",
- "RelativePath": "api/LookUp/professionals",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "q",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[Domain.Entities.ELookUpItem, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.LSMLookUpController",
- "Method": "ProductDivisions",
- "RelativePath": "api/LSMLookUp/productdivisions",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "q",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[Domain.Entities.ELookUpItem, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.LSMLookUpController",
- "Method": "Units",
- "RelativePath": "api/LSMLookUp/units",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "q",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[Domain.Entities.ELookUpItem, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "API.Controllers.Stock.LSProductController",
- "Method": "GetById",
- "RelativePath": "api/LSProduct/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Entities.ELSProduct",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "API.Controllers.Stock.LSProductController",
- "Method": "Delete",
- "RelativePath": "api/LSProduct/{id}",
- "HttpMethod": "DELETE",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "API.Controllers.Stock.LSProductController",
- "Method": "Create",
- "RelativePath": "api/LSProduct/create",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "model",
- "Type": "Domain.Entities.ELSProduct",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Entities.ELSProduct",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "API.Controllers.Stock.LSProductController",
- "Method": "DownloadImportTemplate",
- "RelativePath": "api/LSProduct/download-template",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "API.Controllers.Stock.LSProductController",
- "Method": "ExportFiltered",
- "RelativePath": "api/LSProduct/exportfiltered",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "searchParams",
- "Type": "Domain.Generics.LSProductSearchParams",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "API.Controllers.Stock.LSProductController",
- "Method": "ImportProducts",
- "RelativePath": "api/LSProduct/import",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "items",
- "Type": "System.Collections.Generic.List\u00601[[Domain.Dtos.Stock.ProductImportPreviewDto, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Dtos.Stock.ProductImportResultDto",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "API.Controllers.Stock.LSProductController",
- "Method": "PreviewImport",
- "RelativePath": "api/LSProduct/preview-import",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "File",
- "Type": "Microsoft.AspNetCore.Http.IFormFile",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.List\u00601[[Domain.Dtos.Stock.ProductImportPreviewDto, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "API.Controllers.Stock.LSProductController",
- "Method": "Search",
- "RelativePath": "api/LSProduct/search",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "searchParams",
- "Type": "Domain.Generics.LSProductSearchParams",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Generics.PagedResult\u00601[[Domain.Entities.ELSProduct, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "API.Controllers.Stock.LSProductController",
- "Method": "Update",
- "RelativePath": "api/LSProduct/update",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "model",
- "Type": "Domain.Entities.ELSProduct",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "API.Controllers.Stock.LSStockScanController",
- "Method": "ParseAndSearch",
- "RelativePath": "api/LSStockScan/parse-and-search",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "req",
- "Type": "Domain.Dtos.Stock.StockScanRawRequest",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Generics.PagedResult\u00601[[Domain.Dtos.Stock.StockItemScanResultDto, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "API.Controllers.Stock.LSStockScanController",
- "Method": "Search",
- "RelativePath": "api/LSStockScan/search",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "searchParams",
- "Type": "Domain.Generics.StockItemSearchParams",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Generics.PagedResult\u00601[[Domain.Dtos.Stock.StockItemScanResultDto, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "API.Controllers.Stock.LSStockScanController",
- "Method": "SearchParsed",
- "RelativePath": "api/LSStockScan/search-parsed",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "searchParams",
- "Type": "Domain.Generics.StockItemParsedSearchParams",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Generics.PagedResult\u00601[[Domain.Dtos.Stock.StockItemScanResultDto, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.LSUnitOfMeasureController",
- "Method": "Create",
- "RelativePath": "api/LSUnitOfMeasure/Create",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "model",
- "Type": "Domain.Entities.ELSUnitOfMeasure",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.LSUnitOfMeasureController",
- "Method": "GetById",
- "RelativePath": "api/LSUnitOfMeasure/GetById/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.LSUnitOfMeasureController",
- "Method": "Search",
- "RelativePath": "api/LSUnitOfMeasure/Search",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "term",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.LSUnitOfMeasureController",
- "Method": "Update",
- "RelativePath": "api/LSUnitOfMeasure/Update",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "model",
- "Type": "Domain.Entities.ELSUnitOfMeasure",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PatientController",
- "Method": "GetById",
- "RelativePath": "api/Patient/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Entities.EPatient",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PatientController",
- "Method": "GetAll",
- "RelativePath": "api/Patient/all",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PatientController",
- "Method": "Create",
- "RelativePath": "api/Patient/create",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "patient",
- "Type": "Domain.Entities.EPatient",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PatientController",
- "Method": "ExportFiltered",
- "RelativePath": "api/Patient/exportfiltered",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "searchParams",
- "Type": "Domain.SearchParams.PatientSearchParams",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PatientController",
- "Method": "Search",
- "RelativePath": "api/Patient/search",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "name",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "document",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PatientController",
- "Method": "Update",
- "RelativePath": "api/Patient/update",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "patient",
- "Type": "Domain.Entities.EPatient",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.PdfTestController",
- "Method": "GetTestPdf",
- "RelativePath": "api/PdfTest/test",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PeopleController",
- "Method": "GetById",
- "RelativePath": "api/People/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PeopleController",
- "Method": "GetAll",
- "RelativePath": "api/People/all",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PeopleController",
- "Method": "Create",
- "RelativePath": "api/People/create",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "person",
- "Type": "Domain.Entities.EPerson",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PeopleController",
- "Method": "Delete",
- "RelativePath": "api/People/delete/{id}",
- "HttpMethod": "DELETE",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PeopleController",
- "Method": "ExportFilteredPeople",
- "RelativePath": "api/People/exportfiltered",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "searchParams",
- "Type": "Domain.Generics.PeopleSearchParams",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PeopleController",
- "Method": "SearchAsync",
- "RelativePath": "api/People/search",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "name",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "email",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.PeopleController",
- "Method": "Update",
- "RelativePath": "api/People/update",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "person",
- "Type": "Domain.Entities.EPerson",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProductController",
- "Method": "GetById",
- "RelativePath": "api/Product/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Entities.EProduct",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProductController",
- "Method": "GetAll",
- "RelativePath": "api/Product/all",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProductController",
- "Method": "Create",
- "RelativePath": "api/Product/create",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "product",
- "Type": "Domain.Entities.EProduct",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProductController",
- "Method": "ExportFiltered",
- "RelativePath": "api/Product/exportfiltered",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "searchParams",
- "Type": "Domain.Generics.ProductSearchParams",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProductController",
- "Method": "Search",
- "RelativePath": "api/Product/search",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "term",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProductController",
- "Method": "Update",
- "RelativePath": "api/Product/update",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "product",
- "Type": "Domain.Entities.EProduct",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProductCategoryController",
- "Method": "GetById",
- "RelativePath": "api/ProductCategory/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Entities.EProductCategory",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProductCategoryController",
- "Method": "Delete",
- "RelativePath": "api/ProductCategory/{id}",
- "HttpMethod": "DELETE",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProductCategoryController",
- "Method": "GetAll",
- "RelativePath": "api/ProductCategory/all",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProductCategoryController",
- "Method": "Create",
- "RelativePath": "api/ProductCategory/create",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "category",
- "Type": "Domain.Entities.EProductCategory",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProductCategoryController",
- "Method": "Search",
- "RelativePath": "api/ProductCategory/search",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "term",
- "Type": "System.String",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProductCategoryController",
- "Method": "Update",
- "RelativePath": "api/ProductCategory/update",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "category",
- "Type": "Domain.Entities.EProductCategory",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.ProductDivisionController",
- "Method": "Create",
- "RelativePath": "api/ProductDivision/Create",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "division",
- "Type": "Domain.Entities.ELSProductDivision",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.ProductDivisionController",
- "Method": "Delete",
- "RelativePath": "api/ProductDivision/Delete/{id}",
- "HttpMethod": "DELETE",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.ProductDivisionController",
- "Method": "GetAll",
- "RelativePath": "api/ProductDivision/GetAll",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.ProductDivisionController",
- "Method": "GetById",
- "RelativePath": "api/ProductDivision/GetById/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.ProductDivisionController",
- "Method": "Search",
- "RelativePath": "api/ProductDivision/Search",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "term",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Stock.ProductDivisionController",
- "Method": "Update",
- "RelativePath": "api/ProductDivision/Update",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "division",
- "Type": "Domain.Entities.ELSProductDivision",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProfessionalController",
- "Method": "GetById",
- "RelativePath": "api/Professional/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Entities.EProfessional",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProfessionalController",
- "Method": "GetAll",
- "RelativePath": "api/Professional/all",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProfessionalController",
- "Method": "Create",
- "RelativePath": "api/Professional/create",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "professional",
- "Type": "Domain.Entities.EProfessional",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProfessionalController",
- "Method": "ExportFiltered",
- "RelativePath": "api/Professional/exportfiltered",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "searchParams",
- "Type": "Domain.Generics.ProfessionalSearchParams",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProfessionalController",
- "Method": "Search",
- "RelativePath": "api/Professional/search",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "fullname",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "document",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "type",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProfessionalController",
- "Method": "Update",
- "RelativePath": "api/Professional/update",
- "HttpMethod": "PUT",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "professional",
- "Type": "Domain.Entities.EProfessional",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProfessionalSpecialtyController",
- "Method": "GetAll",
- "RelativePath": "api/ProfessionalSpecialty/GetAll",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.ProfessionalSpecialtyController",
- "Method": "GetByName",
- "RelativePath": "api/ProfessionalSpecialty/GetByName/{name}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "name",
- "Type": "System.String",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.QuoteController",
- "Method": "GetById",
- "RelativePath": "api/Quote/{id}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Dtos.QuoteDto",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.QuoteController",
- "Method": "GetQuotePdf",
- "RelativePath": "api/Quote/{id}/pdf",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "id",
- "Type": "System.Int32",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.QuoteController",
- "Method": "AuthorizeQuote",
- "RelativePath": "api/Quote/authorize",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "request",
- "Type": "QuoteAuthorizationRequest",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.QuoteController",
- "Method": "CreateFullQuote",
- "RelativePath": "api/Quote/createfull",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "request",
- "Type": "phronCare.API.Controllers.Sales.QuoteController\u002BCreateFullQuoteRequest",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.QuoteController",
- "Method": "ExportFiltered",
- "RelativePath": "api/Quote/exportfiltered",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "searchParams",
- "Type": "Domain.Generics.QuoteSearchParams",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.QuoteController",
- "Method": "Search",
- "RelativePath": "api/Quote/search",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "customerId",
- "Type": "System.Nullable\u00601[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "IsRequired": false
- },
- {
- "Name": "customerText",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "quoteNumber",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "professionalId",
- "Type": "System.Nullable\u00601[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "IsRequired": false
- },
- {
- "Name": "professionalText",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "institutionId",
- "Type": "System.Nullable\u00601[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "IsRequired": false
- },
- {
- "Name": "institutionText",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "patientId",
- "Type": "System.Nullable\u00601[[System.Int32, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "IsRequired": false
- },
- {
- "Name": "patientText",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "issueDateFrom",
- "Type": "System.Nullable\u00601[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "IsRequired": false
- },
- {
- "Name": "issueDateTo",
- "Type": "System.Nullable\u00601[[System.DateTime, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "IsRequired": false
- },
- {
- "Name": "status",
- "Type": "System.String",
- "IsRequired": false
- },
- {
- "Name": "page",
- "Type": "System.Int32",
- "IsRequired": false
- },
- {
- "Name": "pageSize",
- "Type": "System.Int32",
- "IsRequired": false
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Generics.PagedResult\u00601[[Domain.Dtos.QuoteDto, Domain, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.QuoteController",
- "Method": "GetHeaderDtoByQuoteNumber",
- "RelativePath": "api/Quote/summary/{quoteNumber}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "quoteNumber",
- "Type": "System.String",
- "IsRequired": true
- }
- ],
- "ReturnTypes": [
- {
- "Type": "Domain.Dtos.QuoteDto",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.TaxConditionController",
- "Method": "GetAll",
- "RelativePath": "api/TaxCondition/GetAll",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.TaxConditionController",
- "Method": "GetByName",
- "RelativePath": "api/TaxCondition/GetByName/{name}",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "name",
- "Type": "System.String",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Sales.TaxTypeController",
- "Method": "GetAll",
- "RelativePath": "api/TaxType/GetAll",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.TestController",
- "Method": "GetAdministradores",
- "RelativePath": "api/Test/administradores",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.TestController",
- "Method": "GetEmpleados",
- "RelativePath": "api/Test/empleados",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": [
- {
- "Type": "System.Collections.Generic.IEnumerable\u00601[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "MediaTypes": [
- "text/plain",
- "application/json",
- "text/json"
- ],
- "StatusCode": 200
- }
- ]
- },
- {
- "ContainingType": "phronCare.API.Controllers.Tickets.TicketController",
- "Method": "ExportDashboardDetail",
- "RelativePath": "api/Ticket/ExportDashboardDetail",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "parameters",
- "Type": "Domain.Entities.GenericParameters\u00605[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Tickets.TicketController",
- "Method": "GetDashboardDetail",
- "RelativePath": "api/Ticket/GetDashboardDetail",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "parameters",
- "Type": "Domain.Entities.GenericParameters\u00605[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e],[System.Object, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Tickets.TicketController",
- "Method": "GetSummary",
- "RelativePath": "api/Ticket/GetSummary",
- "HttpMethod": "GET",
- "IsController": true,
- "Order": 0,
- "Parameters": [],
- "ReturnTypes": []
- },
- {
- "ContainingType": "phronCare.API.Controllers.Tickets.TicketController",
- "Method": "InsertTicket",
- "RelativePath": "api/Ticket/InsertTicket",
- "HttpMethod": "POST",
- "IsController": true,
- "Order": 0,
- "Parameters": [
- {
- "Name": "ticket",
- "Type": "Domain.Entities.ETicket",
- "IsRequired": true
- }
- ],
- "ReturnTypes": []
- }
-]
\ No newline at end of file
diff --git a/phronCare.API/obj/Debug/net8.0/phronCare.API.GlobalUsings.g.cs b/phronCare.API/obj/Debug/net8.0/phronCare.API.GlobalUsings.g.cs
deleted file mode 100644
index 025530a..0000000
--- a/phronCare.API/obj/Debug/net8.0/phronCare.API.GlobalUsings.g.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-//
-global using global::Microsoft.AspNetCore.Builder;
-global using global::Microsoft.AspNetCore.Hosting;
-global using global::Microsoft.AspNetCore.Http;
-global using global::Microsoft.AspNetCore.Routing;
-global using global::Microsoft.Extensions.Configuration;
-global using global::Microsoft.Extensions.DependencyInjection;
-global using global::Microsoft.Extensions.Hosting;
-global using global::Microsoft.Extensions.Logging;
-global using global::System;
-global using global::System.Collections.Generic;
-global using global::System.IO;
-global using global::System.Linq;
-global using global::System.Net.Http;
-global using global::System.Net.Http.Json;
-global using global::System.Threading;
-global using global::System.Threading.Tasks;
diff --git a/phronCare.API/obj/Debug/net8.0/phronCare.API.csproj.BuildWithSkipAnalyzers b/phronCare.API/obj/Debug/net8.0/phronCare.API.csproj.BuildWithSkipAnalyzers
deleted file mode 100644
index e69de29..0000000
diff --git a/phronCare.API/obj/Debug/net8.0/staticwebassets.removed.txt b/phronCare.API/obj/Debug/net8.0/staticwebassets.removed.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/phronCare.API/obj/phronCare.API.csproj.nuget.dgspec.json b/phronCare.API/obj/phronCare.API.csproj.nuget.dgspec.json
deleted file mode 100644
index 106462d..0000000
--- a/phronCare.API/obj/phronCare.API.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,647 +0,0 @@
-{
- "format": 1,
- "restore": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.API\\phronCare.API.csproj": {}
- },
- "projects": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Core\\Core.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Core\\Core.csproj",
- "projectName": "Core",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Core\\Core.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Core\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Transversal\\Transversal.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Transversal\\Transversal.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "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\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Documents\\Documents.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Documents\\Documents.csproj",
- "projectName": "Documents",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Documents\\Documents.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Documents\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Transversal\\Transversal.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Transversal\\Transversal.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Microsoft.Extensions.Caching.Memory": {
- "target": "Package",
- "version": "[8.0.1, )"
- },
- "RazorLight": {
- "target": "Package",
- "version": "[2.3.1, )"
- },
- "System.Text.Json": {
- "target": "Package",
- "version": "[8.0.5, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj",
- "projectName": "Domain",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "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"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "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\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj",
- "projectName": "Models",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.EntityFrameworkCore.SqlServer": {
- "target": "Package",
- "version": "[8.0.10, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.API\\phronCare.API.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.API\\phronCare.API.csproj",
- "projectName": "phronCare.API",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.API\\phronCare.API.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.API\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Core\\Core.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Core\\Core.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Documents\\Documents.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Documents\\Documents.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Transversal\\Transversal.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Transversal\\Transversal.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Azure.Identity": {
- "target": "Package",
- "version": "[1.12.0, )"
- },
- "EntityFramework": {
- "target": "Package",
- "version": "[6.5.1, )"
- },
- "GoogleAuthenticator": {
- "target": "Package",
- "version": "[3.2.0, )"
- },
- "Microsoft.AspNetCore.Authentication.JwtBearer": {
- "target": "Package",
- "version": "[8.0.15, )"
- },
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
- "target": "Package",
- "version": "[8.0.6, )"
- },
- "Microsoft.AspNetCore.OpenApi": {
- "target": "Package",
- "version": "[8.0.6, )"
- },
- "Microsoft.EntityFrameworkCore.SqlServer": {
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.EntityFrameworkCore.Tools": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.6, )"
- },
- "Microsoft.Extensions.Configuration.FileExtensions": {
- "target": "Package",
- "version": "[8.0.1, )"
- },
- "Microsoft.Extensions.Configuration.Json": {
- "target": "Package",
- "version": "[8.0.1, )"
- },
- "Microsoft.IdentityModel.Tokens": {
- "target": "Package",
- "version": "[8.9.0, )"
- },
- "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
- "target": "Package",
- "version": "[1.21.0, )"
- },
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[13.0.3, )"
- },
- "Serilog.AspNetCore": {
- "target": "Package",
- "version": "[8.0.3, )"
- },
- "SharpZipLib": {
- "target": "Package",
- "version": "[1.4.2, )"
- },
- "Swashbuckle.AspNetCore": {
- "target": "Package",
- "version": "[6.6.2, )"
- },
- "System.IdentityModel.Tokens.Jwt": {
- "target": "Package",
- "version": "[8.9.0, )"
- },
- "System.Net.Http": {
- "target": "Package",
- "version": "[4.3.4, )"
- },
- "System.Text.Json": {
- "target": "Package",
- "version": "[8.0.5, )"
- }
- },
- "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\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj",
- "projectName": "Services",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "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"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "EPPlus": {
- "target": "Package",
- "version": "[7.5.2, )"
- },
- "MimeKit": {
- "target": "Package",
- "version": "[4.8.0, )"
- },
- "NETCore.MailKit": {
- "target": "Package",
- "version": "[2.1.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\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Transversal\\Transversal.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Transversal\\Transversal.csproj",
- "projectName": "Transversal",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Transversal\\Transversal.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Transversal\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "EPPlus": {
- "target": "Package",
- "version": "[7.7.2, )"
- },
- "PuppeteerSharp": {
- "target": "Package",
- "version": "[6.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\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/phronCare.API/obj/phronCare.API.csproj.nuget.g.props b/phronCare.API/obj/phronCare.API.csproj.nuget.g.props
deleted file mode 100644
index 2ce8f28..0000000
--- a/phronCare.API/obj/phronCare.API.csproj.nuget.g.props
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\maski\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
- PackageReference
- 6.14.1
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- C:\Users\maski\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5
- C:\Users\maski\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3
- C:\Users\maski\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.21.0
- C:\Users\maski\.nuget\packages\microsoft.entityframeworkcore.tools\8.0.6
- C:\Users\maski\.nuget\packages\entityframework\6.5.1
-
-
\ No newline at end of file
diff --git a/phronCare.API/obj/phronCare.API.csproj.nuget.g.targets b/phronCare.API/obj/phronCare.API.csproj.nuget.g.targets
deleted file mode 100644
index dae13fa..0000000
--- a/phronCare.API/obj/phronCare.API.csproj.nuget.g.targets
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phronCare.API/obj/project.assets.json b/phronCare.API/obj/project.assets.json
deleted file mode 100644
index d460293..0000000
--- a/phronCare.API/obj/project.assets.json
+++ /dev/null
@@ -1,9818 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net8.0": {
- "Azure.Core/1.40.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.Identity/1.12.0": {
- "type": "package",
- "dependencies": {
- "Azure.Core": "1.40.0",
- "Microsoft.Identity.Client": "4.61.3",
- "Microsoft.Identity.Client.Extensions.Msal": "4.61.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"
- }
- }
- },
- "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"
- }
- }
- },
- "EntityFramework/6.5.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.7.0",
- "System.CodeDom": "6.0.0",
- "System.ComponentModel.Annotations": "5.0.0",
- "System.Configuration.ConfigurationManager": "6.0.1",
- "System.Data.SqlClient": "4.8.6"
- },
- "compile": {
- "lib/netstandard2.1/EntityFramework.SqlServer.dll": {
- "related": ".xml"
- },
- "lib/netstandard2.1/EntityFramework.dll": {
- "related": ".SqlServer.xml;.xml"
- }
- },
- "runtime": {
- "lib/netstandard2.1/EntityFramework.SqlServer.dll": {
- "related": ".xml"
- },
- "lib/netstandard2.1/EntityFramework.dll": {
- "related": ".SqlServer.xml;.xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/EntityFramework.props": {},
- "buildTransitive/net6.0/EntityFramework.targets": {}
- }
- },
- "EPPlus/7.7.2": {
- "type": "package",
- "dependencies": {
- "EPPlus.System.Drawing": "7.7.0",
- "Microsoft.Extensions.Configuration.Json": "8.0.1",
- "Microsoft.IO.RecyclableMemoryStream": "3.0.1",
- "System.ComponentModel.Annotations": "5.0.0",
- "System.Security.Cryptography.Pkcs": "8.0.1",
- "System.Text.Encoding.CodePages": "8.0.0"
- },
- "compile": {
- "lib/net8.0/EPPlus.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/EPPlus.dll": {
- "related": ".xml"
- }
- }
- },
- "EPPlus.Interfaces/7.7.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/EPPlus.Interfaces.dll": {}
- },
- "runtime": {
- "lib/net8.0/EPPlus.Interfaces.dll": {}
- }
- },
- "EPPlus.System.Drawing/7.7.0": {
- "type": "package",
- "dependencies": {
- "EPPlus.Interfaces": "7.7.0",
- "System.Drawing.Common": "8.0.14"
- },
- "compile": {
- "lib/net8.0/EPPlus.System.Drawing.dll": {}
- },
- "runtime": {
- "lib/net8.0/EPPlus.System.Drawing.dll": {}
- }
- },
- "GoogleAuthenticator/3.2.0": {
- "type": "package",
- "dependencies": {
- "QRCoder": "1.4.3"
- },
- "compile": {
- "lib/netstandard2.0/Google.Authenticator.dll": {
- "related": ".pdb"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Google.Authenticator.dll": {
- "related": ".pdb"
- }
- }
- },
- "Humanizer.Core/2.14.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Humanizer.dll": {
- "related": ".xml"
- }
- }
- },
- "MailKit/3.2.0": {
- "type": "package",
- "dependencies": {
- "MimeKit": "3.2.0"
- },
- "compile": {
- "lib/net6.0/MailKit.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/MailKit.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.15": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
- "related": ".xml"
- }
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- },
- "Microsoft.AspNetCore.Cryptography.Internal/8.0.6": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "8.0.6"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "8.0.6",
- "Microsoft.Extensions.Identity.Stores": "8.0.6"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- }
- },
- "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.OpenApi/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.OpenApi": "1.4.3"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": {
- "related": ".xml"
- }
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- },
- "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.AspNetCore.WebUtilities/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Net.Http.Headers": "2.0.2",
- "System.Text.Encodings.Web": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
- "related": ".xml"
- }
- }
- },
- "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.Bcl.Memory/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.Bcl.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Bcl.Memory.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "type": "package",
- "build": {
- "build/_._": {}
- }
- },
- "Microsoft.CodeAnalysis.Common/4.5.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
- "System.Collections.Immutable": "6.0.0",
- "System.Reflection.Metadata": "6.0.1",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Text.Encoding.CodePages": "6.0.0"
- },
- "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.5.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "[4.5.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.CSharp.Workspaces/4.5.0": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp": "[4.5.0]",
- "Microsoft.CodeAnalysis.Common": "[4.5.0]",
- "Microsoft.CodeAnalysis.Workspaces.Common": "[4.5.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/_._": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.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.CodeAnalysis.Workspaces.Common/4.5.0": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "Microsoft.CodeAnalysis.Common": "[4.5.0]",
- "System.Composition": "6.0.0",
- "System.IO.Pipelines": "6.0.3",
- "System.Threading.Channels": "6.0.0"
- },
- "compile": {
- "lib/netcoreapp3.1/_._": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CSharp/4.7.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "Microsoft.Data.SqlClient/5.1.5": {
- "type": "package",
- "dependencies": {
- "Azure.Identity": "1.10.3",
- "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1",
- "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": "6.0.1",
- "System.Diagnostics.DiagnosticSource": "6.0.1",
- "System.Runtime.Caching": "6.0.0",
- "System.Security.Cryptography.Cng": "5.0.0",
- "System.Security.Principal.Windows": "5.0.0",
- "System.Text.Encoding.CodePages": "6.0.0",
- "System.Text.Encodings.Web": "6.0.0"
- },
- "compile": {
- "ref/net6.0/Microsoft.Data.SqlClient.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Data.SqlClient.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
- "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.EntityFrameworkCore/8.0.10": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10",
- "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10",
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
- "Microsoft.Extensions.Logging": "8.0.1"
- },
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/_._": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.6": {
- "type": "package",
- "dependencies": {
- "Humanizer.Core": "2.14.1",
- "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.6",
- "Microsoft.Extensions.DependencyModel": "8.0.0",
- "Mono.TextTemplating": "2.2.1"
- },
- "compile": {
- "lib/net8.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {}
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "8.0.10",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.SqlServer/8.0.10": {
- "type": "package",
- "dependencies": {
- "Microsoft.Data.SqlClient": "5.1.5",
- "Microsoft.EntityFrameworkCore.Relational": "8.0.10"
- },
- "compile": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "8.0.6"
- },
- "compile": {
- "lib/net8.0/_._": {}
- },
- "runtime": {
- "lib/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "type": "package",
- "build": {
- "build/Microsoft.Extensions.ApiDescription.Server.props": {},
- "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
- "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
- }
- },
- "Microsoft.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.Memory/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "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.Configuration.Binder/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {}
- }
- },
- "Microsoft.Extensions.Configuration.FileExtensions/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "8.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Json/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "8.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "8.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "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.Diagnostics.Abstractions/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
- "Microsoft.Extensions.Options": "8.0.0",
- "System.Diagnostics.DiagnosticSource": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
- "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Identity.Core/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "8.0.6",
- "Microsoft.Extensions.Logging": "8.0.0",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Identity.Stores/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
- "Microsoft.Extensions.Identity.Core": "8.0.6",
- "Microsoft.Extensions.Logging": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "8.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.2",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "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.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.61.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.61.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Identity.Client": "4.61.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/8.9.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.JsonWebTokens/8.9.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Tokens": "8.9.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Logging/8.9.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "8.9.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols/7.1.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Logging": "7.1.2",
- "Microsoft.IdentityModel.Tokens": "7.1.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Protocols": "7.1.2",
- "System.IdentityModel.Tokens.Jwt": "7.1.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Tokens/8.9.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Bcl.Memory": "9.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
- "Microsoft.IdentityModel.Logging": "8.9.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IO.RecyclableMemoryStream/3.0.1": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Net.Http.Headers/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0",
- "System.Buffers": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.NETCore.Platforms/1.1.1": {
- "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.OpenApi/1.6.14": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "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.VisualStudio.Azure.Containers.Tools.Targets/1.21.0": {
- "type": "package",
- "build": {
- "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {},
- "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {}
- }
- },
- "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/_._": {
- "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"
- }
- }
- },
- "Microsoft.Win32.SystemEvents/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.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"
- }
- }
- },
- "Mono.TextTemplating/2.2.1": {
- "type": "package",
- "dependencies": {
- "System.CodeDom": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/Mono.TextTemplating.dll": {}
- }
- },
- "NETCore.MailKit/2.1.0": {
- "type": "package",
- "dependencies": {
- "MailKit": "3.2.0",
- "Microsoft.Extensions.DependencyInjection": "6.0.0"
- },
- "compile": {
- "lib/netstandard2.1/NETCore.MailKit.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/NETCore.MailKit.dll": {}
- }
- },
- "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"
- }
- }
- },
- "PuppeteerSharp/6.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
- "Microsoft.Extensions.Logging": "2.0.2",
- "Newtonsoft.Json": "10.0.3",
- "SharpZipLib": "1.3.1"
- },
- "compile": {
- "lib/netstandard2.0/PuppeteerSharp.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/PuppeteerSharp.dll": {
- "related": ".xml"
- }
- }
- },
- "QRCoder/1.4.3": {
- "type": "package",
- "compile": {
- "lib/net6.0/QRCoder.dll": {}
- },
- "runtime": {
- "lib/net6.0/QRCoder.dll": {}
- }
- },
- "RazorLight/2.3.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Extensions": "6.0.0",
- "Microsoft.CodeAnalysis.Razor": "6.0.0",
- "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
- "Microsoft.Extensions.Caching.Memory": "6.0.0",
- "Microsoft.Extensions.DependencyInjection": "6.0.0",
- "Microsoft.Extensions.DependencyModel": "6.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
- "Microsoft.Extensions.Primitives": "6.0.0",
- "System.Buffers": "4.5.1"
- },
- "compile": {
- "lib/net6.0/RazorLight.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/RazorLight.dll": {
- "related": ".xml"
- }
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- },
- "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.Data.SqlClient.sni/4.7.0": {
- "type": "package",
- "dependencies": {
- "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
- "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
- "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.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"
- }
- }
- },
- "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/win-arm64/native/sni.dll": {
- "assetType": "native",
- "rid": "win-arm64"
- }
- }
- },
- "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/win-x64/native/sni.dll": {
- "assetType": "native",
- "rid": "win-x64"
- }
- }
- },
- "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/win-x86/native/sni.dll": {
- "assetType": "native",
- "rid": "win-x86"
- }
- }
- },
- "Serilog/3.1.1": {
- "type": "package",
- "compile": {
- "lib/net7.0/Serilog.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Serilog.dll": {
- "related": ".xml"
- }
- }
- },
- "Serilog.AspNetCore/8.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Logging": "8.0.0",
- "Serilog": "3.1.1",
- "Serilog.Extensions.Hosting": "8.0.0",
- "Serilog.Formatting.Compact": "2.0.0",
- "Serilog.Settings.Configuration": "8.0.4",
- "Serilog.Sinks.Console": "5.0.0",
- "Serilog.Sinks.Debug": "2.0.0",
- "Serilog.Sinks.File": "5.0.0"
- },
- "compile": {
- "lib/net8.0/Serilog.AspNetCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Serilog.AspNetCore.dll": {
- "related": ".xml"
- }
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- },
- "Serilog.Extensions.Hosting/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
- "Microsoft.Extensions.Hosting.Abstractions": "8.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
- "Serilog": "3.1.1",
- "Serilog.Extensions.Logging": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Serilog.Extensions.Hosting.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Serilog.Extensions.Hosting.dll": {
- "related": ".xml"
- }
- }
- },
- "Serilog.Extensions.Logging/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Logging": "8.0.0",
- "Serilog": "3.1.1"
- },
- "compile": {
- "lib/net8.0/Serilog.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Serilog.Extensions.Logging.dll": {
- "related": ".xml"
- }
- }
- },
- "Serilog.Formatting.Compact/2.0.0": {
- "type": "package",
- "dependencies": {
- "Serilog": "3.1.0"
- },
- "compile": {
- "lib/net7.0/Serilog.Formatting.Compact.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Serilog.Formatting.Compact.dll": {
- "related": ".xml"
- }
- }
- },
- "Serilog.Settings.Configuration/8.0.4": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "8.0.0",
- "Microsoft.Extensions.DependencyModel": "8.0.2",
- "Serilog": "3.1.1"
- },
- "compile": {
- "lib/net8.0/Serilog.Settings.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Serilog.Settings.Configuration.dll": {
- "related": ".xml"
- }
- }
- },
- "Serilog.Sinks.Console/5.0.0": {
- "type": "package",
- "dependencies": {
- "Serilog": "3.1.0"
- },
- "compile": {
- "lib/net7.0/Serilog.Sinks.Console.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/Serilog.Sinks.Console.dll": {
- "related": ".xml"
- }
- }
- },
- "Serilog.Sinks.Debug/2.0.0": {
- "type": "package",
- "dependencies": {
- "Serilog": "2.10.0"
- },
- "compile": {
- "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
- "related": ".xml"
- }
- }
- },
- "Serilog.Sinks.File/5.0.0": {
- "type": "package",
- "dependencies": {
- "Serilog": "2.10.0"
- },
- "compile": {
- "lib/net5.0/Serilog.Sinks.File.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net5.0/Serilog.Sinks.File.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "SharpZipLib/1.4.2": {
- "type": "package",
- "compile": {
- "lib/net6.0/ICSharpCode.SharpZipLib.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/ICSharpCode.SharpZipLib.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
- "Swashbuckle.AspNetCore.Swagger": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2",
- "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2"
- },
- "build": {
- "build/Swashbuckle.AspNetCore.props": {}
- }
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.OpenApi": "1.6.14"
- },
- "compile": {
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": {
- "related": ".pdb;.xml"
- }
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "type": "package",
- "dependencies": {
- "Swashbuckle.AspNetCore.Swagger": "6.6.2"
- },
- "compile": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "type": "package",
- "compile": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
- "related": ".pdb;.xml"
- }
- },
- "frameworkReferences": [
- "Microsoft.AspNetCore.App"
- ]
- },
- "System.Buffers/4.5.1": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "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/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.CodeDom.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.CodeDom.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "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.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/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
- }
- },
- "System.Collections.Immutable/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "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.Composition/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Convention": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0",
- "System.Composition.TypedParts": "6.0.0"
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.AttributedModel/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.AttributedModel.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.Convention/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.Convention.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.Hosting/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.Runtime": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.Hosting.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.Runtime/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.Runtime.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Composition.TypedParts/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Composition.AttributedModel": "6.0.0",
- "System.Composition.Hosting": "6.0.0",
- "System.Composition.Runtime": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Composition.TypedParts.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Configuration.ConfigurationManager/6.0.1": {
- "type": "package",
- "dependencies": {
- "System.Security.Cryptography.ProtectedData": "6.0.0",
- "System.Security.Permissions": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Data.SqlClient/4.8.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.Win32.Registry": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0",
- "runtime.native.System.Data.SqlClient.sni": "4.7.0"
- },
- "compile": {
- "ref/netcoreapp2.1/System.Data.SqlClient.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "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/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Diagnostics.DiagnosticSource/8.0.0": {
- "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.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.Drawing.Common/8.0.14": {
- "type": "package",
- "dependencies": {
- "Microsoft.Win32.SystemEvents": "8.0.0"
- },
- "compile": {
- "lib/net8.0/System.Drawing.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.Drawing.Common.dll": {
- "related": ".pdb;.xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "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.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/_._": {
- "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/8.9.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.JsonWebTokens": "8.9.0",
- "Microsoft.IdentityModel.Tokens": "8.9.0"
- },
- "compile": {
- "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.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.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/_._": {
- "related": ".xml"
- }
- }
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
- }
- },
- "System.IO.Pipelines/6.0.3": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "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/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {}
- }
- },
- "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.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/6.0.1": {
- "type": "package",
- "dependencies": {
- "System.Collections.Immutable": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "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/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Configuration.ConfigurationManager": "6.0.0"
- },
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Runtime.Caching.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.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.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/_._": {
- "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/5.0.0": {
- "type": "package",
- "dependencies": {
- "System.Formats.Asn1": "5.0.0"
- },
- "compile": {
- "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp3.0/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.1": {
- "type": "package",
- "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/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "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.Permissions/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Security.AccessControl": "6.0.0",
- "System.Windows.Extensions": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Security.Permissions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Security.Permissions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Security.Principal.Windows/5.0.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp3.0/_._": {
- "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.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/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net8.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/8.0.5": {
- "type": "package",
- "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.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.Channels/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Threading.Channels.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "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.Windows.Extensions/6.0.0": {
- "type": "package",
- "dependencies": {
- "System.Drawing.Common": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "Core/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v8.0",
- "dependencies": {
- "Domain": "1.0.0",
- "Models": "1.0.0",
- "Transversal": "1.0.0"
- },
- "compile": {
- "bin/placeholder/Core.dll": {}
- },
- "runtime": {
- "bin/placeholder/Core.dll": {}
- }
- },
- "Documents/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v8.0",
- "dependencies": {
- "Domain": "1.0.0",
- "Microsoft.Extensions.Caching.Memory": "8.0.1",
- "RazorLight": "2.3.1",
- "System.Text.Json": "8.0.5",
- "Transversal": "1.0.0"
- },
- "compile": {
- "bin/placeholder/Documents.dll": {}
- },
- "runtime": {
- "bin/placeholder/Documents.dll": {}
- }
- },
- "Domain/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v8.0",
- "compile": {
- "bin/placeholder/Domain.dll": {}
- },
- "runtime": {
- "bin/placeholder/Domain.dll": {}
- }
- },
- "Models/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v8.0",
- "dependencies": {
- "Domain": "1.0.0",
- "Microsoft.EntityFrameworkCore.SqlServer": "8.0.10"
- },
- "compile": {
- "bin/placeholder/Models.dll": {}
- },
- "runtime": {
- "bin/placeholder/Models.dll": {}
- }
- },
- "Services/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v8.0",
- "dependencies": {
- "EPPlus": "7.5.2",
- "MimeKit": "4.8.0",
- "NETCore.MailKit": "2.1.0"
- },
- "compile": {
- "bin/placeholder/Services.dll": {}
- },
- "runtime": {
- "bin/placeholder/Services.dll": {}
- }
- },
- "Transversal/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v8.0",
- "dependencies": {
- "Domain": "1.0.0",
- "EPPlus": "7.7.2",
- "PuppeteerSharp": "6.0.0"
- },
- "compile": {
- "bin/placeholder/Transversal.dll": {}
- },
- "runtime": {
- "bin/placeholder/Transversal.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Azure.Core/1.40.0": {
- "sha512": "eOx6wk3kQ3SCnoAj7IytAu/d99l07PdarmUc+RmMkVOTkcQ3s+UQEaGzMyEqC2Ua4SKnOW4Xw/klLeB5V2PiSA==",
- "type": "package",
- "path": "azure.core/1.40.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "CHANGELOG.md",
- "README.md",
- "azure.core.1.40.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.Identity/1.12.0": {
- "sha512": "OBIM3aPz8n9oEO5fdnee+Vsc5Nl4W3FeslPpESyDiyByntQI5BAa76KD60eFXm9ulevnwxGZP9YXL8Y+paI5Uw==",
- "type": "package",
- "path": "azure.identity/1.12.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "CHANGELOG.md",
- "README.md",
- "azure.identity.1.12.0.nupkg.sha512",
- "azure.identity.nuspec",
- "azureicon.png",
- "lib/netstandard2.0/Azure.Identity.dll",
- "lib/netstandard2.0/Azure.Identity.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"
- ]
- },
- "EntityFramework/6.5.1": {
- "sha512": "sQRP2lWg1i3aAGWqdliAM8zrGx7LHMUk+9/MoxUjwfTZYGMXvZ2JYZTlyTm1PqDxvn3c9E3U76TWDON7Y5+CVA==",
- "type": "package",
- "path": "entityframework/6.5.1",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "README.md",
- "build/EntityFramework.DefaultItems.props",
- "build/EntityFramework.props",
- "build/EntityFramework.targets",
- "build/Microsoft.Data.Entity.Build.Tasks.dll",
- "build/net6.0/EntityFramework.props",
- "build/net6.0/EntityFramework.targets",
- "buildTransitive/EntityFramework.props",
- "buildTransitive/EntityFramework.targets",
- "buildTransitive/net6.0/EntityFramework.props",
- "buildTransitive/net6.0/EntityFramework.targets",
- "content/net40/App.config.install.xdt",
- "content/net40/App.config.transform",
- "content/net40/Web.config.install.xdt",
- "content/net40/Web.config.transform",
- "entityframework.6.5.1.nupkg.sha512",
- "entityframework.nuspec",
- "lib/net40/EntityFramework.SqlServer.dll",
- "lib/net40/EntityFramework.SqlServer.xml",
- "lib/net40/EntityFramework.dll",
- "lib/net40/EntityFramework.xml",
- "lib/net45/EntityFramework.SqlServer.dll",
- "lib/net45/EntityFramework.SqlServer.xml",
- "lib/net45/EntityFramework.dll",
- "lib/net45/EntityFramework.xml",
- "lib/netstandard2.1/EntityFramework.SqlServer.dll",
- "lib/netstandard2.1/EntityFramework.SqlServer.xml",
- "lib/netstandard2.1/EntityFramework.dll",
- "lib/netstandard2.1/EntityFramework.xml",
- "tools/EntityFramework6.PS2.psd1",
- "tools/EntityFramework6.PS2.psm1",
- "tools/EntityFramework6.psd1",
- "tools/EntityFramework6.psm1",
- "tools/about_EntityFramework6.help.txt",
- "tools/init.ps1",
- "tools/install.ps1",
- "tools/net40/any/ef6.exe",
- "tools/net40/any/ef6.pdb",
- "tools/net40/win-arm64/ef6.exe",
- "tools/net40/win-arm64/ef6.pdb",
- "tools/net40/win-x86/ef6.exe",
- "tools/net40/win-x86/ef6.pdb",
- "tools/net45/any/ef6.exe",
- "tools/net45/any/ef6.pdb",
- "tools/net45/win-arm64/ef6.exe",
- "tools/net45/win-arm64/ef6.pdb",
- "tools/net45/win-x86/ef6.exe",
- "tools/net45/win-x86/ef6.pdb",
- "tools/net6.0/any/ef6.dll",
- "tools/net6.0/any/ef6.pdb",
- "tools/net6.0/any/ef6.runtimeconfig.json"
- ]
- },
- "EPPlus/7.7.2": {
- "sha512": "vG1jVIxVV2v37O+ysjaZw9iFSD+d2/ABKl+XJF//xghUCbhDRYl6DH7C3wXJn4r0qoA4aS+Y/t0jT+8PD0TDtQ==",
- "type": "package",
- "path": "epplus/7.7.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EPPlusLogo.png",
- "epplus.7.7.2.nupkg.sha512",
- "epplus.nuspec",
- "lib/net35/EPPlus.dll",
- "lib/net35/EPPlus.xml",
- "lib/net462/EPPlus.dll",
- "lib/net462/EPPlus.xml",
- "lib/net8.0/EPPlus.dll",
- "lib/net8.0/EPPlus.xml",
- "lib/net9.0/EPPlus.dll",
- "lib/net9.0/EPPlus.xml",
- "lib/netstandard2.0/EPPlus.dll",
- "lib/netstandard2.0/EPPlus.xml",
- "lib/netstandard2.1/EPPlus.dll",
- "lib/netstandard2.1/EPPlus.xml",
- "license.md",
- "readme.md",
- "readme.txt"
- ]
- },
- "EPPlus.Interfaces/7.7.0": {
- "sha512": "vJO30Vzv4aVWKn8JO7THU+Glh1dfx8QjlpEDq47FmxwlMtT6L43EsLrh9h0G72TpNA1+5u9yNHYc5IANOnWbbg==",
- "type": "package",
- "path": "epplus.interfaces/7.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EPPlusLogo.png",
- "epplus.interfaces.7.7.0.nupkg.sha512",
- "epplus.interfaces.nuspec",
- "lib/net35/EPPlus.Interfaces.dll",
- "lib/net462/EPPlus.Interfaces.dll",
- "lib/net8.0/EPPlus.Interfaces.dll",
- "lib/net9.0/EPPlus.Interfaces.dll",
- "lib/netstandard2.0/EPPlus.Interfaces.dll",
- "lib/netstandard2.1/EPPlus.Interfaces.dll",
- "license.md",
- "readme.md"
- ]
- },
- "EPPlus.System.Drawing/7.7.0": {
- "sha512": "IVqhg8JYcQy11q3ecZ23x07uvJnXk33hu8w5UfVqvEMEuFXBLlU7COGaHG3i7w23uTnoj9eAOnCdSKjLIbcflw==",
- "type": "package",
- "path": "epplus.system.drawing/7.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EPPlusLogo.png",
- "epplus.system.drawing.7.7.0.nupkg.sha512",
- "epplus.system.drawing.nuspec",
- "lib/net35/EPPlus.System.Drawing.dll",
- "lib/net462/EPPlus.System.Drawing.dll",
- "lib/net8.0/EPPlus.System.Drawing.dll",
- "lib/net9.0/EPPlus.System.Drawing.dll",
- "lib/netstandard2.0/EPPlus.System.Drawing.dll",
- "lib/netstandard2.1/EPPlus.System.Drawing.dll",
- "license.md",
- "readme.md"
- ]
- },
- "GoogleAuthenticator/3.2.0": {
- "sha512": "m+wR3/c6ra2h7gaov7qUDRxOaC6B2/t7H6JsMPTHecvrEJyMz2NsgJqIU4RJwEhOzeauHkKVZDopz3OTo7rpRw==",
- "type": "package",
- "path": "googleauthenticator/3.2.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "googleauthenticator.3.2.0.nupkg.sha512",
- "googleauthenticator.nuspec",
- "lib/net462/Google.Authenticator.dll",
- "lib/net462/Google.Authenticator.pdb",
- "lib/netstandard2.0/Google.Authenticator.dll",
- "lib/netstandard2.0/Google.Authenticator.pdb"
- ]
- },
- "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"
- ]
- },
- "MailKit/3.2.0": {
- "sha512": "5MTpTqmjqT7HPvYbP3HozRZMth5vSaT0ReN0iM3rAM4CgLI/R1qqtLDDNWGnFFIlcNzeJkZQRJJMkv8cgzWBbA==",
- "type": "package",
- "path": "mailkit/3.2.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "icons/mailkit-50.png",
- "lib/net452/MailKit.dll",
- "lib/net452/MailKit.pdb",
- "lib/net452/MailKit.xml",
- "lib/net461/MailKit.dll",
- "lib/net461/MailKit.pdb",
- "lib/net461/MailKit.xml",
- "lib/net47/MailKit.dll",
- "lib/net47/MailKit.pdb",
- "lib/net47/MailKit.xml",
- "lib/net48/MailKit.dll",
- "lib/net48/MailKit.pdb",
- "lib/net48/MailKit.xml",
- "lib/net5.0/MailKit.dll",
- "lib/net5.0/MailKit.pdb",
- "lib/net5.0/MailKit.xml",
- "lib/net6.0/MailKit.dll",
- "lib/net6.0/MailKit.pdb",
- "lib/net6.0/MailKit.xml",
- "lib/netstandard2.0/MailKit.dll",
- "lib/netstandard2.0/MailKit.pdb",
- "lib/netstandard2.0/MailKit.xml",
- "lib/netstandard2.1/MailKit.dll",
- "lib/netstandard2.1/MailKit.pdb",
- "lib/netstandard2.1/MailKit.xml",
- "mailkit.3.2.0.nupkg.sha512",
- "mailkit.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.15": {
- "sha512": "41DQAWCOIDS9ZzW6hWCShRiVrBLvz2QqR+i0VhMa4JHuQLNW2axfiWgEbB8jYt8try1ez2Q+z1PfF3vbl+B9gA==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication.jwtbearer/8.0.15",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
- "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
- "microsoft.aspnetcore.authentication.jwtbearer.8.0.15.nupkg.sha512",
- "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Cryptography.Internal/8.0.6": {
- "sha512": "bkMu3+COnAodJPoSzzEV7twEE7hP8CF1AZrb9GVmkudE5K3UFyE6BtGeSaUrPngPtnmyDux3Z8pw5Knb/Xm5yA==",
- "type": "package",
- "path": "microsoft.aspnetcore.cryptography.internal/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll",
- "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml",
- "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
- "lib/net8.0/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.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.cryptography.internal.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.6": {
- "sha512": "QQrh7y2lxpLXQmauGcEo4HfOgfyJTysFPwPY8clFd+I559j89HMYFnpAgUBWs8AmN3IYEtsMhMYTij99IWUQIQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.cryptography.keyderivation/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
- "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
- "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
- "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
- "microsoft.aspnetcore.cryptography.keyderivation.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.6": {
- "sha512": "KwjToZI3oD4t+t02+pHeoUUhSCWtZYqBjOrt6pclBBAjtbja3QwmBnH5e6PXUjipxHpVyKHkK3Vegu/uy1jWug==",
- "type": "package",
- "path": "microsoft.aspnetcore.identity.entityframeworkcore/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
- "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
- "microsoft.aspnetcore.identity.entityframeworkcore.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.identity.entityframeworkcore.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.OpenApi/8.0.6": {
- "sha512": "G0Qdo5ZtxmBFZ41CFRopZbSVeS/xwezmqZE0vLYcggoB7EEsPOUKSWnSrJPC2C+02iANAnnq6bSMIlKBgdqCmA==",
- "type": "package",
- "path": "microsoft.aspnetcore.openapi/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll",
- "lib/net8.0/Microsoft.AspNetCore.OpenApi.xml",
- "microsoft.aspnetcore.openapi.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.openapi.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.AspNetCore.WebUtilities/2.0.2": {
- "sha512": "dvn80+p1AIQKOfJ+VrOhVMUktWRvJs7Zb+UapZGBNSyrCzTsYiXbb9C7Mzw+nGj5UevnLNFcWWc7BUlLMD2qpw==",
- "type": "package",
- "path": "microsoft.aspnetcore.webutilities/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
- "microsoft.aspnetcore.webutilities.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.webutilities.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.Bcl.Memory/9.0.0": {
- "sha512": "bTUtGfpGyJnohQzjdXbtc7MqNzkv7CWUSRz54+ucNm0i32rZiIU0VdVPHDBShOl1qhVKRjW8mnEBz3d2vH93tQ==",
- "type": "package",
- "path": "microsoft.bcl.memory/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Bcl.Memory.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Bcl.Memory.targets",
- "lib/net462/Microsoft.Bcl.Memory.dll",
- "lib/net462/Microsoft.Bcl.Memory.xml",
- "lib/net8.0/Microsoft.Bcl.Memory.dll",
- "lib/net8.0/Microsoft.Bcl.Memory.xml",
- "lib/net9.0/Microsoft.Bcl.Memory.dll",
- "lib/net9.0/Microsoft.Bcl.Memory.xml",
- "lib/netstandard2.0/Microsoft.Bcl.Memory.dll",
- "lib/netstandard2.0/Microsoft.Bcl.Memory.xml",
- "lib/netstandard2.1/Microsoft.Bcl.Memory.dll",
- "lib/netstandard2.1/Microsoft.Bcl.Memory.xml",
- "microsoft.bcl.memory.9.0.0.nupkg.sha512",
- "microsoft.bcl.memory.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
- "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.analyzers/3.3.3",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "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_all.editorconfig",
- "build/config/analysislevel_2_9_8_default.editorconfig",
- "build/config/analysislevel_2_9_8_minimum.editorconfig",
- "build/config/analysislevel_2_9_8_none.editorconfig",
- "build/config/analysislevel_2_9_8_recommended.editorconfig",
- "build/config/analysislevel_3_3_all.editorconfig",
- "build/config/analysislevel_3_3_default.editorconfig",
- "build/config/analysislevel_3_3_minimum.editorconfig",
- "build/config/analysislevel_3_3_none.editorconfig",
- "build/config/analysislevel_3_3_recommended.editorconfig",
- "build/config/analysislevel_3_all.editorconfig",
- "build/config/analysislevel_3_default.editorconfig",
- "build/config/analysislevel_3_minimum.editorconfig",
- "build/config/analysislevel_3_none.editorconfig",
- "build/config/analysislevel_3_recommended.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_all.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_default.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_none.editorconfig",
- "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig",
- "build/config/analysislevelcorrectness_3_3_all.editorconfig",
- "build/config/analysislevelcorrectness_3_3_default.editorconfig",
- "build/config/analysislevelcorrectness_3_3_minimum.editorconfig",
- "build/config/analysislevelcorrectness_3_3_none.editorconfig",
- "build/config/analysislevelcorrectness_3_3_recommended.editorconfig",
- "build/config/analysislevelcorrectness_3_all.editorconfig",
- "build/config/analysislevelcorrectness_3_default.editorconfig",
- "build/config/analysislevelcorrectness_3_minimum.editorconfig",
- "build/config/analysislevelcorrectness_3_none.editorconfig",
- "build/config/analysislevelcorrectness_3_recommended.editorconfig",
- "build/config/analysislevellibrary_2_9_8_all.editorconfig",
- "build/config/analysislevellibrary_2_9_8_default.editorconfig",
- "build/config/analysislevellibrary_2_9_8_minimum.editorconfig",
- "build/config/analysislevellibrary_2_9_8_none.editorconfig",
- "build/config/analysislevellibrary_2_9_8_recommended.editorconfig",
- "build/config/analysislevellibrary_3_3_all.editorconfig",
- "build/config/analysislevellibrary_3_3_default.editorconfig",
- "build/config/analysislevellibrary_3_3_minimum.editorconfig",
- "build/config/analysislevellibrary_3_3_none.editorconfig",
- "build/config/analysislevellibrary_3_3_recommended.editorconfig",
- "build/config/analysislevellibrary_3_all.editorconfig",
- "build/config/analysislevellibrary_3_default.editorconfig",
- "build/config/analysislevellibrary_3_minimum.editorconfig",
- "build/config/analysislevellibrary_3_none.editorconfig",
- "build/config/analysislevellibrary_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig",
- "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.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.3.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.5.0": {
- "sha512": "lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.common/4.5.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.5.0.nupkg.sha512",
- "microsoft.codeanalysis.common.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp/4.5.0": {
- "sha512": "cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp/4.5.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.5.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
- "sha512": "h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
- "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.workspaces.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.CodeAnalysis.Workspaces.Common/4.5.0": {
- "sha512": "l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
- "type": "package",
- "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
- "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
- "microsoft.codeanalysis.workspaces.common.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.1.5": {
- "sha512": "6kvhQjY5uBCdBccezFD2smfnpQjQ33cZtUZVrNvxlwoBu6uopM5INH6uSgLI7JRLtlQ3bMPwnhMq4kchsXeZ5w==",
- "type": "package",
- "path": "microsoft.data.sqlclient/5.1.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "dotnet.png",
- "lib/net462/Microsoft.Data.SqlClient.dll",
- "lib/net462/Microsoft.Data.SqlClient.pdb",
- "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.pdb",
- "lib/net6.0/Microsoft.Data.SqlClient.xml",
- "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
- "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
- "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
- "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
- "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
- "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
- "microsoft.data.sqlclient.5.1.5.nupkg.sha512",
- "microsoft.data.sqlclient.nuspec",
- "ref/net462/Microsoft.Data.SqlClient.dll",
- "ref/net462/Microsoft.Data.SqlClient.pdb",
- "ref/net462/Microsoft.Data.SqlClient.xml",
- "ref/net6.0/Microsoft.Data.SqlClient.dll",
- "ref/net6.0/Microsoft.Data.SqlClient.pdb",
- "ref/net6.0/Microsoft.Data.SqlClient.xml",
- "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
- "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
- "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
- "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
- "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
- "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
- "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll",
- "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.pdb",
- "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
- "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
- "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
- "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
- "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll",
- "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb",
- "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll",
- "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.pdb",
- "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
- "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
- "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
- "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
- ]
- },
- "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
- "sha512": "wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==",
- "type": "package",
- "path": "microsoft.data.sqlclient.sni.runtime/5.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "dotnet.png",
- "microsoft.data.sqlclient.sni.runtime.5.1.1.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.EntityFrameworkCore/8.0.10": {
- "sha512": "PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==",
- "type": "package",
- "path": "microsoft.entityframeworkcore/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
- "lib/net8.0/Microsoft.EntityFrameworkCore.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.xml",
- "microsoft.entityframeworkcore.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": {
- "sha512": "FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.abstractions/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
- "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.abstractions.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {
- "sha512": "51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.analyzers/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
- "docs/PACKAGE.md",
- "lib/netstandard2.0/_._",
- "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.analyzers.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Design/8.0.6": {
- "sha512": "4OT+mH+8EB4Kfn1ENpDx2Ssx459j200gvdhDOKq5lkHmHzkRpmEDKS5GfqaLZvBLJKWu1FVGQ7Wnczcjb0hX4g==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.design/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "build/net8.0/Microsoft.EntityFrameworkCore.Design.props",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml",
- "microsoft.entityframeworkcore.design.8.0.6.nupkg.sha512",
- "microsoft.entityframeworkcore.design.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Relational/8.0.10": {
- "sha512": "OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.relational/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
- "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.relational.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.SqlServer/8.0.10": {
- "sha512": "DvhBEk44UjWMebFKwIFDIdEsG8gzbgflWIZljDCpIkZVpId+PKs0ufzJxnTQ94InPO+pS7+wE45cRsPRt9B0Iw==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.sqlserver/8.0.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
- "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
- "microsoft.entityframeworkcore.sqlserver.8.0.10.nupkg.sha512",
- "microsoft.entityframeworkcore.sqlserver.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Tools/8.0.6": {
- "sha512": "UsrAqShiZQBK2lcZsXoyFPccbiLRd2az1uXe1he2z4r2TUYyxNQFy+eysGCpZg0g62I4jFRJfvXIAmCi4QCUpg==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.tools/8.0.6",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "docs/PACKAGE.md",
- "lib/net8.0/_._",
- "microsoft.entityframeworkcore.tools.8.0.6.nupkg.sha512",
- "microsoft.entityframeworkcore.tools.nuspec",
- "tools/EntityFrameworkCore.PS2.psd1",
- "tools/EntityFrameworkCore.PS2.psm1",
- "tools/EntityFrameworkCore.psd1",
- "tools/EntityFrameworkCore.psm1",
- "tools/about_EntityFrameworkCore.help.txt",
- "tools/init.ps1",
- "tools/net461/any/ef.exe",
- "tools/net461/win-arm64/ef.exe",
- "tools/net461/win-x86/ef.exe",
- "tools/netcoreapp2.0/any/ef.dll",
- "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
- ]
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
- "type": "package",
- "path": "microsoft.extensions.apidescription.server/6.0.5",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "build/Microsoft.Extensions.ApiDescription.Server.props",
- "build/Microsoft.Extensions.ApiDescription.Server.targets",
- "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
- "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
- "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
- "microsoft.extensions.apidescription.server.nuspec",
- "tools/Newtonsoft.Json.dll",
- "tools/dotnet-getdocument.deps.json",
- "tools/dotnet-getdocument.dll",
- "tools/dotnet-getdocument.runtimeconfig.json",
- "tools/net461-x86/GetDocument.Insider.exe",
- "tools/net461-x86/GetDocument.Insider.exe.config",
- "tools/net461-x86/Microsoft.Win32.Primitives.dll",
- "tools/net461-x86/System.AppContext.dll",
- "tools/net461-x86/System.Buffers.dll",
- "tools/net461-x86/System.Collections.Concurrent.dll",
- "tools/net461-x86/System.Collections.NonGeneric.dll",
- "tools/net461-x86/System.Collections.Specialized.dll",
- "tools/net461-x86/System.Collections.dll",
- "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
- "tools/net461-x86/System.ComponentModel.Primitives.dll",
- "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
- "tools/net461-x86/System.ComponentModel.dll",
- "tools/net461-x86/System.Console.dll",
- "tools/net461-x86/System.Data.Common.dll",
- "tools/net461-x86/System.Diagnostics.Contracts.dll",
- "tools/net461-x86/System.Diagnostics.Debug.dll",
- "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
- "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
- "tools/net461-x86/System.Diagnostics.Process.dll",
- "tools/net461-x86/System.Diagnostics.StackTrace.dll",
- "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
- "tools/net461-x86/System.Diagnostics.Tools.dll",
- "tools/net461-x86/System.Diagnostics.TraceSource.dll",
- "tools/net461-x86/System.Diagnostics.Tracing.dll",
- "tools/net461-x86/System.Drawing.Primitives.dll",
- "tools/net461-x86/System.Dynamic.Runtime.dll",
- "tools/net461-x86/System.Globalization.Calendars.dll",
- "tools/net461-x86/System.Globalization.Extensions.dll",
- "tools/net461-x86/System.Globalization.dll",
- "tools/net461-x86/System.IO.Compression.ZipFile.dll",
- "tools/net461-x86/System.IO.Compression.dll",
- "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
- "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
- "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
- "tools/net461-x86/System.IO.FileSystem.dll",
- "tools/net461-x86/System.IO.IsolatedStorage.dll",
- "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
- "tools/net461-x86/System.IO.Pipes.dll",
- "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
- "tools/net461-x86/System.IO.dll",
- "tools/net461-x86/System.Linq.Expressions.dll",
- "tools/net461-x86/System.Linq.Parallel.dll",
- "tools/net461-x86/System.Linq.Queryable.dll",
- "tools/net461-x86/System.Linq.dll",
- "tools/net461-x86/System.Memory.dll",
- "tools/net461-x86/System.Net.Http.dll",
- "tools/net461-x86/System.Net.NameResolution.dll",
- "tools/net461-x86/System.Net.NetworkInformation.dll",
- "tools/net461-x86/System.Net.Ping.dll",
- "tools/net461-x86/System.Net.Primitives.dll",
- "tools/net461-x86/System.Net.Requests.dll",
- "tools/net461-x86/System.Net.Security.dll",
- "tools/net461-x86/System.Net.Sockets.dll",
- "tools/net461-x86/System.Net.WebHeaderCollection.dll",
- "tools/net461-x86/System.Net.WebSockets.Client.dll",
- "tools/net461-x86/System.Net.WebSockets.dll",
- "tools/net461-x86/System.Numerics.Vectors.dll",
- "tools/net461-x86/System.ObjectModel.dll",
- "tools/net461-x86/System.Reflection.Extensions.dll",
- "tools/net461-x86/System.Reflection.Primitives.dll",
- "tools/net461-x86/System.Reflection.dll",
- "tools/net461-x86/System.Resources.Reader.dll",
- "tools/net461-x86/System.Resources.ResourceManager.dll",
- "tools/net461-x86/System.Resources.Writer.dll",
- "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
- "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
- "tools/net461-x86/System.Runtime.Extensions.dll",
- "tools/net461-x86/System.Runtime.Handles.dll",
- "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
- "tools/net461-x86/System.Runtime.InteropServices.dll",
- "tools/net461-x86/System.Runtime.Numerics.dll",
- "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
- "tools/net461-x86/System.Runtime.Serialization.Json.dll",
- "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
- "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
- "tools/net461-x86/System.Runtime.dll",
- "tools/net461-x86/System.Security.Claims.dll",
- "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
- "tools/net461-x86/System.Security.Cryptography.Csp.dll",
- "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
- "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
- "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
- "tools/net461-x86/System.Security.Principal.dll",
- "tools/net461-x86/System.Security.SecureString.dll",
- "tools/net461-x86/System.Text.Encoding.Extensions.dll",
- "tools/net461-x86/System.Text.Encoding.dll",
- "tools/net461-x86/System.Text.RegularExpressions.dll",
- "tools/net461-x86/System.Threading.Overlapped.dll",
- "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
- "tools/net461-x86/System.Threading.Tasks.dll",
- "tools/net461-x86/System.Threading.Thread.dll",
- "tools/net461-x86/System.Threading.ThreadPool.dll",
- "tools/net461-x86/System.Threading.Timer.dll",
- "tools/net461-x86/System.Threading.dll",
- "tools/net461-x86/System.ValueTuple.dll",
- "tools/net461-x86/System.Xml.ReaderWriter.dll",
- "tools/net461-x86/System.Xml.XDocument.dll",
- "tools/net461-x86/System.Xml.XPath.XDocument.dll",
- "tools/net461-x86/System.Xml.XPath.dll",
- "tools/net461-x86/System.Xml.XmlDocument.dll",
- "tools/net461-x86/System.Xml.XmlSerializer.dll",
- "tools/net461-x86/netstandard.dll",
- "tools/net461/GetDocument.Insider.exe",
- "tools/net461/GetDocument.Insider.exe.config",
- "tools/net461/Microsoft.Win32.Primitives.dll",
- "tools/net461/System.AppContext.dll",
- "tools/net461/System.Buffers.dll",
- "tools/net461/System.Collections.Concurrent.dll",
- "tools/net461/System.Collections.NonGeneric.dll",
- "tools/net461/System.Collections.Specialized.dll",
- "tools/net461/System.Collections.dll",
- "tools/net461/System.ComponentModel.EventBasedAsync.dll",
- "tools/net461/System.ComponentModel.Primitives.dll",
- "tools/net461/System.ComponentModel.TypeConverter.dll",
- "tools/net461/System.ComponentModel.dll",
- "tools/net461/System.Console.dll",
- "tools/net461/System.Data.Common.dll",
- "tools/net461/System.Diagnostics.Contracts.dll",
- "tools/net461/System.Diagnostics.Debug.dll",
- "tools/net461/System.Diagnostics.DiagnosticSource.dll",
- "tools/net461/System.Diagnostics.FileVersionInfo.dll",
- "tools/net461/System.Diagnostics.Process.dll",
- "tools/net461/System.Diagnostics.StackTrace.dll",
- "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
- "tools/net461/System.Diagnostics.Tools.dll",
- "tools/net461/System.Diagnostics.TraceSource.dll",
- "tools/net461/System.Diagnostics.Tracing.dll",
- "tools/net461/System.Drawing.Primitives.dll",
- "tools/net461/System.Dynamic.Runtime.dll",
- "tools/net461/System.Globalization.Calendars.dll",
- "tools/net461/System.Globalization.Extensions.dll",
- "tools/net461/System.Globalization.dll",
- "tools/net461/System.IO.Compression.ZipFile.dll",
- "tools/net461/System.IO.Compression.dll",
- "tools/net461/System.IO.FileSystem.DriveInfo.dll",
- "tools/net461/System.IO.FileSystem.Primitives.dll",
- "tools/net461/System.IO.FileSystem.Watcher.dll",
- "tools/net461/System.IO.FileSystem.dll",
- "tools/net461/System.IO.IsolatedStorage.dll",
- "tools/net461/System.IO.MemoryMappedFiles.dll",
- "tools/net461/System.IO.Pipes.dll",
- "tools/net461/System.IO.UnmanagedMemoryStream.dll",
- "tools/net461/System.IO.dll",
- "tools/net461/System.Linq.Expressions.dll",
- "tools/net461/System.Linq.Parallel.dll",
- "tools/net461/System.Linq.Queryable.dll",
- "tools/net461/System.Linq.dll",
- "tools/net461/System.Memory.dll",
- "tools/net461/System.Net.Http.dll",
- "tools/net461/System.Net.NameResolution.dll",
- "tools/net461/System.Net.NetworkInformation.dll",
- "tools/net461/System.Net.Ping.dll",
- "tools/net461/System.Net.Primitives.dll",
- "tools/net461/System.Net.Requests.dll",
- "tools/net461/System.Net.Security.dll",
- "tools/net461/System.Net.Sockets.dll",
- "tools/net461/System.Net.WebHeaderCollection.dll",
- "tools/net461/System.Net.WebSockets.Client.dll",
- "tools/net461/System.Net.WebSockets.dll",
- "tools/net461/System.Numerics.Vectors.dll",
- "tools/net461/System.ObjectModel.dll",
- "tools/net461/System.Reflection.Extensions.dll",
- "tools/net461/System.Reflection.Primitives.dll",
- "tools/net461/System.Reflection.dll",
- "tools/net461/System.Resources.Reader.dll",
- "tools/net461/System.Resources.ResourceManager.dll",
- "tools/net461/System.Resources.Writer.dll",
- "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
- "tools/net461/System.Runtime.Extensions.dll",
- "tools/net461/System.Runtime.Handles.dll",
- "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
- "tools/net461/System.Runtime.InteropServices.dll",
- "tools/net461/System.Runtime.Numerics.dll",
- "tools/net461/System.Runtime.Serialization.Formatters.dll",
- "tools/net461/System.Runtime.Serialization.Json.dll",
- "tools/net461/System.Runtime.Serialization.Primitives.dll",
- "tools/net461/System.Runtime.Serialization.Xml.dll",
- "tools/net461/System.Runtime.dll",
- "tools/net461/System.Security.Claims.dll",
- "tools/net461/System.Security.Cryptography.Algorithms.dll",
- "tools/net461/System.Security.Cryptography.Csp.dll",
- "tools/net461/System.Security.Cryptography.Encoding.dll",
- "tools/net461/System.Security.Cryptography.Primitives.dll",
- "tools/net461/System.Security.Cryptography.X509Certificates.dll",
- "tools/net461/System.Security.Principal.dll",
- "tools/net461/System.Security.SecureString.dll",
- "tools/net461/System.Text.Encoding.Extensions.dll",
- "tools/net461/System.Text.Encoding.dll",
- "tools/net461/System.Text.RegularExpressions.dll",
- "tools/net461/System.Threading.Overlapped.dll",
- "tools/net461/System.Threading.Tasks.Parallel.dll",
- "tools/net461/System.Threading.Tasks.dll",
- "tools/net461/System.Threading.Thread.dll",
- "tools/net461/System.Threading.ThreadPool.dll",
- "tools/net461/System.Threading.Timer.dll",
- "tools/net461/System.Threading.dll",
- "tools/net461/System.ValueTuple.dll",
- "tools/net461/System.Xml.ReaderWriter.dll",
- "tools/net461/System.Xml.XDocument.dll",
- "tools/net461/System.Xml.XPath.XDocument.dll",
- "tools/net461/System.Xml.XPath.dll",
- "tools/net461/System.Xml.XmlDocument.dll",
- "tools/net461/System.Xml.XmlSerializer.dll",
- "tools/net461/netstandard.dll",
- "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
- "tools/netcoreapp2.1/GetDocument.Insider.dll",
- "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
- "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
- ]
- },
- "Microsoft.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.Memory/8.0.1": {
- "sha512": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==",
- "type": "package",
- "path": "microsoft.extensions.caching.memory/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
- "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
- "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
- "microsoft.extensions.caching.memory.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Configuration/8.0.0": {
- "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
- "type": "package",
- "path": "microsoft.extensions.configuration/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets",
- "lib/net462/Microsoft.Extensions.Configuration.dll",
- "lib/net462/Microsoft.Extensions.Configuration.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
- "microsoft.extensions.configuration.8.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "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.Configuration.Binder/8.0.0": {
- "sha512": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==",
- "type": "package",
- "path": "microsoft.extensions.configuration.binder/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll",
- "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets",
- "lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
- "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.binder.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Configuration.FileExtensions/8.0.1": {
- "sha512": "EJzSNO9oaAXnTdtdNO6npPRsIIeZCBSNmdQ091VDO7fBiOtJAAeEq6dtrVXIi3ZyjC5XRSAtVvF8SzcneRHqKQ==",
- "type": "package",
- "path": "microsoft.extensions.configuration.fileextensions/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets",
- "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "microsoft.extensions.configuration.fileextensions.8.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.fileextensions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Configuration.Json/8.0.1": {
- "sha512": "L89DLNuimOghjV3tLx0ArFDwVEJD6+uGB3BMCMX01kaLzXkaXHb2021xOMl2QOxUxbdePKUZsUY7n2UUkycjRg==",
- "type": "package",
- "path": "microsoft.extensions.configuration.json/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets",
- "lib/net462/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net462/Microsoft.Extensions.Configuration.Json.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
- "microsoft.extensions.configuration.json.8.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.json.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection/8.0.1": {
- "sha512": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/8.0.1",
- "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.1.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.Diagnostics.Abstractions/8.0.0": {
- "sha512": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==",
- "type": "package",
- "path": "microsoft.extensions.diagnostics.abstractions/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
- "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512",
- "microsoft.extensions.diagnostics.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
- "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
- "type": "package",
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/net8.0/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.8.0.0.nupkg.sha512",
- "microsoft.extensions.fileproviders.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
- "sha512": "UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==",
- "type": "package",
- "path": "microsoft.extensions.fileproviders.physical/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
- "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
- "microsoft.extensions.fileproviders.physical.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
- "sha512": "OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==",
- "type": "package",
- "path": "microsoft.extensions.filesystemglobbing/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
- "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
- "microsoft.extensions.filesystemglobbing.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
- "sha512": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==",
- "type": "package",
- "path": "microsoft.extensions.hosting.abstractions/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
- "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512",
- "microsoft.extensions.hosting.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Identity.Core/8.0.6": {
- "sha512": "a9tAy8vVTJnew/imk+pfNiZrjHH6stO4YMhZUs++hmeVCAmjma88rV62rsRO+lFrINR5aqBFvK3kE8MHnGZ+7w==",
- "type": "package",
- "path": "microsoft.extensions.identity.core/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net462/Microsoft.Extensions.Identity.Core.dll",
- "lib/net462/Microsoft.Extensions.Identity.Core.xml",
- "lib/net8.0/Microsoft.Extensions.Identity.Core.dll",
- "lib/net8.0/Microsoft.Extensions.Identity.Core.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
- "microsoft.extensions.identity.core.8.0.6.nupkg.sha512",
- "microsoft.extensions.identity.core.nuspec"
- ]
- },
- "Microsoft.Extensions.Identity.Stores/8.0.6": {
- "sha512": "KGj7DLvkMYj5HzODDu/OiFIK/a4beU0nwfC/khZnl0uelkOAmo11K5iIFvYBfajLIn2CCbqXR/Wr5lVh8IHvZw==",
- "type": "package",
- "path": "microsoft.extensions.identity.stores/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net462/Microsoft.Extensions.Identity.Stores.dll",
- "lib/net462/Microsoft.Extensions.Identity.Stores.xml",
- "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll",
- "lib/net8.0/Microsoft.Extensions.Identity.Stores.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
- "microsoft.extensions.identity.stores.8.0.6.nupkg.sha512",
- "microsoft.extensions.identity.stores.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging/8.0.1": {
- "sha512": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==",
- "type": "package",
- "path": "microsoft.extensions.logging/8.0.1",
- "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.1.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.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.61.3": {
- "sha512": "naJo/Qm35Caaoxp5utcw+R8eU8ZtLz2ALh8S+gkekOYQ1oazfCQMWVT4NJ/FnHzdIJlm8dMz0oMpMGCabx5odA==",
- "type": "package",
- "path": "microsoft.identity.client/4.61.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "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/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.61.3.nupkg.sha512",
- "microsoft.identity.client.nuspec"
- ]
- },
- "Microsoft.Identity.Client.Extensions.Msal/4.61.3": {
- "sha512": "PWnJcznrSGr25MN8ajlc2XIDW4zCFu0U6FkpaNLEWLgd1NgFCp5uDY3mqLDgM8zCN8hqj8yo5wHYfLB2HjcdGw==",
- "type": "package",
- "path": "microsoft.identity.client.extensions.msal/4.61.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.61.3.nupkg.sha512",
- "microsoft.identity.client.extensions.msal.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Abstractions/8.9.0": {
- "sha512": "b/87S+lb86U7Ns7xgTKnqql6XGNr8hBE+k0rj5sRWwXeJe6uA+3mSjvpZ9GoQo3cB9zlwzcbGBU8KM44qX0t1g==",
- "type": "package",
- "path": "microsoft.identitymodel.abstractions/8.9.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "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/net8.0/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
- "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
- "microsoft.identitymodel.abstractions.8.9.0.nupkg.sha512",
- "microsoft.identitymodel.abstractions.nuspec"
- ]
- },
- "Microsoft.IdentityModel.JsonWebTokens/8.9.0": {
- "sha512": "QcNC57hJLc6LIcy2PTYlD8iRBQBm6bqPKbCjsRYWlp7QTyJisF0ImUWaa3mx6wWaS1upwYneYVPiIiNSlAy16g==",
- "type": "package",
- "path": "microsoft.identitymodel.jsonwebtokens/8.9.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "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/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
- "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
- "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll",
- "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml",
- "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
- "microsoft.identitymodel.jsonwebtokens.8.9.0.nupkg.sha512",
- "microsoft.identitymodel.jsonwebtokens.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Logging/8.9.0": {
- "sha512": "rswvH4ZANbFsJYEn+PGEOj7nkkBRjnsb7LcYGAS16VUJpSeKULLeYSy/7SK6jLO1WTT12xqdeL4mj3dYT7GdoQ==",
- "type": "package",
- "path": "microsoft.identitymodel.logging/8.9.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "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/net8.0/Microsoft.IdentityModel.Logging.dll",
- "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
- "lib/net9.0/Microsoft.IdentityModel.Logging.dll",
- "lib/net9.0/Microsoft.IdentityModel.Logging.xml",
- "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
- "microsoft.identitymodel.logging.8.9.0.nupkg.sha512",
- "microsoft.identitymodel.logging.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Protocols/7.1.2": {
- "sha512": "SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==",
- "type": "package",
- "path": "microsoft.identitymodel.protocols/7.1.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "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/net8.0/Microsoft.IdentityModel.Protocols.dll",
- "lib/net8.0/Microsoft.IdentityModel.Protocols.xml",
- "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
- "microsoft.identitymodel.protocols.7.1.2.nupkg.sha512",
- "microsoft.identitymodel.protocols.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": {
- "sha512": "6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==",
- "type": "package",
- "path": "microsoft.identitymodel.protocols.openidconnect/7.1.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "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/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
- "lib/net8.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.7.1.2.nupkg.sha512",
- "microsoft.identitymodel.protocols.openidconnect.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Tokens/8.9.0": {
- "sha512": "qK6kW5qZvDj7E5RLWQ9gzJxQe5GUz7+7bXrLQQydSDF9hTf5Ip2qHuAQW3Fg9GND6jkjTr7IXAZFmBHadNQi4Q==",
- "type": "package",
- "path": "microsoft.identitymodel.tokens/8.9.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "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/net8.0/Microsoft.IdentityModel.Tokens.dll",
- "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
- "lib/net9.0/Microsoft.IdentityModel.Tokens.dll",
- "lib/net9.0/Microsoft.IdentityModel.Tokens.xml",
- "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
- "microsoft.identitymodel.tokens.8.9.0.nupkg.sha512",
- "microsoft.identitymodel.tokens.nuspec"
- ]
- },
- "Microsoft.IO.RecyclableMemoryStream/3.0.1": {
- "sha512": "s/s20YTVY9r9TPfTrN5g8zPF1YhwxyqO6PxUkrYTGI2B+OGPe9AdajWZrLhFqXIvqIW23fnUE4+ztrUWNU1+9g==",
- "type": "package",
- "path": "microsoft.io.recyclablememorystream/3.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll",
- "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.xml",
- "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll",
- "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml",
- "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll",
- "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml",
- "microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512",
- "microsoft.io.recyclablememorystream.nuspec"
- ]
- },
- "Microsoft.Net.Http.Headers/2.0.2": {
- "sha512": "hNhJU+Sd7Ws/yrBnakUWKWMyGiDUJE5lTkJfWe5xPL8YGTiL6Es07H9CcTyaYYwVlgW06uDVN0YhhH+t4EjdCw==",
- "type": "package",
- "path": "microsoft.net.http.headers/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
- "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
- "microsoft.net.http.headers.2.0.2.nupkg.sha512",
- "microsoft.net.http.headers.nuspec"
- ]
- },
- "Microsoft.NETCore.Platforms/1.1.1": {
- "sha512": "TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==",
- "type": "package",
- "path": "microsoft.netcore.platforms/1.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.1.1.1.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json"
- ]
- },
- "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.OpenApi/1.6.14": {
- "sha512": "tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==",
- "type": "package",
- "path": "microsoft.openapi/1.6.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/netstandard2.0/Microsoft.OpenApi.dll",
- "lib/netstandard2.0/Microsoft.OpenApi.pdb",
- "lib/netstandard2.0/Microsoft.OpenApi.xml",
- "microsoft.openapi.1.6.14.nupkg.sha512",
- "microsoft.openapi.nuspec"
- ]
- },
- "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.VisualStudio.Azure.Containers.Tools.Targets/1.21.0": {
- "sha512": "8NudeHOE56YsY59HYY89akRMup8Ho+7Y3cADTGjajjWroXVU9RQai2nA6PfteB8AuzmRHZ5NZQB2BnWhQEul5g==",
- "type": "package",
- "path": "microsoft.visualstudio.azure.containers.tools.targets/1.21.0",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "CHANGELOG.md",
- "EULA.md",
- "ThirdPartyNotices.txt",
- "build/Container.props",
- "build/Container.targets",
- "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props",
- "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets",
- "build/Rules/GeneralBrowseObject.xaml",
- "build/Rules/cs-CZ/GeneralBrowseObject.xaml",
- "build/Rules/de-DE/GeneralBrowseObject.xaml",
- "build/Rules/es-ES/GeneralBrowseObject.xaml",
- "build/Rules/fr-FR/GeneralBrowseObject.xaml",
- "build/Rules/it-IT/GeneralBrowseObject.xaml",
- "build/Rules/ja-JP/GeneralBrowseObject.xaml",
- "build/Rules/ko-KR/GeneralBrowseObject.xaml",
- "build/Rules/pl-PL/GeneralBrowseObject.xaml",
- "build/Rules/pt-BR/GeneralBrowseObject.xaml",
- "build/Rules/ru-RU/GeneralBrowseObject.xaml",
- "build/Rules/tr-TR/GeneralBrowseObject.xaml",
- "build/Rules/zh-CN/GeneralBrowseObject.xaml",
- "build/Rules/zh-TW/GeneralBrowseObject.xaml",
- "build/ToolsTarget.props",
- "build/ToolsTarget.targets",
- "icon.png",
- "microsoft.visualstudio.azure.containers.tools.targets.1.21.0.nupkg.sha512",
- "microsoft.visualstudio.azure.containers.tools.targets.nuspec",
- "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll",
- "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll",
- "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll",
- "tools/Newtonsoft.Json.dll",
- "tools/System.Security.Principal.Windows.dll",
- "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
- "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
- "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
- "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
- "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
- "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
- "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
- "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
- "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
- "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
- "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
- "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll",
- "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll",
- "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll",
- "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll"
- ]
- },
- "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"
- ]
- },
- "Microsoft.Win32.SystemEvents/8.0.0": {
- "sha512": "9opKRyOKMCi2xJ7Bj7kxtZ1r9vbzosMvRrdEhVhDz8j8MoBGgB+WmC94yH839NPH+BclAjtQ/pyagvi/8gDLkw==",
- "type": "package",
- "path": "microsoft.win32.systemevents/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
- "lib/net462/Microsoft.Win32.SystemEvents.dll",
- "lib/net462/Microsoft.Win32.SystemEvents.xml",
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
- "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
- "lib/net7.0/Microsoft.Win32.SystemEvents.dll",
- "lib/net7.0/Microsoft.Win32.SystemEvents.xml",
- "lib/net8.0/Microsoft.Win32.SystemEvents.dll",
- "lib/net8.0/Microsoft.Win32.SystemEvents.xml",
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
- "microsoft.win32.systemevents.8.0.0.nupkg.sha512",
- "microsoft.win32.systemevents.nuspec",
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
- "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml",
- "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/net8.0/Microsoft.Win32.SystemEvents.xml",
- "useSharedDesignerContext.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"
- ]
- },
- "Mono.TextTemplating/2.2.1": {
- "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
- "type": "package",
- "path": "mono.texttemplating/2.2.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net472/Mono.TextTemplating.dll",
- "lib/netstandard2.0/Mono.TextTemplating.dll",
- "mono.texttemplating.2.2.1.nupkg.sha512",
- "mono.texttemplating.nuspec"
- ]
- },
- "NETCore.MailKit/2.1.0": {
- "sha512": "+1C0sg4YJQczp/2RVrVbKLIntg7Mou7Ie5M01UBiAsxmIarjfBRlCgKK4sEbPyGask52VRKV29/Zi+41B6LPXA==",
- "type": "package",
- "path": "netcore.mailkit/2.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.1/NETCore.MailKit.dll",
- "netcore.mailkit.2.1.0.nupkg.sha512",
- "netcore.mailkit.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"
- ]
- },
- "PuppeteerSharp/6.0.0": {
- "sha512": "wJIQH1qIVqC7iS+RrnfDfK4uQLqrMvWLxbMFXGDrClQGf7LKA4BDpZVPd/0hYtWjYJcsAs9UCn826VUxtD3yxw==",
- "type": "package",
- "path": "puppeteersharp/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/PuppeteerSharp.dll",
- "lib/netstandard2.0/PuppeteerSharp.xml",
- "puppeteersharp.6.0.0.nupkg.sha512",
- "puppeteersharp.nuspec"
- ]
- },
- "QRCoder/1.4.3": {
- "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==",
- "type": "package",
- "path": "qrcoder/1.4.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net35/QRCoder.dll",
- "lib/net40/QRCoder.dll",
- "lib/net5.0-windows7.0/QRCoder.dll",
- "lib/net5.0/QRCoder.dll",
- "lib/net6.0-windows7.0/QRCoder.dll",
- "lib/net6.0/QRCoder.dll",
- "lib/netstandard1.3/QRCoder.dll",
- "lib/netstandard2.0/QRCoder.dll",
- "nuget-icon.png",
- "nuget-readme.md",
- "qrcoder.1.4.3.nupkg.sha512",
- "qrcoder.nuspec"
- ]
- },
- "RazorLight/2.3.1": {
- "sha512": "Eegx5xEQ2AvydJB5lHTZgIQQyCZJ6NLJb1ePinAGmv5S42rvj8o/FRZFxrB0jQhXmA4uu93x+J/ZVE1qBv4dLw==",
- "type": "package",
- "path": "razorlight/2.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE",
- "lib/net5.0/RazorLight.dll",
- "lib/net5.0/RazorLight.xml",
- "lib/net6.0/RazorLight.dll",
- "lib/net6.0/RazorLight.xml",
- "lib/netcoreapp3.1/RazorLight.dll",
- "lib/netcoreapp3.1/RazorLight.xml",
- "lib/netstandard2.0/RazorLight.dll",
- "lib/netstandard2.0/RazorLight.xml",
- "razorlight.2.3.1.nupkg.sha512",
- "razorlight.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.Data.SqlClient.sni/4.7.0": {
- "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
- "type": "package",
- "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
- "runtime.native.system.data.sqlclient.sni.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "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"
- ]
- },
- "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
- "type": "package",
- "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
- "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
- "runtimes/win-arm64/native/sni.dll",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
- "type": "package",
- "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
- "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
- "runtimes/win-x64/native/sni.dll",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
- "type": "package",
- "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
- "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
- "runtimes/win-x86/native/sni.dll",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Serilog/3.1.1": {
- "sha512": "P6G4/4Kt9bT635bhuwdXlJ2SCqqn2nhh4gqFqQueCOr9bK/e7W9ll/IoX1Ter948cV2Z/5+5v8pAfJYUISY03A==",
- "type": "package",
- "path": "serilog/3.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net462/Serilog.dll",
- "lib/net462/Serilog.xml",
- "lib/net471/Serilog.dll",
- "lib/net471/Serilog.xml",
- "lib/net5.0/Serilog.dll",
- "lib/net5.0/Serilog.xml",
- "lib/net6.0/Serilog.dll",
- "lib/net6.0/Serilog.xml",
- "lib/net7.0/Serilog.dll",
- "lib/net7.0/Serilog.xml",
- "lib/netstandard2.0/Serilog.dll",
- "lib/netstandard2.0/Serilog.xml",
- "lib/netstandard2.1/Serilog.dll",
- "lib/netstandard2.1/Serilog.xml",
- "serilog.3.1.1.nupkg.sha512",
- "serilog.nuspec"
- ]
- },
- "Serilog.AspNetCore/8.0.3": {
- "sha512": "Y5at41mc0OV982DEJslBKHd6uzcWO6POwR3QceJ6gtpMPxCzm4+FElGPF0RdaTD7MGsP6XXE05LMbSi0NO+sXg==",
- "type": "package",
- "path": "serilog.aspnetcore/8.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net462/Serilog.AspNetCore.dll",
- "lib/net462/Serilog.AspNetCore.xml",
- "lib/net6.0/Serilog.AspNetCore.dll",
- "lib/net6.0/Serilog.AspNetCore.xml",
- "lib/net7.0/Serilog.AspNetCore.dll",
- "lib/net7.0/Serilog.AspNetCore.xml",
- "lib/net8.0/Serilog.AspNetCore.dll",
- "lib/net8.0/Serilog.AspNetCore.xml",
- "lib/netstandard2.0/Serilog.AspNetCore.dll",
- "lib/netstandard2.0/Serilog.AspNetCore.xml",
- "serilog.aspnetcore.8.0.3.nupkg.sha512",
- "serilog.aspnetcore.nuspec"
- ]
- },
- "Serilog.Extensions.Hosting/8.0.0": {
- "sha512": "db0OcbWeSCvYQkHWu6n0v40N4kKaTAXNjlM3BKvcbwvNzYphQFcBR+36eQ/7hMMwOkJvAyLC2a9/jNdUL5NjtQ==",
- "type": "package",
- "path": "serilog.extensions.hosting/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net462/Serilog.Extensions.Hosting.dll",
- "lib/net462/Serilog.Extensions.Hosting.xml",
- "lib/net6.0/Serilog.Extensions.Hosting.dll",
- "lib/net6.0/Serilog.Extensions.Hosting.xml",
- "lib/net7.0/Serilog.Extensions.Hosting.dll",
- "lib/net7.0/Serilog.Extensions.Hosting.xml",
- "lib/net8.0/Serilog.Extensions.Hosting.dll",
- "lib/net8.0/Serilog.Extensions.Hosting.xml",
- "lib/netstandard2.0/Serilog.Extensions.Hosting.dll",
- "lib/netstandard2.0/Serilog.Extensions.Hosting.xml",
- "serilog.extensions.hosting.8.0.0.nupkg.sha512",
- "serilog.extensions.hosting.nuspec"
- ]
- },
- "Serilog.Extensions.Logging/8.0.0": {
- "sha512": "YEAMWu1UnWgf1c1KP85l1SgXGfiVo0Rz6x08pCiPOIBt2Qe18tcZLvdBUuV5o1QHvrs8FAry9wTIhgBRtjIlEg==",
- "type": "package",
- "path": "serilog.extensions.logging/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net462/Serilog.Extensions.Logging.dll",
- "lib/net462/Serilog.Extensions.Logging.xml",
- "lib/net6.0/Serilog.Extensions.Logging.dll",
- "lib/net6.0/Serilog.Extensions.Logging.xml",
- "lib/net7.0/Serilog.Extensions.Logging.dll",
- "lib/net7.0/Serilog.Extensions.Logging.xml",
- "lib/net8.0/Serilog.Extensions.Logging.dll",
- "lib/net8.0/Serilog.Extensions.Logging.xml",
- "lib/netstandard2.0/Serilog.Extensions.Logging.dll",
- "lib/netstandard2.0/Serilog.Extensions.Logging.xml",
- "lib/netstandard2.1/Serilog.Extensions.Logging.dll",
- "lib/netstandard2.1/Serilog.Extensions.Logging.xml",
- "serilog-extension-nuget.png",
- "serilog.extensions.logging.8.0.0.nupkg.sha512",
- "serilog.extensions.logging.nuspec"
- ]
- },
- "Serilog.Formatting.Compact/2.0.0": {
- "sha512": "ob6z3ikzFM3D1xalhFuBIK1IOWf+XrQq+H4KeH4VqBcPpNcmUgZlRQ2h3Q7wvthpdZBBoY86qZOI2LCXNaLlNA==",
- "type": "package",
- "path": "serilog.formatting.compact/2.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net462/Serilog.Formatting.Compact.dll",
- "lib/net462/Serilog.Formatting.Compact.xml",
- "lib/net471/Serilog.Formatting.Compact.dll",
- "lib/net471/Serilog.Formatting.Compact.xml",
- "lib/net6.0/Serilog.Formatting.Compact.dll",
- "lib/net6.0/Serilog.Formatting.Compact.xml",
- "lib/net7.0/Serilog.Formatting.Compact.dll",
- "lib/net7.0/Serilog.Formatting.Compact.xml",
- "lib/netstandard2.0/Serilog.Formatting.Compact.dll",
- "lib/netstandard2.0/Serilog.Formatting.Compact.xml",
- "lib/netstandard2.1/Serilog.Formatting.Compact.dll",
- "lib/netstandard2.1/Serilog.Formatting.Compact.xml",
- "serilog-extension-nuget.png",
- "serilog.formatting.compact.2.0.0.nupkg.sha512",
- "serilog.formatting.compact.nuspec"
- ]
- },
- "Serilog.Settings.Configuration/8.0.4": {
- "sha512": "pkxvq0umBKK8IKFJc1aV5S/HGRG/NIxJ6FV42KaTPLfDmBOAbBUB1m5gqqlGxzEa1MgDDWtQlWJdHTSxVWNx+Q==",
- "type": "package",
- "path": "serilog.settings.configuration/8.0.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net462/Serilog.Settings.Configuration.dll",
- "lib/net462/Serilog.Settings.Configuration.xml",
- "lib/net6.0/Serilog.Settings.Configuration.dll",
- "lib/net6.0/Serilog.Settings.Configuration.xml",
- "lib/net7.0/Serilog.Settings.Configuration.dll",
- "lib/net7.0/Serilog.Settings.Configuration.xml",
- "lib/net8.0/Serilog.Settings.Configuration.dll",
- "lib/net8.0/Serilog.Settings.Configuration.xml",
- "lib/netstandard2.0/Serilog.Settings.Configuration.dll",
- "lib/netstandard2.0/Serilog.Settings.Configuration.xml",
- "serilog.settings.configuration.8.0.4.nupkg.sha512",
- "serilog.settings.configuration.nuspec"
- ]
- },
- "Serilog.Sinks.Console/5.0.0": {
- "sha512": "IZ6bn79k+3SRXOBpwSOClUHikSkp2toGPCZ0teUkscv4dpDg9E2R2xVsNkLmwddE4OpNVO3N0xiYsAH556vN8Q==",
- "type": "package",
- "path": "serilog.sinks.console/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net462/Serilog.Sinks.Console.dll",
- "lib/net462/Serilog.Sinks.Console.xml",
- "lib/net471/Serilog.Sinks.Console.dll",
- "lib/net471/Serilog.Sinks.Console.xml",
- "lib/net5.0/Serilog.Sinks.Console.dll",
- "lib/net5.0/Serilog.Sinks.Console.xml",
- "lib/net6.0/Serilog.Sinks.Console.dll",
- "lib/net6.0/Serilog.Sinks.Console.xml",
- "lib/net7.0/Serilog.Sinks.Console.dll",
- "lib/net7.0/Serilog.Sinks.Console.xml",
- "lib/netstandard2.0/Serilog.Sinks.Console.dll",
- "lib/netstandard2.0/Serilog.Sinks.Console.xml",
- "lib/netstandard2.1/Serilog.Sinks.Console.dll",
- "lib/netstandard2.1/Serilog.Sinks.Console.xml",
- "serilog.sinks.console.5.0.0.nupkg.sha512",
- "serilog.sinks.console.nuspec"
- ]
- },
- "Serilog.Sinks.Debug/2.0.0": {
- "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==",
- "type": "package",
- "path": "serilog.sinks.debug/2.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "icon.png",
- "lib/net45/Serilog.Sinks.Debug.dll",
- "lib/net45/Serilog.Sinks.Debug.xml",
- "lib/net46/Serilog.Sinks.Debug.dll",
- "lib/net46/Serilog.Sinks.Debug.xml",
- "lib/netstandard1.0/Serilog.Sinks.Debug.dll",
- "lib/netstandard1.0/Serilog.Sinks.Debug.xml",
- "lib/netstandard2.0/Serilog.Sinks.Debug.dll",
- "lib/netstandard2.0/Serilog.Sinks.Debug.xml",
- "lib/netstandard2.1/Serilog.Sinks.Debug.dll",
- "lib/netstandard2.1/Serilog.Sinks.Debug.xml",
- "serilog.sinks.debug.2.0.0.nupkg.sha512",
- "serilog.sinks.debug.nuspec"
- ]
- },
- "Serilog.Sinks.File/5.0.0": {
- "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
- "type": "package",
- "path": "serilog.sinks.file/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "images/icon.png",
- "lib/net45/Serilog.Sinks.File.dll",
- "lib/net45/Serilog.Sinks.File.pdb",
- "lib/net45/Serilog.Sinks.File.xml",
- "lib/net5.0/Serilog.Sinks.File.dll",
- "lib/net5.0/Serilog.Sinks.File.pdb",
- "lib/net5.0/Serilog.Sinks.File.xml",
- "lib/netstandard1.3/Serilog.Sinks.File.dll",
- "lib/netstandard1.3/Serilog.Sinks.File.pdb",
- "lib/netstandard1.3/Serilog.Sinks.File.xml",
- "lib/netstandard2.0/Serilog.Sinks.File.dll",
- "lib/netstandard2.0/Serilog.Sinks.File.pdb",
- "lib/netstandard2.0/Serilog.Sinks.File.xml",
- "lib/netstandard2.1/Serilog.Sinks.File.dll",
- "lib/netstandard2.1/Serilog.Sinks.File.pdb",
- "lib/netstandard2.1/Serilog.Sinks.File.xml",
- "serilog.sinks.file.5.0.0.nupkg.sha512",
- "serilog.sinks.file.nuspec"
- ]
- },
- "SharpZipLib/1.4.2": {
- "sha512": "yjj+3zgz8zgXpiiC3ZdF/iyTBbz2fFvMxZFEBPUcwZjIvXOf37Ylm+K58hqMfIBt5JgU/Z2uoUS67JmTLe973A==",
- "type": "package",
- "path": "sharpziplib/1.4.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "images/sharpziplib-nuget-256x256.png",
- "lib/net6.0/ICSharpCode.SharpZipLib.dll",
- "lib/net6.0/ICSharpCode.SharpZipLib.pdb",
- "lib/net6.0/ICSharpCode.SharpZipLib.xml",
- "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
- "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
- "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
- "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll",
- "lib/netstandard2.1/ICSharpCode.SharpZipLib.pdb",
- "lib/netstandard2.1/ICSharpCode.SharpZipLib.xml",
- "sharpziplib.1.4.2.nupkg.sha512",
- "sharpziplib.nuspec"
- ]
- },
- "Swashbuckle.AspNetCore/6.6.2": {
- "sha512": "+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==",
- "type": "package",
- "path": "swashbuckle.aspnetcore/6.6.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "build/Swashbuckle.AspNetCore.props",
- "swashbuckle.aspnetcore.6.6.2.nupkg.sha512",
- "swashbuckle.aspnetcore.nuspec"
- ]
- },
- "Swashbuckle.AspNetCore.Swagger/6.6.2": {
- "sha512": "ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==",
- "type": "package",
- "path": "swashbuckle.aspnetcore.swagger/6.6.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/net8.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
- "package-readme.md",
- "swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512",
- "swashbuckle.aspnetcore.swagger.nuspec"
- ]
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": {
- "sha512": "zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==",
- "type": "package",
- "path": "swashbuckle.aspnetcore.swaggergen/6.6.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
- "package-readme.md",
- "swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512",
- "swashbuckle.aspnetcore.swaggergen.nuspec"
- ]
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": {
- "sha512": "mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==",
- "type": "package",
- "path": "swashbuckle.aspnetcore.swaggerui/6.6.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
- "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
- "package-readme.md",
- "swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512",
- "swashbuckle.aspnetcore.swaggerui.nuspec"
- ]
- },
- "System.Buffers/4.5.1": {
- "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
- "type": "package",
- "path": "system.buffers/4.5.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Buffers.dll",
- "lib/net461/System.Buffers.xml",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.1/System.Buffers.dll",
- "lib/netstandard1.1/System.Buffers.xml",
- "lib/netstandard2.0/System.Buffers.dll",
- "lib/netstandard2.0/System.Buffers.xml",
- "lib/uap10.0.16299/_._",
- "ref/net45/System.Buffers.dll",
- "ref/net45/System.Buffers.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.1/System.Buffers.dll",
- "ref/netstandard1.1/System.Buffers.xml",
- "ref/netstandard2.0/System.Buffers.dll",
- "ref/netstandard2.0/System.Buffers.xml",
- "ref/uap10.0.16299/_._",
- "system.buffers.4.5.1.nupkg.sha512",
- "system.buffers.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "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/6.0.0": {
- "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==",
- "type": "package",
- "path": "system.codedom/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.CodeDom.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.CodeDom.dll",
- "lib/net461/System.CodeDom.xml",
- "lib/net6.0/System.CodeDom.dll",
- "lib/net6.0/System.CodeDom.xml",
- "lib/netstandard2.0/System.CodeDom.dll",
- "lib/netstandard2.0/System.CodeDom.xml",
- "system.codedom.6.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/6.0.0": {
- "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
- "type": "package",
- "path": "system.collections.immutable/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Collections.Immutable.dll",
- "lib/net461/System.Collections.Immutable.xml",
- "lib/net6.0/System.Collections.Immutable.dll",
- "lib/net6.0/System.Collections.Immutable.xml",
- "lib/netstandard2.0/System.Collections.Immutable.dll",
- "lib/netstandard2.0/System.Collections.Immutable.xml",
- "system.collections.immutable.6.0.0.nupkg.sha512",
- "system.collections.immutable.nuspec",
- "useSharedDesignerContext.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.Composition/6.0.0": {
- "sha512": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
- "type": "package",
- "path": "system.composition/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "system.composition.6.0.0.nupkg.sha512",
- "system.composition.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.AttributedModel/6.0.0": {
- "sha512": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
- "type": "package",
- "path": "system.composition.attributedmodel/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.AttributedModel.dll",
- "lib/net461/System.Composition.AttributedModel.xml",
- "lib/net6.0/System.Composition.AttributedModel.dll",
- "lib/net6.0/System.Composition.AttributedModel.xml",
- "lib/netstandard2.0/System.Composition.AttributedModel.dll",
- "lib/netstandard2.0/System.Composition.AttributedModel.xml",
- "system.composition.attributedmodel.6.0.0.nupkg.sha512",
- "system.composition.attributedmodel.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Convention/6.0.0": {
- "sha512": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
- "type": "package",
- "path": "system.composition.convention/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.Convention.dll",
- "lib/net461/System.Composition.Convention.xml",
- "lib/net6.0/System.Composition.Convention.dll",
- "lib/net6.0/System.Composition.Convention.xml",
- "lib/netstandard2.0/System.Composition.Convention.dll",
- "lib/netstandard2.0/System.Composition.Convention.xml",
- "system.composition.convention.6.0.0.nupkg.sha512",
- "system.composition.convention.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Hosting/6.0.0": {
- "sha512": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
- "type": "package",
- "path": "system.composition.hosting/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.Hosting.dll",
- "lib/net461/System.Composition.Hosting.xml",
- "lib/net6.0/System.Composition.Hosting.dll",
- "lib/net6.0/System.Composition.Hosting.xml",
- "lib/netstandard2.0/System.Composition.Hosting.dll",
- "lib/netstandard2.0/System.Composition.Hosting.xml",
- "system.composition.hosting.6.0.0.nupkg.sha512",
- "system.composition.hosting.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.Runtime/6.0.0": {
- "sha512": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
- "type": "package",
- "path": "system.composition.runtime/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.Runtime.dll",
- "lib/net461/System.Composition.Runtime.xml",
- "lib/net6.0/System.Composition.Runtime.dll",
- "lib/net6.0/System.Composition.Runtime.xml",
- "lib/netstandard2.0/System.Composition.Runtime.dll",
- "lib/netstandard2.0/System.Composition.Runtime.xml",
- "system.composition.runtime.6.0.0.nupkg.sha512",
- "system.composition.runtime.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Composition.TypedParts/6.0.0": {
- "sha512": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
- "type": "package",
- "path": "system.composition.typedparts/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Composition.TypedParts.dll",
- "lib/net461/System.Composition.TypedParts.xml",
- "lib/net6.0/System.Composition.TypedParts.dll",
- "lib/net6.0/System.Composition.TypedParts.xml",
- "lib/netstandard2.0/System.Composition.TypedParts.dll",
- "lib/netstandard2.0/System.Composition.TypedParts.xml",
- "system.composition.typedparts.6.0.0.nupkg.sha512",
- "system.composition.typedparts.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Configuration.ConfigurationManager/6.0.1": {
- "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
- "type": "package",
- "path": "system.configuration.configurationmanager/6.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Configuration.ConfigurationManager.dll",
- "lib/net461/System.Configuration.ConfigurationManager.xml",
- "lib/net6.0/System.Configuration.ConfigurationManager.dll",
- "lib/net6.0/System.Configuration.ConfigurationManager.xml",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
- "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
- "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
- "system.configuration.configurationmanager.6.0.1.nupkg.sha512",
- "system.configuration.configurationmanager.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Data.SqlClient/4.8.6": {
- "sha512": "2Ij/LCaTQRyAi5lAv7UUTV9R2FobC8xN9mE0fXBZohum/xLl8IZVmE98Rq5ugQHjCgTBRKqpXRb4ORulRdA6Ig==",
- "type": "package",
- "path": "system.data.sqlclient/4.8.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net451/System.Data.SqlClient.dll",
- "lib/net46/System.Data.SqlClient.dll",
- "lib/net461/System.Data.SqlClient.dll",
- "lib/net461/System.Data.SqlClient.xml",
- "lib/netcoreapp2.1/System.Data.SqlClient.dll",
- "lib/netcoreapp2.1/System.Data.SqlClient.xml",
- "lib/netstandard1.2/System.Data.SqlClient.dll",
- "lib/netstandard1.2/System.Data.SqlClient.xml",
- "lib/netstandard1.3/System.Data.SqlClient.dll",
- "lib/netstandard1.3/System.Data.SqlClient.xml",
- "lib/netstandard2.0/System.Data.SqlClient.dll",
- "lib/netstandard2.0/System.Data.SqlClient.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net451/System.Data.SqlClient.dll",
- "ref/net46/System.Data.SqlClient.dll",
- "ref/net461/System.Data.SqlClient.dll",
- "ref/net461/System.Data.SqlClient.xml",
- "ref/netcoreapp2.1/System.Data.SqlClient.dll",
- "ref/netcoreapp2.1/System.Data.SqlClient.xml",
- "ref/netstandard1.2/System.Data.SqlClient.dll",
- "ref/netstandard1.2/System.Data.SqlClient.xml",
- "ref/netstandard1.2/de/System.Data.SqlClient.xml",
- "ref/netstandard1.2/es/System.Data.SqlClient.xml",
- "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
- "ref/netstandard1.2/it/System.Data.SqlClient.xml",
- "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
- "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
- "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
- "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
- "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
- "ref/netstandard1.3/System.Data.SqlClient.dll",
- "ref/netstandard1.3/System.Data.SqlClient.xml",
- "ref/netstandard1.3/de/System.Data.SqlClient.xml",
- "ref/netstandard1.3/es/System.Data.SqlClient.xml",
- "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
- "ref/netstandard1.3/it/System.Data.SqlClient.xml",
- "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
- "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
- "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
- "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
- "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
- "ref/netstandard2.0/System.Data.SqlClient.dll",
- "ref/netstandard2.0/System.Data.SqlClient.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
- "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
- "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
- "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
- "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
- "runtimes/win/lib/net451/System.Data.SqlClient.dll",
- "runtimes/win/lib/net46/System.Data.SqlClient.dll",
- "runtimes/win/lib/net461/System.Data.SqlClient.dll",
- "runtimes/win/lib/net461/System.Data.SqlClient.xml",
- "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
- "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
- "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
- "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
- "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
- "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
- "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
- "system.data.sqlclient.4.8.6.nupkg.sha512",
- "system.data.sqlclient.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "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/8.0.0": {
- "sha512": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==",
- "type": "package",
- "path": "system.diagnostics.diagnosticsource/8.0.0",
- "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.0.nupkg.sha512",
- "system.diagnostics.diagnosticsource.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.Drawing.Common/8.0.14": {
- "sha512": "whZN2v7udKBlZ0h3OVPozq/JJQAmbwoaje4TU0DSt/zMLAn6UgHSOqeVgkcthhrYmbYU+0eBriYQRI6WiH+w5Q==",
- "type": "package",
- "path": "system.drawing.common/8.0.14",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Drawing.Common.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net462/System.Drawing.Common.dll",
- "lib/net462/System.Drawing.Common.pdb",
- "lib/net462/System.Drawing.Common.xml",
- "lib/net6.0/System.Drawing.Common.dll",
- "lib/net6.0/System.Drawing.Common.pdb",
- "lib/net6.0/System.Drawing.Common.xml",
- "lib/net7.0/System.Drawing.Common.dll",
- "lib/net7.0/System.Drawing.Common.pdb",
- "lib/net7.0/System.Drawing.Common.xml",
- "lib/net8.0/System.Drawing.Common.dll",
- "lib/net8.0/System.Drawing.Common.pdb",
- "lib/net8.0/System.Drawing.Common.xml",
- "lib/netstandard2.0/System.Drawing.Common.dll",
- "lib/netstandard2.0/System.Drawing.Common.pdb",
- "lib/netstandard2.0/System.Drawing.Common.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "system.drawing.common.8.0.14.nupkg.sha512",
- "system.drawing.common.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "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.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/8.9.0": {
- "sha512": "7Pu9UjF1+so0s8zgzcIxSxbRQoiM2DMdwazVGmNptX3O6gDfMyeWZBd/Zn6VueDteN0ZTHw2acsf6+mAe8UpMw==",
- "type": "package",
- "path": "system.identitymodel.tokens.jwt/8.9.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "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/net8.0/System.IdentityModel.Tokens.Jwt.dll",
- "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
- "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll",
- "lib/net9.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.8.9.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/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.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.Pipelines/6.0.3": {
- "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
- "type": "package",
- "path": "system.io.pipelines/6.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.IO.Pipelines.dll",
- "lib/net461/System.IO.Pipelines.xml",
- "lib/net6.0/System.IO.Pipelines.dll",
- "lib/net6.0/System.IO.Pipelines.xml",
- "lib/netcoreapp3.1/System.IO.Pipelines.dll",
- "lib/netcoreapp3.1/System.IO.Pipelines.xml",
- "lib/netstandard2.0/System.IO.Pipelines.dll",
- "lib/netstandard2.0/System.IO.Pipelines.xml",
- "system.io.pipelines.6.0.3.nupkg.sha512",
- "system.io.pipelines.nuspec",
- "useSharedDesignerContext.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.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.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/6.0.1": {
- "sha512": "III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
- "type": "package",
- "path": "system.reflection.metadata/6.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Reflection.Metadata.dll",
- "lib/net461/System.Reflection.Metadata.xml",
- "lib/net6.0/System.Reflection.Metadata.dll",
- "lib/net6.0/System.Reflection.Metadata.xml",
- "lib/netstandard2.0/System.Reflection.Metadata.dll",
- "lib/netstandard2.0/System.Reflection.Metadata.xml",
- "system.reflection.metadata.6.0.1.nupkg.sha512",
- "system.reflection.metadata.nuspec",
- "useSharedDesignerContext.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/6.0.0": {
- "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
- "type": "package",
- "path": "system.runtime.caching/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/_._",
- "lib/net6.0/System.Runtime.Caching.dll",
- "lib/net6.0/System.Runtime.Caching.xml",
- "lib/netcoreapp3.1/System.Runtime.Caching.dll",
- "lib/netcoreapp3.1/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/net461/_._",
- "runtimes/win/lib/net6.0/System.Runtime.Caching.dll",
- "runtimes/win/lib/net6.0/System.Runtime.Caching.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml",
- "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
- "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
- "system.runtime.caching.6.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.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/5.0.0": {
- "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
- "type": "package",
- "path": "system.security.cryptography.cng/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "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/net461/System.Security.Cryptography.Cng.xml",
- "lib/net462/System.Security.Cryptography.Cng.dll",
- "lib/net462/System.Security.Cryptography.Cng.xml",
- "lib/net47/System.Security.Cryptography.Cng.dll",
- "lib/net47/System.Security.Cryptography.Cng.xml",
- "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
- "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
- "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
- "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/netstandard2.0/System.Security.Cryptography.Cng.xml",
- "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
- "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
- "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/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
- "ref/netcoreapp3.0/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/netstandard2.1/System.Security.Cryptography.Cng.dll",
- "ref/netstandard2.1/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/net461/System.Security.Cryptography.Cng.xml",
- "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
- "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
- "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
- "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.5.0.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.1": {
- "sha512": "CoCRHFym33aUSf/NtWSVSZa99dkd0Hm7OCZUxORBjRB16LNhIEOf8THPqzIYlvKM0nNDAPTRBa1FxEECrgaxxA==",
- "type": "package",
- "path": "system.security.cryptography.pkcs/8.0.1",
- "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.1.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/6.0.0": {
- "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
- "type": "package",
- "path": "system.security.cryptography.protecteddata/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Security.Cryptography.ProtectedData.dll",
- "lib/net461/System.Security.Cryptography.ProtectedData.xml",
- "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
- "lib/net6.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/_._",
- "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
- "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
- "system.security.cryptography.protecteddata.6.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.Permissions/6.0.0": {
- "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
- "type": "package",
- "path": "system.security.permissions/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Security.Permissions.dll",
- "lib/net461/System.Security.Permissions.xml",
- "lib/net5.0/System.Security.Permissions.dll",
- "lib/net5.0/System.Security.Permissions.xml",
- "lib/net6.0/System.Security.Permissions.dll",
- "lib/net6.0/System.Security.Permissions.xml",
- "lib/netcoreapp3.1/System.Security.Permissions.dll",
- "lib/netcoreapp3.1/System.Security.Permissions.xml",
- "lib/netstandard2.0/System.Security.Permissions.dll",
- "lib/netstandard2.0/System.Security.Permissions.xml",
- "runtimes/win/lib/net461/System.Security.Permissions.dll",
- "runtimes/win/lib/net461/System.Security.Permissions.xml",
- "system.security.permissions.6.0.0.nupkg.sha512",
- "system.security.permissions.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.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/8.0.0": {
- "sha512": "OZIsVplFGaVY90G2SbpgU7EnCoOO5pw1t4ic21dBF3/1omrJFpAGoNAVpPyMVOC90/hvgkGG3VFqR13YgZMQfg==",
- "type": "package",
- "path": "system.text.encoding.codepages/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Text.Encoding.CodePages.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net462/System.Text.Encoding.CodePages.dll",
- "lib/net462/System.Text.Encoding.CodePages.xml",
- "lib/net6.0/System.Text.Encoding.CodePages.dll",
- "lib/net6.0/System.Text.Encoding.CodePages.xml",
- "lib/net7.0/System.Text.Encoding.CodePages.dll",
- "lib/net7.0/System.Text.Encoding.CodePages.xml",
- "lib/net8.0/System.Text.Encoding.CodePages.dll",
- "lib/net8.0/System.Text.Encoding.CodePages.xml",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.xml",
- "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.xml",
- "system.text.encoding.codepages.8.0.0.nupkg.sha512",
- "system.text.encoding.codepages.nuspec",
- "useSharedDesignerContext.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/8.0.5": {
- "sha512": "0f1B50Ss7rqxXiaBJyzUu9bWFOO2/zSlifZ/UNMdiIpDYe4cY4LQQicP4nirK1OS31I43rn062UIJ1Q9bpmHpg==",
- "type": "package",
- "path": "system.text.json/8.0.5",
- "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.5.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.Channels/6.0.0": {
- "sha512": "TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==",
- "type": "package",
- "path": "system.threading.channels/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Threading.Channels.dll",
- "lib/net461/System.Threading.Channels.xml",
- "lib/net6.0/System.Threading.Channels.dll",
- "lib/net6.0/System.Threading.Channels.xml",
- "lib/netcoreapp3.1/System.Threading.Channels.dll",
- "lib/netcoreapp3.1/System.Threading.Channels.xml",
- "lib/netstandard2.0/System.Threading.Channels.dll",
- "lib/netstandard2.0/System.Threading.Channels.xml",
- "lib/netstandard2.1/System.Threading.Channels.dll",
- "lib/netstandard2.1/System.Threading.Channels.xml",
- "system.threading.channels.6.0.0.nupkg.sha512",
- "system.threading.channels.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "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.Windows.Extensions/6.0.0": {
- "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
- "type": "package",
- "path": "system.windows.extensions/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net6.0/System.Windows.Extensions.dll",
- "lib/net6.0/System.Windows.Extensions.xml",
- "lib/netcoreapp3.1/System.Windows.Extensions.dll",
- "lib/netcoreapp3.1/System.Windows.Extensions.xml",
- "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
- "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
- "system.windows.extensions.6.0.0.nupkg.sha512",
- "system.windows.extensions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Core/1.0.0": {
- "type": "project",
- "path": "../Core/Core.csproj",
- "msbuildProject": "../Core/Core.csproj"
- },
- "Documents/1.0.0": {
- "type": "project",
- "path": "../Documents/Documents.csproj",
- "msbuildProject": "../Documents/Documents.csproj"
- },
- "Domain/1.0.0": {
- "type": "project",
- "path": "../Domain/Domain.csproj",
- "msbuildProject": "../Domain/Domain.csproj"
- },
- "Models/1.0.0": {
- "type": "project",
- "path": "../Models/Models.csproj",
- "msbuildProject": "../Models/Models.csproj"
- },
- "Services/1.0.0": {
- "type": "project",
- "path": "../Services/Services.csproj",
- "msbuildProject": "../Services/Services.csproj"
- },
- "Transversal/1.0.0": {
- "type": "project",
- "path": "../Transversal/Transversal.csproj",
- "msbuildProject": "../Transversal/Transversal.csproj"
- }
- },
- "projectFileDependencyGroups": {
- "net8.0": [
- "Azure.Identity >= 1.12.0",
- "Core >= 1.0.0",
- "Documents >= 1.0.0",
- "Domain >= 1.0.0",
- "EntityFramework >= 6.5.1",
- "GoogleAuthenticator >= 3.2.0",
- "Microsoft.AspNetCore.Authentication.JwtBearer >= 8.0.15",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 8.0.6",
- "Microsoft.AspNetCore.OpenApi >= 8.0.6",
- "Microsoft.EntityFrameworkCore.SqlServer >= 8.0.10",
- "Microsoft.EntityFrameworkCore.Tools >= 8.0.6",
- "Microsoft.Extensions.Configuration.FileExtensions >= 8.0.1",
- "Microsoft.Extensions.Configuration.Json >= 8.0.1",
- "Microsoft.IdentityModel.Tokens >= 8.9.0",
- "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.21.0",
- "Models >= 1.0.0",
- "Newtonsoft.Json >= 13.0.3",
- "Serilog.AspNetCore >= 8.0.3",
- "Services >= 1.0.0",
- "SharpZipLib >= 1.4.2",
- "Swashbuckle.AspNetCore >= 6.6.2",
- "System.IdentityModel.Tokens.Jwt >= 8.9.0",
- "System.Net.Http >= 4.3.4",
- "System.Text.Json >= 8.0.5",
- "Transversal >= 1.0.0"
- ]
- },
- "packageFolders": {
- "C:\\Users\\maski\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.API\\phronCare.API.csproj",
- "projectName": "phronCare.API",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.API\\phronCare.API.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.API\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Core\\Core.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Core\\Core.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Documents\\Documents.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Documents\\Documents.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Models\\Models.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Services\\Services.csproj"
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Transversal\\Transversal.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Transversal\\Transversal.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Azure.Identity": {
- "target": "Package",
- "version": "[1.12.0, )"
- },
- "EntityFramework": {
- "target": "Package",
- "version": "[6.5.1, )"
- },
- "GoogleAuthenticator": {
- "target": "Package",
- "version": "[3.2.0, )"
- },
- "Microsoft.AspNetCore.Authentication.JwtBearer": {
- "target": "Package",
- "version": "[8.0.15, )"
- },
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
- "target": "Package",
- "version": "[8.0.6, )"
- },
- "Microsoft.AspNetCore.OpenApi": {
- "target": "Package",
- "version": "[8.0.6, )"
- },
- "Microsoft.EntityFrameworkCore.SqlServer": {
- "target": "Package",
- "version": "[8.0.10, )"
- },
- "Microsoft.EntityFrameworkCore.Tools": {
- "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.6, )"
- },
- "Microsoft.Extensions.Configuration.FileExtensions": {
- "target": "Package",
- "version": "[8.0.1, )"
- },
- "Microsoft.Extensions.Configuration.Json": {
- "target": "Package",
- "version": "[8.0.1, )"
- },
- "Microsoft.IdentityModel.Tokens": {
- "target": "Package",
- "version": "[8.9.0, )"
- },
- "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
- "target": "Package",
- "version": "[1.21.0, )"
- },
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[13.0.3, )"
- },
- "Serilog.AspNetCore": {
- "target": "Package",
- "version": "[8.0.3, )"
- },
- "SharpZipLib": {
- "target": "Package",
- "version": "[1.4.2, )"
- },
- "Swashbuckle.AspNetCore": {
- "target": "Package",
- "version": "[6.6.2, )"
- },
- "System.IdentityModel.Tokens.Jwt": {
- "target": "Package",
- "version": "[8.9.0, )"
- },
- "System.Net.Http": {
- "target": "Package",
- "version": "[4.3.4, )"
- },
- "System.Text.Json": {
- "target": "Package",
- "version": "[8.0.5, )"
- }
- },
- "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\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/phronCare.API/phronCare.API.csproj.user b/phronCare.API/phronCare.API.csproj.user
deleted file mode 100644
index bb86d91..0000000
--- a/phronCare.API/phronCare.API.csproj.user
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- ProjectDebugger
-
-
- phronCare API
- MvcControllerEmptyScaffolder
- root/Common/MVC/Controller
-
-
\ No newline at end of file
diff --git a/phronCare.Test/obj/phronCare.Test.csproj.nuget.dgspec.json b/phronCare.Test/0obj/phronCare.Test.csproj.nuget.dgspec.json
similarity index 96%
rename from phronCare.Test/obj/phronCare.Test.csproj.nuget.dgspec.json
rename to phronCare.Test/0obj/phronCare.Test.csproj.nuget.dgspec.json
index 4a13526..8fe242c 100644
--- a/phronCare.Test/obj/phronCare.Test.csproj.nuget.dgspec.json
+++ b/phronCare.Test/0obj/phronCare.Test.csproj.nuget.dgspec.json
@@ -45,7 +45,7 @@
"auditLevel": "low",
"auditMode": "direct"
},
- "SdkAnalysisLevel": "9.0.300"
+ "SdkAnalysisLevel": "10.0.100"
},
"frameworks": {
"net8.0": {
@@ -66,7 +66,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.305/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json"
}
}
},
@@ -115,7 +115,7 @@
"auditLevel": "low",
"auditMode": "direct"
},
- "SdkAnalysisLevel": "9.0.300"
+ "SdkAnalysisLevel": "10.0.100"
},
"frameworks": {
"net8.0": {
@@ -166,7 +166,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.305/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json"
}
}
},
@@ -215,7 +215,7 @@
"auditLevel": "low",
"auditMode": "direct"
},
- "SdkAnalysisLevel": "9.0.300"
+ "SdkAnalysisLevel": "10.0.100"
},
"frameworks": {
"net8.0": {
@@ -246,7 +246,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.305/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/phronCare.Test/obj/phronCare.Test.csproj.nuget.g.props b/phronCare.Test/0obj/phronCare.Test.csproj.nuget.g.props
similarity index 99%
rename from phronCare.Test/obj/phronCare.Test.csproj.nuget.g.props
rename to phronCare.Test/0obj/phronCare.Test.csproj.nuget.g.props
index db018e3..5605163 100644
--- a/phronCare.Test/obj/phronCare.Test.csproj.nuget.g.props
+++ b/phronCare.Test/0obj/phronCare.Test.csproj.nuget.g.props
@@ -7,7 +7,7 @@
$(UserProfile)\.nuget\packages\
C:\Users\maski\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
PackageReference
- 6.14.1
+ 6.14.2
diff --git a/phronCare.Test/obj/phronCare.Test.csproj.nuget.g.targets b/phronCare.Test/0obj/phronCare.Test.csproj.nuget.g.targets
similarity index 100%
rename from phronCare.Test/obj/phronCare.Test.csproj.nuget.g.targets
rename to phronCare.Test/0obj/phronCare.Test.csproj.nuget.g.targets
diff --git a/phronCare.Test/obj/project.assets.json b/phronCare.Test/0obj/project.assets.json
similarity index 99%
rename from phronCare.Test/obj/project.assets.json
rename to phronCare.Test/0obj/project.assets.json
index 45c373d..e53bb4c 100644
--- a/phronCare.Test/obj/project.assets.json
+++ b/phronCare.Test/0obj/project.assets.json
@@ -2452,7 +2452,7 @@
"auditLevel": "low",
"auditMode": "direct"
},
- "SdkAnalysisLevel": "9.0.300"
+ "SdkAnalysisLevel": "10.0.100"
},
"frameworks": {
"net8.0": {
@@ -2503,7 +2503,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.305/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/phronCare.Test/bin/Debug/net8.0/testhost.dll.config b/phronCare.Test/bin/Debug/net8.0/testhost.dll.config
deleted file mode 100644
index 04a2376..0000000
--- a/phronCare.Test/bin/Debug/net8.0/testhost.dll.config
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
diff --git a/phronCare.Test/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/phronCare.Test/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index 2217181..0000000
--- a/phronCare.Test/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/phronCare.Test/obj/Debug/net8.0/app.config b/phronCare.Test/obj/Debug/net8.0/app.config
deleted file mode 100644
index a37c240..0000000
--- a/phronCare.Test/obj/Debug/net8.0/app.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phronCare.Test/obj/Debug/net8.0/phronCare.Test.GlobalUsings.g.cs b/phronCare.Test/obj/Debug/net8.0/phronCare.Test.GlobalUsings.g.cs
deleted file mode 100644
index d32bf35..0000000
--- a/phronCare.Test/obj/Debug/net8.0/phronCare.Test.GlobalUsings.g.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-//
-global using global::NUnit.Framework;
-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/phronCare.Test/obj/Debug/net8.0/phronCare.Test.csproj.BuildWithSkipAnalyzers b/phronCare.Test/obj/Debug/net8.0/phronCare.Test.csproj.BuildWithSkipAnalyzers
deleted file mode 100644
index e69de29..0000000
diff --git a/phronCare.Test/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/phronCare.Test/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index 2217181..0000000
--- a/phronCare.Test/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/phronCare.Test/obj/Release/net8.0/phronCare.Test.AssemblyInfo.cs b/phronCare.Test/obj/Release/net8.0/phronCare.Test.AssemblyInfo.cs
deleted file mode 100644
index f2c735f..0000000
--- a/phronCare.Test/obj/Release/net8.0/phronCare.Test.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// Este código fue generado por una herramienta.
-// Versión de runtime:4.0.30319.42000
-//
-// Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
-// se vuelve a generar el código.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("phronCare.Test")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+da3b34f666e5cebceaf8121267fb47d4ff81acc0")]
-[assembly: System.Reflection.AssemblyProductAttribute("phronCare.Test")]
-[assembly: System.Reflection.AssemblyTitleAttribute("phronCare.Test")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generado por la clase WriteCodeFragment de MSBuild.
-
diff --git a/phronCare.Test/obj/Release/net8.0/phronCare.Test.AssemblyInfoInputs.cache b/phronCare.Test/obj/Release/net8.0/phronCare.Test.AssemblyInfoInputs.cache
deleted file mode 100644
index ebbe797..0000000
--- a/phronCare.Test/obj/Release/net8.0/phronCare.Test.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-866adc2bf3dac7915b9f241912df5cfd71bb2733d4149a1c7b015c4014b7b552
diff --git a/phronCare.Test/obj/Release/net8.0/phronCare.Test.GeneratedMSBuildEditorConfig.editorconfig b/phronCare.Test/obj/Release/net8.0/phronCare.Test.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 5a1daea..0000000
--- a/phronCare.Test/obj/Release/net8.0/phronCare.Test.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,13 +0,0 @@
-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 = phronCare.Test
-build_property.ProjectDir = C:\Users\maski\source\repos\phronCare\phronCare.Test\
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/phronCare.Test/obj/Release/net8.0/phronCare.Test.GlobalUsings.g.cs b/phronCare.Test/obj/Release/net8.0/phronCare.Test.GlobalUsings.g.cs
deleted file mode 100644
index d32bf35..0000000
--- a/phronCare.Test/obj/Release/net8.0/phronCare.Test.GlobalUsings.g.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-//
-global using global::NUnit.Framework;
-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/phronCare.Test/obj/Release/net8.0/phronCare.Test.assets.cache b/phronCare.Test/obj/Release/net8.0/phronCare.Test.assets.cache
deleted file mode 100644
index 84c71f8..0000000
Binary files a/phronCare.Test/obj/Release/net8.0/phronCare.Test.assets.cache and /dev/null differ
diff --git a/phronCare.Test/obj/Release/net8.0/phronCare.Test.csproj.AssemblyReference.cache b/phronCare.Test/obj/Release/net8.0/phronCare.Test.csproj.AssemblyReference.cache
deleted file mode 100644
index d9b31e3..0000000
Binary files a/phronCare.Test/obj/Release/net8.0/phronCare.Test.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/phronCare.UIBlazor/obj/phronCare.UIBlazor.csproj.nuget.dgspec.json b/phronCare.UIBlazor/obj/phronCare.UIBlazor.csproj.nuget.dgspec.json
deleted file mode 100644
index e1adeb5..0000000
--- a/phronCare.UIBlazor/obj/phronCare.UIBlazor.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,198 +0,0 @@
-{
- "format": 1,
- "restore": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.UIBlazor\\phronCare.UIBlazor.csproj": {}
- },
- "projects": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj",
- "projectName": "Domain",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "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"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "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\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- }
- },
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.UIBlazor\\phronCare.UIBlazor.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.UIBlazor\\phronCare.UIBlazor.csproj",
- "projectName": "phronCare.UIBlazor",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.UIBlazor\\phronCare.UIBlazor.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.UIBlazor\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Blazored.Modal": {
- "target": "Package",
- "version": "[7.3.1, )"
- },
- "Blazored.Toast": {
- "target": "Package",
- "version": "[4.2.1, )"
- },
- "Blazored.Typeahead": {
- "target": "Package",
- "version": "[4.7.0, )"
- },
- "Microsoft.AspNetCore.Components.Authorization": {
- "target": "Package",
- "version": "[8.0.6, )"
- },
- "Microsoft.AspNetCore.Components.WebAssembly": {
- "target": "Package",
- "version": "[8.0.6, )"
- },
- "Microsoft.AspNetCore.Components.WebAssembly.DevServer": {
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.6, )"
- },
- "Microsoft.NET.ILLink.Tasks": {
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.20, )",
- "autoReferenced": true
- },
- "Microsoft.NET.Sdk.WebAssembly.Pack": {
- "suppressParent": "All",
- "target": "Package",
- "version": "[9.0.9, )",
- "autoReferenced": true
- },
- "PSC.Blazor.Components.Chartjs": {
- "target": "Package",
- "version": "[8.0.8, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.NETCore.App.Runtime.Mono.browser-wasm",
- "version": "[8.0.20, 8.0.20]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- },
- "runtimes": {
- "browser-wasm": {
- "#import": []
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/phronCare.UIBlazor/obj/phronCare.UIBlazor.csproj.nuget.g.props b/phronCare.UIBlazor/obj/phronCare.UIBlazor.csproj.nuget.g.props
deleted file mode 100644
index 64e0773..0000000
--- a/phronCare.UIBlazor/obj/phronCare.UIBlazor.csproj.nuget.g.props
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\maski\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
- PackageReference
- 6.14.1
-
-
-
-
-
-
-
- PSC.Blazor.Components.Chartjs
- 8.0.8
- Content
- false
- False
- libman.json
-
-
- PSC.Blazor.Components.Chartjs
- 8.0.8
- Content
- false
- False
- psc_ico.ico
-
-
-
-
-
-
-
-
-
-
-
-
- C:\Users\maski\.nuget\packages\microsoft.net.sdk.webassembly.pack\9.0.9
- C:\Users\maski\.nuget\packages\microsoft.net.illink.tasks\8.0.20
- C:\Users\maski\.nuget\packages\microsoft.aspnetcore.components.webassembly.devserver\8.0.6
-
-
\ No newline at end of file
diff --git a/phronCare.UIBlazor/obj/phronCare.UIBlazor.csproj.nuget.g.targets b/phronCare.UIBlazor/obj/phronCare.UIBlazor.csproj.nuget.g.targets
deleted file mode 100644
index fa29307..0000000
--- a/phronCare.UIBlazor/obj/phronCare.UIBlazor.csproj.nuget.g.targets
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/phronCare.UIBlazor/obj/project.assets.json b/phronCare.UIBlazor/obj/project.assets.json
deleted file mode 100644
index 2645641..0000000
--- a/phronCare.UIBlazor/obj/project.assets.json
+++ /dev/null
@@ -1,2647 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net8.0": {
- "Blazored.Modal/7.3.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components": "8.0.2",
- "Microsoft.AspNetCore.Components.Web": "8.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
- "Microsoft.JSInterop.WebAssembly": "8.0.2"
- },
- "compile": {
- "lib/net8.0/Blazored.Modal.dll": {}
- },
- "runtime": {
- "lib/net8.0/Blazored.Modal.dll": {}
- },
- "build": {
- "buildTransitive/Blazored.Modal.props": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/Blazored.Modal.props": {}
- }
- },
- "Blazored.Toast/4.2.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components": "8.0.2",
- "Microsoft.AspNetCore.Components.Web": "8.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Blazored.Toast.dll": {}
- },
- "runtime": {
- "lib/net8.0/Blazored.Toast.dll": {}
- },
- "build": {
- "buildTransitive/Blazored.Toast.props": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/Blazored.Toast.props": {}
- }
- },
- "Blazored.Typeahead/4.7.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components": "6.0.3",
- "Microsoft.AspNetCore.Components.Web": "6.0.3"
- },
- "compile": {
- "lib/net6.0/Blazored.Typeahead.dll": {}
- },
- "runtime": {
- "lib/net6.0/Blazored.Typeahead.dll": {}
- },
- "build": {
- "buildTransitive/Blazored.Typeahead.props": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/Blazored.Typeahead.props": {}
- }
- },
- "Microsoft.AspNetCore.Authorization/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Metadata": "8.0.6",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.1",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Authorization.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Authorization.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Components/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authorization": "8.0.6",
- "Microsoft.AspNetCore.Components.Analyzers": "8.0.6"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Components.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Components.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Components.Analyzers/8.0.6": {
- "type": "package",
- "build": {
- "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {}
- }
- },
- "Microsoft.AspNetCore.Components.Authorization/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authorization": "8.0.6",
- "Microsoft.AspNetCore.Components": "8.0.6"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Components.Authorization.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Components.Authorization.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Components.Forms/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components": "8.0.6"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Components.Forms.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Components.Forms.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Components.Web/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components": "8.0.6",
- "Microsoft.AspNetCore.Components.Forms": "8.0.6",
- "Microsoft.Extensions.DependencyInjection": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0",
- "Microsoft.JSInterop": "8.0.6",
- "System.IO.Pipelines": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Components.Web.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Components.Web.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Components.WebAssembly/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components.Web": "8.0.6",
- "Microsoft.Extensions.Configuration.Binder": "8.0.1",
- "Microsoft.Extensions.Configuration.Json": "8.0.0",
- "Microsoft.Extensions.Logging": "8.0.0",
- "Microsoft.JSInterop.WebAssembly": "8.0.6"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/net8.0/Microsoft.AspNetCore.Components.WebAssembly.props": {}
- }
- },
- "Microsoft.AspNetCore.Components.WebAssembly.DevServer/8.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets": {}
- }
- },
- "Microsoft.AspNetCore.Metadata/8.0.6": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Metadata.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Metadata.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "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.Configuration.Binder/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {}
- }
- },
- "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "8.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Json/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "8.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "System.Text.Json": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.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.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "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.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.JSInterop/8.0.6": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.JSInterop.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.JSInterop.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.JSInterop.WebAssembly/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.JSInterop": "8.0.6"
- },
- "compile": {
- "lib/net8.0/Microsoft.JSInterop.WebAssembly.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.JSInterop.WebAssembly.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.NET.ILLink.Tasks/8.0.20": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "Microsoft.NET.Sdk.WebAssembly.Pack/9.0.9": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.Sdk.WebAssembly.Pack.props": {},
- "build/Microsoft.NET.Sdk.WebAssembly.Pack.targets": {}
- }
- },
- "PSC.Blazor.Components.Chartjs/8.0.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components.Web": "8.0.6"
- },
- "compile": {
- "lib/net8.0/PSC.Blazor.Components.Chartjs.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/PSC.Blazor.Components.Chartjs.dll": {
- "related": ".xml"
- }
- },
- "contentFiles": {
- "contentFiles/any/net8.0/libman.json": {
- "buildAction": "Content",
- "codeLanguage": "any",
- "copyToOutput": false
- },
- "contentFiles/any/net8.0/psc_ico.ico": {
- "buildAction": "Content",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- },
- "build": {
- "buildTransitive/PSC.Blazor.Components.Chartjs.props": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/PSC.Blazor.Components.Chartjs.props": {}
- }
- },
- "System.IO.Pipelines/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "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": {}
- }
- },
- "Domain/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v8.0",
- "compile": {
- "bin/placeholder/Domain.dll": {}
- },
- "runtime": {
- "bin/placeholder/Domain.dll": {}
- }
- }
- },
- "net8.0/browser-wasm": {
- "Blazored.Modal/7.3.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components": "8.0.2",
- "Microsoft.AspNetCore.Components.Web": "8.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
- "Microsoft.JSInterop.WebAssembly": "8.0.2"
- },
- "compile": {
- "lib/net8.0/Blazored.Modal.dll": {}
- },
- "runtime": {
- "lib/net8.0/Blazored.Modal.dll": {}
- },
- "build": {
- "buildTransitive/Blazored.Modal.props": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/Blazored.Modal.props": {}
- }
- },
- "Blazored.Toast/4.2.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components": "8.0.2",
- "Microsoft.AspNetCore.Components.Web": "8.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Blazored.Toast.dll": {}
- },
- "runtime": {
- "lib/net8.0/Blazored.Toast.dll": {}
- },
- "build": {
- "buildTransitive/Blazored.Toast.props": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/Blazored.Toast.props": {}
- }
- },
- "Blazored.Typeahead/4.7.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components": "6.0.3",
- "Microsoft.AspNetCore.Components.Web": "6.0.3"
- },
- "compile": {
- "lib/net6.0/Blazored.Typeahead.dll": {}
- },
- "runtime": {
- "lib/net6.0/Blazored.Typeahead.dll": {}
- },
- "build": {
- "buildTransitive/Blazored.Typeahead.props": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/Blazored.Typeahead.props": {}
- }
- },
- "Microsoft.AspNetCore.Authorization/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Metadata": "8.0.6",
- "Microsoft.Extensions.Logging.Abstractions": "8.0.1",
- "Microsoft.Extensions.Options": "8.0.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Authorization.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Authorization.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Components/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authorization": "8.0.6",
- "Microsoft.AspNetCore.Components.Analyzers": "8.0.6"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Components.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Components.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Components.Analyzers/8.0.6": {
- "type": "package",
- "build": {
- "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {}
- }
- },
- "Microsoft.AspNetCore.Components.Authorization/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authorization": "8.0.6",
- "Microsoft.AspNetCore.Components": "8.0.6"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Components.Authorization.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Components.Authorization.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Components.Forms/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components": "8.0.6"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Components.Forms.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Components.Forms.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Components.Web/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components": "8.0.6",
- "Microsoft.AspNetCore.Components.Forms": "8.0.6",
- "Microsoft.Extensions.DependencyInjection": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0",
- "Microsoft.JSInterop": "8.0.6",
- "System.IO.Pipelines": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Components.Web.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Components.Web.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Components.WebAssembly/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components.Web": "8.0.6",
- "Microsoft.Extensions.Configuration.Binder": "8.0.1",
- "Microsoft.Extensions.Configuration.Json": "8.0.0",
- "Microsoft.Extensions.Logging": "8.0.0",
- "Microsoft.JSInterop.WebAssembly": "8.0.6"
- },
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Components.WebAssembly.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/net8.0/Microsoft.AspNetCore.Components.WebAssembly.props": {}
- }
- },
- "Microsoft.AspNetCore.Components.WebAssembly.DevServer/8.0.6": {
- "type": "package",
- "build": {
- "build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets": {}
- }
- },
- "Microsoft.AspNetCore.Metadata/8.0.6": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.AspNetCore.Metadata.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.AspNetCore.Metadata.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "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.Configuration.Binder/8.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {}
- }
- },
- "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "8.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Json/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "8.0.0",
- "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "System.Text.Json": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.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.FileProviders.Abstractions/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
- "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
- "Microsoft.Extensions.Primitives": "8.0.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "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.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.JSInterop/8.0.6": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.JSInterop.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.JSInterop.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.JSInterop.WebAssembly/8.0.6": {
- "type": "package",
- "dependencies": {
- "Microsoft.JSInterop": "8.0.6"
- },
- "compile": {
- "lib/net8.0/Microsoft.JSInterop.WebAssembly.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.JSInterop.WebAssembly.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.NET.ILLink.Tasks/8.0.20": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.ILLink.Tasks.props": {}
- }
- },
- "Microsoft.NET.Sdk.WebAssembly.Pack/9.0.9": {
- "type": "package",
- "build": {
- "build/Microsoft.NET.Sdk.WebAssembly.Pack.props": {},
- "build/Microsoft.NET.Sdk.WebAssembly.Pack.targets": {}
- }
- },
- "PSC.Blazor.Components.Chartjs/8.0.8": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Components.Web": "8.0.6"
- },
- "compile": {
- "lib/net8.0/PSC.Blazor.Components.Chartjs.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/PSC.Blazor.Components.Chartjs.dll": {
- "related": ".xml"
- }
- },
- "contentFiles": {
- "contentFiles/any/net8.0/libman.json": {
- "buildAction": "Content",
- "codeLanguage": "any",
- "copyToOutput": false
- },
- "contentFiles/any/net8.0/psc_ico.ico": {
- "buildAction": "Content",
- "codeLanguage": "any",
- "copyToOutput": false
- }
- },
- "build": {
- "buildTransitive/PSC.Blazor.Components.Chartjs.props": {}
- },
- "buildMultiTargeting": {
- "buildMultiTargeting/PSC.Blazor.Components.Chartjs.props": {}
- }
- },
- "System.IO.Pipelines/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Text.Encodings.Web/8.0.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "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": {}
- }
- },
- "Domain/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v8.0",
- "compile": {
- "bin/placeholder/Domain.dll": {}
- },
- "runtime": {
- "bin/placeholder/Domain.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Blazored.Modal/7.3.1": {
- "sha512": "CWUyENSAZmNr0efiS3V5oMBkhRLkqqo1qOaY5pIqymQIR0fgGY6CDB4+57HAJP0pdks95yALrBZ6twggMaIeCg==",
- "type": "package",
- "path": "blazored.modal/7.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "blazored.modal.7.3.1.nupkg.sha512",
- "blazored.modal.nuspec",
- "build/Blazored.Modal.props",
- "build/Microsoft.AspNetCore.StaticWebAssets.props",
- "buildMultiTargeting/Blazored.Modal.props",
- "buildTransitive/Blazored.Modal.props",
- "icon.png",
- "lib/net8.0/Blazored.Modal.dll",
- "staticwebassets/Blazored.Modal.bundle.scp.css",
- "staticwebassets/BlazoredModal.razor.js"
- ]
- },
- "Blazored.Toast/4.2.1": {
- "sha512": "RuSGS8m21IejQ8EKXjZYEcCbgZEhyP7VptvyHjdRDKkJ3wxCqANKWvDxSKuExSbk1NLD1tySe8OpPYsdCeqvcw==",
- "type": "package",
- "path": "blazored.toast/4.2.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "blazored.toast.4.2.1.nupkg.sha512",
- "blazored.toast.nuspec",
- "build/Blazored.Toast.props",
- "build/Microsoft.AspNetCore.StaticWebAssets.props",
- "buildMultiTargeting/Blazored.Toast.props",
- "buildTransitive/Blazored.Toast.props",
- "icon.png",
- "lib/net6.0/Blazored.Toast.dll",
- "lib/net7.0/Blazored.Toast.dll",
- "lib/net8.0/Blazored.Toast.dll",
- "staticwebassets/Blazored.Toast.bundle.scp.css"
- ]
- },
- "Blazored.Typeahead/4.7.0": {
- "sha512": "fTN4Bt9rwEE/d33FXFd+h/DBjVtsFJLRf9B8mu0zJWMWG5Mk2tU2il3aK0+laUxNgBNBgEL0jW/831I+oapd6A==",
- "type": "package",
- "path": "blazored.typeahead/4.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "blazored.typeahead.4.7.0.nupkg.sha512",
- "blazored.typeahead.nuspec",
- "build/Blazored.Typeahead.props",
- "build/Microsoft.AspNetCore.StaticWebAssets.props",
- "buildMultiTargeting/Blazored.Typeahead.props",
- "buildTransitive/Blazored.Typeahead.props",
- "icon.png",
- "lib/net6.0/Blazored.Typeahead.dll",
- "staticwebassets/blazored-typeahead.css",
- "staticwebassets/blazored-typeahead.js"
- ]
- },
- "Microsoft.AspNetCore.Authorization/8.0.6": {
- "sha512": "H1CSbD7UeSPsrJSUpvbms6SqWMa5y8ch4Rw+gyHh2uztOEb20fTP2r0AUnStn1Q9WYghikiDO5wzkgV+n6KC2Q==",
- "type": "package",
- "path": "microsoft.aspnetcore.authorization/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net462/Microsoft.AspNetCore.Authorization.dll",
- "lib/net462/Microsoft.AspNetCore.Authorization.xml",
- "lib/net8.0/Microsoft.AspNetCore.Authorization.dll",
- "lib/net8.0/Microsoft.AspNetCore.Authorization.xml",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
- "microsoft.aspnetcore.authorization.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.authorization.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Components/8.0.6": {
- "sha512": "Je2l+rd5i8gB+ZWsN5wBHOsnyAh81h6+a5vNq6rjfQhM2ZYxH+BVsmanCYa+F8BFy6rmd+ZL61SEiNaAyAOgtg==",
- "type": "package",
- "path": "microsoft.aspnetcore.components/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.txt",
- "lib/net8.0/Microsoft.AspNetCore.Components.dll",
- "lib/net8.0/Microsoft.AspNetCore.Components.xml",
- "microsoft.aspnetcore.components.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.components.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Components.Analyzers/8.0.6": {
- "sha512": "SEL0CN1jJdJkCDwRox3kSY1ffMnahlOCDJZYrYWfQ6ftjqRuuiPtwyvI3VIeVHLcpT3VP1AXww8wzKDK3oeFxg==",
- "type": "package",
- "path": "microsoft.aspnetcore.components.analyzers/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.txt",
- "analyzers/dotnet/cs/Microsoft.AspNetCore.Components.Analyzers.dll",
- "build/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets",
- "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets",
- "microsoft.aspnetcore.components.analyzers.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.components.analyzers.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Components.Authorization/8.0.6": {
- "sha512": "2uNzQDPudD9wARV1Zw92gY+WcNV2zMzDW6wM+4Ax9hMeLfaSJQockQyyxjzt2VL0MOE06S14yknx4ApryMFYqA==",
- "type": "package",
- "path": "microsoft.aspnetcore.components.authorization/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.txt",
- "lib/net8.0/Microsoft.AspNetCore.Components.Authorization.dll",
- "lib/net8.0/Microsoft.AspNetCore.Components.Authorization.xml",
- "microsoft.aspnetcore.components.authorization.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.components.authorization.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Components.Forms/8.0.6": {
- "sha512": "49wIE1ns3ZGDU4NPMcKCSTC716IxujUeaynsUyflM5Qmb2WlF6M6m4pMcJ6UET1Ixmn027nZjMEc8J7pU4BLBg==",
- "type": "package",
- "path": "microsoft.aspnetcore.components.forms/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.txt",
- "lib/net8.0/Microsoft.AspNetCore.Components.Forms.dll",
- "lib/net8.0/Microsoft.AspNetCore.Components.Forms.xml",
- "microsoft.aspnetcore.components.forms.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.components.forms.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Components.Web/8.0.6": {
- "sha512": "xxYlTpcTEWsxaWUscDLN32mM32ysslLFtNQBS6wJOxaKJ9LCvusXDyBVEKL2DPbB8PZdereNvyrVr0deHkuOEw==",
- "type": "package",
- "path": "microsoft.aspnetcore.components.web/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.txt",
- "lib/net8.0/Microsoft.AspNetCore.Components.Web.dll",
- "lib/net8.0/Microsoft.AspNetCore.Components.Web.xml",
- "microsoft.aspnetcore.components.web.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.components.web.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Components.WebAssembly/8.0.6": {
- "sha512": "plmMOmOR33hQiEe5TeEfheuvifEslDrcilAytLUYxQ8pcvuoTtcpyMe8cEnrozoQ0q77WhDuprl5kKpMH+h2/g==",
- "type": "package",
- "path": "microsoft.aspnetcore.components.webassembly/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.txt",
- "build/net8.0/Microsoft.AspNetCore.Components.WebAssembly.props",
- "build/net8.0/blazor.webassembly.js",
- "lib/net8.0/Microsoft.AspNetCore.Components.WebAssembly.dll",
- "lib/net8.0/Microsoft.AspNetCore.Components.WebAssembly.xml",
- "microsoft.aspnetcore.components.webassembly.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.components.webassembly.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Components.WebAssembly.DevServer/8.0.6": {
- "sha512": "UX5wp3rK68IOXomFNL/sx1cHpcfX8GGv6hM8r/O8VNHMZWiXl1yd6L4+feVsBtMbUO/Tlm178WAwE73C6TYD6Q==",
- "type": "package",
- "path": "microsoft.aspnetcore.components.webassembly.devserver/8.0.6",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.txt",
- "build/Microsoft.AspNetCore.Components.WebAssembly.DevServer.targets",
- "microsoft.aspnetcore.components.webassembly.devserver.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.components.webassembly.devserver.nuspec",
- "tools/ARM64/aspnetcorev2_inprocess.dll",
- "tools/BlazorDebugProxy/BrowserDebugHost.dll",
- "tools/BlazorDebugProxy/BrowserDebugHost.runtimeconfig.json",
- "tools/BlazorDebugProxy/BrowserDebugProxy.dll",
- "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
- "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.CSharp.dll",
- "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.Scripting.dll",
- "tools/BlazorDebugProxy/Microsoft.CodeAnalysis.dll",
- "tools/BlazorDebugProxy/Microsoft.FileFormats.dll",
- "tools/BlazorDebugProxy/Microsoft.NET.WebAssembly.Webcil.dll",
- "tools/BlazorDebugProxy/Microsoft.SymbolStore.dll",
- "tools/BlazorDebugProxy/Newtonsoft.Json.dll",
- "tools/Microsoft.AspNetCore.Antiforgery.dll",
- "tools/Microsoft.AspNetCore.Antiforgery.xml",
- "tools/Microsoft.AspNetCore.Authentication.Abstractions.dll",
- "tools/Microsoft.AspNetCore.Authentication.Abstractions.xml",
- "tools/Microsoft.AspNetCore.Authentication.Core.dll",
- "tools/Microsoft.AspNetCore.Authentication.Core.xml",
- "tools/Microsoft.AspNetCore.Authentication.dll",
- "tools/Microsoft.AspNetCore.Authentication.xml",
- "tools/Microsoft.AspNetCore.Authorization.Policy.dll",
- "tools/Microsoft.AspNetCore.Authorization.Policy.xml",
- "tools/Microsoft.AspNetCore.Authorization.dll",
- "tools/Microsoft.AspNetCore.Authorization.xml",
- "tools/Microsoft.AspNetCore.Components.Authorization.dll",
- "tools/Microsoft.AspNetCore.Components.Authorization.xml",
- "tools/Microsoft.AspNetCore.Components.Endpoints.dll",
- "tools/Microsoft.AspNetCore.Components.Endpoints.xml",
- "tools/Microsoft.AspNetCore.Components.Forms.dll",
- "tools/Microsoft.AspNetCore.Components.Forms.xml",
- "tools/Microsoft.AspNetCore.Components.Web.dll",
- "tools/Microsoft.AspNetCore.Components.Web.xml",
- "tools/Microsoft.AspNetCore.Components.WebAssembly.Server.dll",
- "tools/Microsoft.AspNetCore.Components.WebAssembly.Server.xml",
- "tools/Microsoft.AspNetCore.Components.dll",
- "tools/Microsoft.AspNetCore.Components.xml",
- "tools/Microsoft.AspNetCore.Connections.Abstractions.dll",
- "tools/Microsoft.AspNetCore.Connections.Abstractions.xml",
- "tools/Microsoft.AspNetCore.Cryptography.Internal.dll",
- "tools/Microsoft.AspNetCore.Cryptography.Internal.xml",
- "tools/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
- "tools/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
- "tools/Microsoft.AspNetCore.DataProtection.Extensions.dll",
- "tools/Microsoft.AspNetCore.DataProtection.Extensions.xml",
- "tools/Microsoft.AspNetCore.DataProtection.dll",
- "tools/Microsoft.AspNetCore.DataProtection.xml",
- "tools/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
- "tools/Microsoft.AspNetCore.Diagnostics.Abstractions.xml",
- "tools/Microsoft.AspNetCore.Diagnostics.dll",
- "tools/Microsoft.AspNetCore.Diagnostics.xml",
- "tools/Microsoft.AspNetCore.HostFiltering.dll",
- "tools/Microsoft.AspNetCore.HostFiltering.xml",
- "tools/Microsoft.AspNetCore.Hosting.Abstractions.dll",
- "tools/Microsoft.AspNetCore.Hosting.Abstractions.xml",
- "tools/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
- "tools/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
- "tools/Microsoft.AspNetCore.Hosting.dll",
- "tools/Microsoft.AspNetCore.Hosting.xml",
- "tools/Microsoft.AspNetCore.Html.Abstractions.dll",
- "tools/Microsoft.AspNetCore.Html.Abstractions.xml",
- "tools/Microsoft.AspNetCore.Http.Abstractions.dll",
- "tools/Microsoft.AspNetCore.Http.Abstractions.xml",
- "tools/Microsoft.AspNetCore.Http.Extensions.dll",
- "tools/Microsoft.AspNetCore.Http.Extensions.xml",
- "tools/Microsoft.AspNetCore.Http.Features.dll",
- "tools/Microsoft.AspNetCore.Http.Features.xml",
- "tools/Microsoft.AspNetCore.Http.dll",
- "tools/Microsoft.AspNetCore.Http.xml",
- "tools/Microsoft.AspNetCore.HttpOverrides.dll",
- "tools/Microsoft.AspNetCore.HttpOverrides.xml",
- "tools/Microsoft.AspNetCore.Metadata.dll",
- "tools/Microsoft.AspNetCore.Metadata.xml",
- "tools/Microsoft.AspNetCore.Routing.Abstractions.dll",
- "tools/Microsoft.AspNetCore.Routing.Abstractions.xml",
- "tools/Microsoft.AspNetCore.Routing.dll",
- "tools/Microsoft.AspNetCore.Routing.xml",
- "tools/Microsoft.AspNetCore.Server.HttpSys.dll",
- "tools/Microsoft.AspNetCore.Server.HttpSys.xml",
- "tools/Microsoft.AspNetCore.Server.IIS.dll",
- "tools/Microsoft.AspNetCore.Server.IIS.xml",
- "tools/Microsoft.AspNetCore.Server.IISIntegration.dll",
- "tools/Microsoft.AspNetCore.Server.IISIntegration.xml",
- "tools/Microsoft.AspNetCore.Server.Kestrel.Core.dll",
- "tools/Microsoft.AspNetCore.Server.Kestrel.Core.xml",
- "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll",
- "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.xml",
- "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll",
- "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.xml",
- "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll",
- "tools/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.xml",
- "tools/Microsoft.AspNetCore.Server.Kestrel.dll",
- "tools/Microsoft.AspNetCore.Server.Kestrel.xml",
- "tools/Microsoft.AspNetCore.StaticFiles.dll",
- "tools/Microsoft.AspNetCore.StaticFiles.xml",
- "tools/Microsoft.AspNetCore.WebUtilities.dll",
- "tools/Microsoft.AspNetCore.WebUtilities.xml",
- "tools/Microsoft.AspNetCore.dll",
- "tools/Microsoft.AspNetCore.xml",
- "tools/Microsoft.Extensions.Configuration.Abstractions.dll",
- "tools/Microsoft.Extensions.Configuration.Binder.dll",
- "tools/Microsoft.Extensions.Configuration.CommandLine.dll",
- "tools/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
- "tools/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "tools/Microsoft.Extensions.Configuration.Json.dll",
- "tools/Microsoft.Extensions.Configuration.UserSecrets.dll",
- "tools/Microsoft.Extensions.Configuration.dll",
- "tools/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "tools/Microsoft.Extensions.DependencyInjection.dll",
- "tools/Microsoft.Extensions.Diagnostics.Abstractions.dll",
- "tools/Microsoft.Extensions.Diagnostics.dll",
- "tools/Microsoft.Extensions.Features.dll",
- "tools/Microsoft.Extensions.Features.xml",
- "tools/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "tools/Microsoft.Extensions.FileProviders.Composite.dll",
- "tools/Microsoft.Extensions.FileProviders.Embedded.dll",
- "tools/Microsoft.Extensions.FileProviders.Embedded.xml",
- "tools/Microsoft.Extensions.FileProviders.Physical.dll",
- "tools/Microsoft.Extensions.FileSystemGlobbing.dll",
- "tools/Microsoft.Extensions.Hosting.Abstractions.dll",
- "tools/Microsoft.Extensions.Hosting.dll",
- "tools/Microsoft.Extensions.Logging.Abstractions.dll",
- "tools/Microsoft.Extensions.Logging.Configuration.dll",
- "tools/Microsoft.Extensions.Logging.Console.dll",
- "tools/Microsoft.Extensions.Logging.Debug.dll",
- "tools/Microsoft.Extensions.Logging.EventLog.dll",
- "tools/Microsoft.Extensions.Logging.EventSource.dll",
- "tools/Microsoft.Extensions.Logging.dll",
- "tools/Microsoft.Extensions.ObjectPool.dll",
- "tools/Microsoft.Extensions.ObjectPool.xml",
- "tools/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
- "tools/Microsoft.Extensions.Options.dll",
- "tools/Microsoft.Extensions.Primitives.dll",
- "tools/Microsoft.Extensions.WebEncoders.dll",
- "tools/Microsoft.Extensions.WebEncoders.xml",
- "tools/Microsoft.JSInterop.dll",
- "tools/Microsoft.JSInterop.xml",
- "tools/Microsoft.Net.Http.Headers.dll",
- "tools/Microsoft.Net.Http.Headers.xml",
- "tools/System.Diagnostics.EventLog.dll",
- "tools/System.IO.Pipelines.dll",
- "tools/System.Security.Cryptography.Pkcs.dll",
- "tools/System.Security.Cryptography.Xml.dll",
- "tools/blazor-devserver.deps.json",
- "tools/blazor-devserver.dll",
- "tools/blazor-devserver.exe",
- "tools/blazor-devserver.runtimeconfig.json",
- "tools/blazor-devserver.xml",
- "tools/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll",
- "tools/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll",
- "tools/runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll",
- "tools/x64/aspnetcorev2_inprocess.dll",
- "tools/x86/aspnetcorev2_inprocess.dll"
- ]
- },
- "Microsoft.AspNetCore.Metadata/8.0.6": {
- "sha512": "3e7S/kz1MGds8zDA8SfQiutqifyVcULs5P/8Bxpes0WIkJRMGkU/l+XlMllj9KrDfCGwHW8bgjRy/zxfoILgfg==",
- "type": "package",
- "path": "microsoft.aspnetcore.metadata/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net462/Microsoft.AspNetCore.Metadata.dll",
- "lib/net462/Microsoft.AspNetCore.Metadata.xml",
- "lib/net8.0/Microsoft.AspNetCore.Metadata.dll",
- "lib/net8.0/Microsoft.AspNetCore.Metadata.xml",
- "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml",
- "microsoft.aspnetcore.metadata.8.0.6.nupkg.sha512",
- "microsoft.aspnetcore.metadata.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration/8.0.0": {
- "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
- "type": "package",
- "path": "microsoft.extensions.configuration/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets",
- "lib/net462/Microsoft.Extensions.Configuration.dll",
- "lib/net462/Microsoft.Extensions.Configuration.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
- "microsoft.extensions.configuration.8.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "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.Configuration.Binder/8.0.1": {
- "sha512": "2UKFJnLiBt7Od6nCnTqP9rTIUNhzmn9Hv1l2FchyKbz8xieB9ULwZTbQZMw+M24Qw3F5dzzH1U9PPleN0LNLOQ==",
- "type": "package",
- "path": "microsoft.extensions.configuration.binder/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll",
- "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets",
- "lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
- "microsoft.extensions.configuration.binder.8.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.binder.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
- "sha512": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==",
- "type": "package",
- "path": "microsoft.extensions.configuration.fileextensions/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets",
- "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.fileextensions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Configuration.Json/8.0.0": {
- "sha512": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==",
- "type": "package",
- "path": "microsoft.extensions.configuration.json/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets",
- "lib/net462/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net462/Microsoft.Extensions.Configuration.Json.xml",
- "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml",
- "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml",
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
- "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.json.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.FileProviders.Abstractions/8.0.0": {
- "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
- "type": "package",
- "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/net8.0/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.8.0.0.nupkg.sha512",
- "microsoft.extensions.fileproviders.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
- "sha512": "UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==",
- "type": "package",
- "path": "microsoft.extensions.fileproviders.physical/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
- "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
- "microsoft.extensions.fileproviders.physical.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
- "sha512": "OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==",
- "type": "package",
- "path": "microsoft.extensions.filesystemglobbing/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
- "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
- "microsoft.extensions.filesystemglobbing.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "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.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.JSInterop/8.0.6": {
- "sha512": "E1djWS3d41fcd++7sGlbYhOHde5Pb0oBpOcNvUbn+1ga/yCvsjzUfbd/tDRg1qacNKS0iwKWYOIqTZxJnh99dQ==",
- "type": "package",
- "path": "microsoft.jsinterop/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net8.0/Microsoft.JSInterop.dll",
- "lib/net8.0/Microsoft.JSInterop.xml",
- "microsoft.jsinterop.8.0.6.nupkg.sha512",
- "microsoft.jsinterop.nuspec"
- ]
- },
- "Microsoft.JSInterop.WebAssembly/8.0.6": {
- "sha512": "Ufy/hbi7VNNxSJN62ItkcMS3xFCdLzju2rpgQcQAj70rZoxCh4riNBAAsZvURxmn9Hwlxel/R6CG1B+AKpCrKw==",
- "type": "package",
- "path": "microsoft.jsinterop.webassembly/8.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "THIRD-PARTY-NOTICES.txt",
- "lib/net8.0/Microsoft.JSInterop.WebAssembly.dll",
- "lib/net8.0/Microsoft.JSInterop.WebAssembly.xml",
- "microsoft.jsinterop.webassembly.8.0.6.nupkg.sha512",
- "microsoft.jsinterop.webassembly.nuspec"
- ]
- },
- "Microsoft.NET.ILLink.Tasks/8.0.20": {
- "sha512": "Rhcto2AjGvTO62+/VTmBpumBOmqIGp7nYEbTbmEXkCq4yPGxV8whju3/HsIA/bKyo2+DggaYk5+/8sxb1AbPTw==",
- "type": "package",
- "path": "microsoft.net.illink.tasks/8.0.20",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "Sdk/Sdk.props",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/cs/ILLink.CodeFixProvider.dll",
- "analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll",
- "build/Microsoft.NET.ILLink.Analyzers.props",
- "build/Microsoft.NET.ILLink.Tasks.props",
- "build/Microsoft.NET.ILLink.targets",
- "microsoft.net.illink.tasks.8.0.20.nupkg.sha512",
- "microsoft.net.illink.tasks.nuspec",
- "tools/net472/ILLink.Tasks.dll",
- "tools/net472/ILLink.Tasks.dll.config",
- "tools/net472/Mono.Cecil.Mdb.dll",
- "tools/net472/Mono.Cecil.Pdb.dll",
- "tools/net472/Mono.Cecil.Rocks.dll",
- "tools/net472/Mono.Cecil.dll",
- "tools/net472/Sdk/Sdk.props",
- "tools/net472/System.Buffers.dll",
- "tools/net472/System.Collections.Immutable.dll",
- "tools/net472/System.Memory.dll",
- "tools/net472/System.Numerics.Vectors.dll",
- "tools/net472/System.Reflection.Metadata.dll",
- "tools/net472/System.Runtime.CompilerServices.Unsafe.dll",
- "tools/net472/build/Microsoft.NET.ILLink.Analyzers.props",
- "tools/net472/build/Microsoft.NET.ILLink.Tasks.props",
- "tools/net472/build/Microsoft.NET.ILLink.targets",
- "tools/net8.0/ILLink.Tasks.deps.json",
- "tools/net8.0/ILLink.Tasks.dll",
- "tools/net8.0/Mono.Cecil.Mdb.dll",
- "tools/net8.0/Mono.Cecil.Pdb.dll",
- "tools/net8.0/Mono.Cecil.Rocks.dll",
- "tools/net8.0/Mono.Cecil.dll",
- "tools/net8.0/Sdk/Sdk.props",
- "tools/net8.0/build/Microsoft.NET.ILLink.Analyzers.props",
- "tools/net8.0/build/Microsoft.NET.ILLink.Tasks.props",
- "tools/net8.0/build/Microsoft.NET.ILLink.targets",
- "tools/net8.0/illink.deps.json",
- "tools/net8.0/illink.dll",
- "tools/net8.0/illink.runtimeconfig.json",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.NET.Sdk.WebAssembly.Pack/9.0.9": {
- "sha512": "Nx4yF/l8YyzwHM+xBRFOSGv77mjBZP0XkImzLMdrSBGYPB32nEZNXTSwhH9viDhxMhGij+fVUjJj5iAtUdMBww==",
- "type": "package",
- "path": "microsoft.net.sdk.webassembly.pack/9.0.9",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "WasmAppHost/BrowserDebugHost.deps.json",
- "WasmAppHost/BrowserDebugHost.dll",
- "WasmAppHost/BrowserDebugHost.runtimeconfig.json",
- "WasmAppHost/BrowserDebugHost.staticwebassets.endpoints.json",
- "WasmAppHost/BrowserDebugProxy.dll",
- "WasmAppHost/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
- "WasmAppHost/Microsoft.CodeAnalysis.CSharp.dll",
- "WasmAppHost/Microsoft.CodeAnalysis.Scripting.dll",
- "WasmAppHost/Microsoft.CodeAnalysis.dll",
- "WasmAppHost/Microsoft.FileFormats.dll",
- "WasmAppHost/Microsoft.NET.WebAssembly.Webcil.dll",
- "WasmAppHost/Microsoft.SymbolStore.dll",
- "WasmAppHost/Newtonsoft.Json.dll",
- "WasmAppHost/WasmAppHost.deps.json",
- "WasmAppHost/WasmAppHost.dll",
- "WasmAppHost/WasmAppHost.runtimeconfig.json",
- "WasmAppHost/WasmAppHost.staticwebassets.endpoints.json",
- "build/Microsoft.NET.Sdk.WebAssembly.Browser.props",
- "build/Microsoft.NET.Sdk.WebAssembly.Browser.targets",
- "build/Microsoft.NET.Sdk.WebAssembly.Pack.props",
- "build/Microsoft.NET.Sdk.WebAssembly.Pack.targets",
- "build/Wasm.web.config",
- "build/browser.runtimeconfig.template.json",
- "microsoft.net.sdk.webassembly.pack.9.0.9.nupkg.sha512",
- "microsoft.net.sdk.webassembly.pack.nuspec",
- "tools/net472/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.dll",
- "tools/net472/Microsoft.NET.WebAssembly.Webcil.dll",
- "tools/net9.0/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks.dll",
- "tools/net9.0/Microsoft.NET.WebAssembly.Webcil.dll"
- ]
- },
- "PSC.Blazor.Components.Chartjs/8.0.8": {
- "sha512": "N5P5DaddtBmmdpd96t3PQ2td9VUmTZM0VjMWBAuApJGS6QWjwAavRaKZ/jwcuQVk8uajf1/DmR3lWjyAFABtAQ==",
- "type": "package",
- "path": "psc.blazor.components.chartjs/8.0.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE",
- "README.md",
- "build/Microsoft.AspNetCore.StaticWebAssets.props",
- "build/PSC.Blazor.Components.Chartjs.props",
- "buildMultiTargeting/PSC.Blazor.Components.Chartjs.props",
- "buildTransitive/PSC.Blazor.Components.Chartjs.props",
- "content/libman.json",
- "content/psc_ico.ico",
- "contentFiles/any/net8.0/libman.json",
- "contentFiles/any/net8.0/psc_ico.ico",
- "lib/net8.0/PSC.Blazor.Components.Chartjs.dll",
- "lib/net8.0/PSC.Blazor.Components.Chartjs.xml",
- "psc.blazor.components.chartjs.8.0.8.nupkg.sha512",
- "psc.blazor.components.chartjs.nuspec",
- "psc_logo.png",
- "staticwebassets/Chart.js",
- "staticwebassets/PSC.Blazor.Components.Chartjs.bundle.scp.css",
- "staticwebassets/lib/Chart.js/chart.cjs",
- "staticwebassets/lib/Chart.js/chart.cjs.map",
- "staticwebassets/lib/Chart.js/chart.esm.js",
- "staticwebassets/lib/Chart.js/chart.esm.min.js",
- "staticwebassets/lib/Chart.js/chart.js",
- "staticwebassets/lib/Chart.js/chart.js.map",
- "staticwebassets/lib/Chart.js/chart.min.js",
- "staticwebassets/lib/Chart.js/chart.mjs",
- "staticwebassets/lib/Chart.js/chart.umd.js",
- "staticwebassets/lib/Chart.js/chart.umd.js.map",
- "staticwebassets/lib/Chart.js/chunks/helpers.segment.cjs",
- "staticwebassets/lib/Chart.js/chunks/helpers.segment.cjs.map",
- "staticwebassets/lib/Chart.js/chunks/helpers.segment.js",
- "staticwebassets/lib/Chart.js/chunks/helpers.segment.js.map",
- "staticwebassets/lib/Chart.js/controllers/controller.bar.d.ts",
- "staticwebassets/lib/Chart.js/controllers/controller.bubble.d.ts",
- "staticwebassets/lib/Chart.js/controllers/controller.doughnut.d.ts",
- "staticwebassets/lib/Chart.js/controllers/controller.line.d.ts",
- "staticwebassets/lib/Chart.js/controllers/controller.pie.d.ts",
- "staticwebassets/lib/Chart.js/controllers/controller.polarArea.d.ts",
- "staticwebassets/lib/Chart.js/controllers/controller.radar.d.ts",
- "staticwebassets/lib/Chart.js/controllers/controller.scatter.d.ts",
- "staticwebassets/lib/Chart.js/controllers/index.d.ts",
- "staticwebassets/lib/Chart.js/core/core.adapters.d.ts",
- "staticwebassets/lib/Chart.js/core/core.animation.d.ts",
- "staticwebassets/lib/Chart.js/core/core.animations.d.ts",
- "staticwebassets/lib/Chart.js/core/core.animations.defaults.d.ts",
- "staticwebassets/lib/Chart.js/core/core.animator.d.ts",
- "staticwebassets/lib/Chart.js/core/core.config.d.ts",
- "staticwebassets/lib/Chart.js/core/core.controller.d.ts",
- "staticwebassets/lib/Chart.js/core/core.datasetController.d.ts",
- "staticwebassets/lib/Chart.js/core/core.defaults.d.ts",
- "staticwebassets/lib/Chart.js/core/core.element.d.ts",
- "staticwebassets/lib/Chart.js/core/core.interaction.d.ts",
- "staticwebassets/lib/Chart.js/core/core.layouts.d.ts",
- "staticwebassets/lib/Chart.js/core/core.layouts.defaults.d.ts",
- "staticwebassets/lib/Chart.js/core/core.plugins.d.ts",
- "staticwebassets/lib/Chart.js/core/core.registry.d.ts",
- "staticwebassets/lib/Chart.js/core/core.scale.autoskip.d.ts",
- "staticwebassets/lib/Chart.js/core/core.scale.d.ts",
- "staticwebassets/lib/Chart.js/core/core.scale.defaults.d.ts",
- "staticwebassets/lib/Chart.js/core/core.ticks.d.ts",
- "staticwebassets/lib/Chart.js/core/core.typedRegistry.d.ts",
- "staticwebassets/lib/Chart.js/core/index.d.ts",
- "staticwebassets/lib/Chart.js/elements/element.arc.d.ts",
- "staticwebassets/lib/Chart.js/elements/element.bar.d.ts",
- "staticwebassets/lib/Chart.js/elements/element.line.d.ts",
- "staticwebassets/lib/Chart.js/elements/element.point.d.ts",
- "staticwebassets/lib/Chart.js/elements/index.d.ts",
- "staticwebassets/lib/Chart.js/helpers.cjs",
- "staticwebassets/lib/Chart.js/helpers.cjs.map",
- "staticwebassets/lib/Chart.js/helpers.esm.js",
- "staticwebassets/lib/Chart.js/helpers.esm.min.js",
- "staticwebassets/lib/Chart.js/helpers.js",
- "staticwebassets/lib/Chart.js/helpers.js.map",
- "staticwebassets/lib/Chart.js/helpers.mjs",
- "staticwebassets/lib/Chart.js/helpers/helpers.canvas.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.collection.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.color.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.config.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.config.types.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.core.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.curve.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.dom.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.easing.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.extras.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.interpolation.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.intl.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.math.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.options.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.rtl.d.ts",
- "staticwebassets/lib/Chart.js/helpers/helpers.segment.d.ts",
- "staticwebassets/lib/Chart.js/helpers/index.d.ts",
- "staticwebassets/lib/Chart.js/index.d.ts",
- "staticwebassets/lib/Chart.js/index.umd.d.ts",
- "staticwebassets/lib/Chart.js/platform/index.d.ts",
- "staticwebassets/lib/Chart.js/platform/platform.base.d.ts",
- "staticwebassets/lib/Chart.js/platform/platform.basic.d.ts",
- "staticwebassets/lib/Chart.js/platform/platform.dom.d.ts",
- "staticwebassets/lib/Chart.js/plugins/index.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.colors.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.decimation.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.filler/filler.drawing.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.filler/filler.helper.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.filler/filler.options.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.filler/filler.segment.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.filler/filler.target.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.filler/filler.target.stack.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.filler/index.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.filler/simpleArc.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.legend.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.subtitle.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.title.d.ts",
- "staticwebassets/lib/Chart.js/plugins/plugin.tooltip.d.ts",
- "staticwebassets/lib/Chart.js/scales/index.d.ts",
- "staticwebassets/lib/Chart.js/scales/scale.category.d.ts",
- "staticwebassets/lib/Chart.js/scales/scale.linear.d.ts",
- "staticwebassets/lib/Chart.js/scales/scale.linearbase.d.ts",
- "staticwebassets/lib/Chart.js/scales/scale.logarithmic.d.ts",
- "staticwebassets/lib/Chart.js/scales/scale.radialLinear.d.ts",
- "staticwebassets/lib/Chart.js/scales/scale.time.d.ts",
- "staticwebassets/lib/Chart.js/scales/scale.timeseries.d.ts",
- "staticwebassets/lib/Chart.js/types.d.ts",
- "staticwebassets/lib/Chart.js/types/animation.d.ts",
- "staticwebassets/lib/Chart.js/types/basic.d.ts",
- "staticwebassets/lib/Chart.js/types/color.d.ts",
- "staticwebassets/lib/Chart.js/types/geometric.d.ts",
- "staticwebassets/lib/Chart.js/types/index.d.ts",
- "staticwebassets/lib/Chart.js/types/layout.d.ts",
- "staticwebassets/lib/Chart.js/types/utils.d.ts",
- "staticwebassets/lib/chartjs-adapter-moment/chartjs-adapter-moment.esm.js",
- "staticwebassets/lib/chartjs-adapter-moment/chartjs-adapter-moment.esm.min.js",
- "staticwebassets/lib/chartjs-adapter-moment/chartjs-adapter-moment.js",
- "staticwebassets/lib/chartjs-adapter-moment/chartjs-adapter-moment.min.js",
- "staticwebassets/lib/chartjs-plugin-autocolors/chartjs-plugin-autocolors.cjs",
- "staticwebassets/lib/chartjs-plugin-autocolors/chartjs-plugin-autocolors.cjs.map",
- "staticwebassets/lib/chartjs-plugin-autocolors/chartjs-plugin-autocolors.esm.js",
- "staticwebassets/lib/chartjs-plugin-autocolors/chartjs-plugin-autocolors.esm.js.map",
- "staticwebassets/lib/chartjs-plugin-autocolors/chartjs-plugin-autocolors.min.js",
- "staticwebassets/lib/chartjs-plugin-autocolors/chartjs-plugin-autocolors.min.js.map",
- "staticwebassets/lib/chartjs-plugin-datalabels/chartjs-plugin-datalabels.esm.js",
- "staticwebassets/lib/chartjs-plugin-datalabels/chartjs-plugin-datalabels.esm.min.js",
- "staticwebassets/lib/chartjs-plugin-datalabels/chartjs-plugin-datalabels.js",
- "staticwebassets/lib/chartjs-plugin-datalabels/chartjs-plugin-datalabels.min.js",
- "staticwebassets/lib/chartjs-plugin-zoom/chartjs-plugin-zoom.esm.js",
- "staticwebassets/lib/chartjs-plugin-zoom/chartjs-plugin-zoom.esm.min.js",
- "staticwebassets/lib/chartjs-plugin-zoom/chartjs-plugin-zoom.js",
- "staticwebassets/lib/chartjs-plugin-zoom/chartjs-plugin-zoom.min.js",
- "staticwebassets/lib/hammer.js/hammer.js",
- "staticwebassets/lib/hammer.js/hammer.min.js",
- "staticwebassets/lib/hammer.js/hammer.min.js.map",
- "staticwebassets/lib/hammer.js/hammer.min.map"
- ]
- },
- "System.IO.Pipelines/8.0.0": {
- "sha512": "FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==",
- "type": "package",
- "path": "system.io.pipelines/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.IO.Pipelines.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
- "lib/net462/System.IO.Pipelines.dll",
- "lib/net462/System.IO.Pipelines.xml",
- "lib/net6.0/System.IO.Pipelines.dll",
- "lib/net6.0/System.IO.Pipelines.xml",
- "lib/net7.0/System.IO.Pipelines.dll",
- "lib/net7.0/System.IO.Pipelines.xml",
- "lib/net8.0/System.IO.Pipelines.dll",
- "lib/net8.0/System.IO.Pipelines.xml",
- "lib/netstandard2.0/System.IO.Pipelines.dll",
- "lib/netstandard2.0/System.IO.Pipelines.xml",
- "system.io.pipelines.8.0.0.nupkg.sha512",
- "system.io.pipelines.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "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"
- ]
- },
- "Domain/1.0.0": {
- "type": "project",
- "path": "../Domain/Domain.csproj",
- "msbuildProject": "../Domain/Domain.csproj"
- }
- },
- "projectFileDependencyGroups": {
- "net8.0": [
- "Blazored.Modal >= 7.3.1",
- "Blazored.Toast >= 4.2.1",
- "Blazored.Typeahead >= 4.7.0",
- "Domain >= 1.0.0",
- "Microsoft.AspNetCore.Components.Authorization >= 8.0.6",
- "Microsoft.AspNetCore.Components.WebAssembly >= 8.0.6",
- "Microsoft.AspNetCore.Components.WebAssembly.DevServer >= 8.0.6",
- "Microsoft.NET.ILLink.Tasks >= 8.0.20",
- "Microsoft.NET.Sdk.WebAssembly.Pack >= 9.0.9",
- "PSC.Blazor.Components.Chartjs >= 8.0.8"
- ]
- },
- "packageFolders": {
- "C:\\Users\\maski\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.UIBlazor\\phronCare.UIBlazor.csproj",
- "projectName": "phronCare.UIBlazor",
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.UIBlazor\\phronCare.UIBlazor.csproj",
- "packagesPath": "C:\\Users\\maski\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\phronCare.UIBlazor\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\maski\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net8.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "C:\\Program Files\\dotnet\\library-packs": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "projectReferences": {
- "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj": {
- "projectPath": "C:\\Users\\maski\\source\\repos\\SaludLAB\\phronCare\\Domain\\Domain.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "direct"
- },
- "SdkAnalysisLevel": "9.0.300"
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Blazored.Modal": {
- "target": "Package",
- "version": "[7.3.1, )"
- },
- "Blazored.Toast": {
- "target": "Package",
- "version": "[4.2.1, )"
- },
- "Blazored.Typeahead": {
- "target": "Package",
- "version": "[4.7.0, )"
- },
- "Microsoft.AspNetCore.Components.Authorization": {
- "target": "Package",
- "version": "[8.0.6, )"
- },
- "Microsoft.AspNetCore.Components.WebAssembly": {
- "target": "Package",
- "version": "[8.0.6, )"
- },
- "Microsoft.AspNetCore.Components.WebAssembly.DevServer": {
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.6, )"
- },
- "Microsoft.NET.ILLink.Tasks": {
- "suppressParent": "All",
- "target": "Package",
- "version": "[8.0.20, )",
- "autoReferenced": true
- },
- "Microsoft.NET.Sdk.WebAssembly.Pack": {
- "suppressParent": "All",
- "target": "Package",
- "version": "[9.0.9, )",
- "autoReferenced": true
- },
- "PSC.Blazor.Components.Chartjs": {
- "target": "Package",
- "version": "[8.0.8, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.NETCore.App.Runtime.Mono.browser-wasm",
- "version": "[8.0.20, 8.0.20]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.305/PortableRuntimeIdentifierGraph.json"
- }
- },
- "runtimes": {
- "browser-wasm": {
- "#import": []
- }
- }
- }
-}
\ No newline at end of file
diff --git a/phronCare.UIBlazor/phronCare.UIBlazor.csproj.user b/phronCare.UIBlazor/phronCare.UIBlazor.csproj.user
deleted file mode 100644
index 983ecfc..0000000
--- a/phronCare.UIBlazor/phronCare.UIBlazor.csproj.user
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- http
-
-
- ProjectDebugger
-
-
\ No newline at end of file
diff --git a/phronCare.UIBlazor/wwwroot/css/fontawesome-free-6.4.2-web/LICENSE.txt b/phronCare.UIBlazor/wwwroot/css/fontawesome-free-6.4.2-web/LICENSE.txt
deleted file mode 100644
index 39e18e3..0000000
--- a/phronCare.UIBlazor/wwwroot/css/fontawesome-free-6.4.2-web/LICENSE.txt
+++ /dev/null
@@ -1,165 +0,0 @@
-Fonticons, Inc. (https://fontawesome.com)
-
---------------------------------------------------------------------------------
-
-Font Awesome Free License
-
-Font Awesome Free is free, open source, and GPL friendly. You can use it for
-commercial projects, open source projects, or really almost whatever you want.
-Full Font Awesome Free license: https://fontawesome.com/license/free.
-
---------------------------------------------------------------------------------
-
-# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
-
-The Font Awesome Free download is licensed under a Creative Commons
-Attribution 4.0 International License and applies to all icons packaged
-as SVG and JS file types.
-
---------------------------------------------------------------------------------
-
-# Fonts: SIL OFL 1.1 License
-
-In the Font Awesome Free download, the SIL OFL license applies to all icons
-packaged as web and desktop font files.
-
-Copyright (c) 2023 Fonticons, Inc. (https://fontawesome.com)
-with Reserved Font Name: "Font Awesome".
-
-This Font Software is licensed under the SIL Open Font License, Version 1.1.
-This license is copied below, and is also available with a FAQ at:
-http://scripts.sil.org/OFL
-
-SIL OPEN FONT LICENSE
-Version 1.1 - 26 February 2007
-
-PREAMBLE
-The goals of the Open Font License (OFL) are to stimulate worldwide
-development of collaborative font projects, to support the font creation
-efforts of academic and linguistic communities, and to provide a free and
-open framework in which fonts may be shared and improved in partnership
-with others.
-
-The OFL allows the licensed fonts to be used, studied, modified and
-redistributed freely as long as they are not sold by themselves. The
-fonts, including any derivative works, can be bundled, embedded,
-redistributed and/or sold with any software provided that any reserved
-names are not used by derivative works. The fonts and derivatives,
-however, cannot be released under any other type of license. The
-requirement for fonts to remain under this license does not apply
-to any document created using the fonts or their derivatives.
-
-DEFINITIONS
-"Font Software" refers to the set of files released by the Copyright
-Holder(s) under this license and clearly marked as such. This may
-include source files, build scripts and documentation.
-
-"Reserved Font Name" refers to any names specified as such after the
-copyright statement(s).
-
-"Original Version" refers to the collection of Font Software components as
-distributed by the Copyright Holder(s).
-
-"Modified Version" refers to any derivative made by adding to, deleting,
-or substituting — in part or in whole — any of the components of the
-Original Version, by changing formats or by porting the Font Software to a
-new environment.
-
-"Author" refers to any designer, engineer, programmer, technical
-writer or other person who contributed to the Font Software.
-
-PERMISSION & CONDITIONS
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of the Font Software, to use, study, copy, merge, embed, modify,
-redistribute, and sell modified and unmodified copies of the Font
-Software, subject to the following conditions:
-
-1) Neither the Font Software nor any of its individual components,
-in Original or Modified Versions, may be sold by itself.
-
-2) Original or Modified Versions of the Font Software may be bundled,
-redistributed and/or sold with any software, provided that each copy
-contains the above copyright notice and this license. These can be
-included either as stand-alone text files, human-readable headers or
-in the appropriate machine-readable metadata fields within text or
-binary files as long as those fields can be easily viewed by the user.
-
-3) No Modified Version of the Font Software may use the Reserved Font
-Name(s) unless explicit written permission is granted by the corresponding
-Copyright Holder. This restriction only applies to the primary font name as
-presented to the users.
-
-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
-Software shall not be used to promote, endorse or advertise any
-Modified Version, except to acknowledge the contribution(s) of the
-Copyright Holder(s) and the Author(s) or with their explicit written
-permission.
-
-5) The Font Software, modified or unmodified, in part or in whole,
-must be distributed entirely under this license, and must not be
-distributed under any other license. The requirement for fonts to
-remain under this license does not apply to any document created
-using the Font Software.
-
-TERMINATION
-This license becomes null and void if any of the above conditions are
-not met.
-
-DISCLAIMER
-THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
-OTHER DEALINGS IN THE FONT SOFTWARE.
-
---------------------------------------------------------------------------------
-
-# Code: MIT License (https://opensource.org/licenses/MIT)
-
-In the Font Awesome Free download, the MIT license applies to all non-font and
-non-icon files.
-
-Copyright 2023 Fonticons, Inc.
-
-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.
-
---------------------------------------------------------------------------------
-
-# Attribution
-
-Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
-Awesome Free files already contain embedded comments with sufficient
-attribution, so you shouldn't need to do anything additional when using these
-files normally.
-
-We've kept attribution comments terse, so we ask that you do not actively work
-to remove them from files, especially code. They're a great way for folks to
-learn about Font Awesome.
-
---------------------------------------------------------------------------------
-
-# Brand Icons
-
-All brand icons are trademarks of their respective owners. The use of these
-trademarks does not indicate endorsement of the trademark holder by Font
-Awesome, nor vice versa. **Please do not use brand logos for any purpose except
-to represent the company, product, or service to which they refer.**