diff --git a/.vs/Final_OOP/DesignTimeBuild/.dtbcache.v2 b/.vs/Final_OOP/DesignTimeBuild/.dtbcache.v2
index 18aba02..8dad32e 100644
Binary files a/.vs/Final_OOP/DesignTimeBuild/.dtbcache.v2 and b/.vs/Final_OOP/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/.vs/Final_OOP/v17/.futdcache.v2 b/.vs/Final_OOP/v17/.futdcache.v2
index 5a3f3ba..7fb6129 100644
Binary files a/.vs/Final_OOP/v17/.futdcache.v2 and b/.vs/Final_OOP/v17/.futdcache.v2 differ
diff --git a/Controladora/Controladora.csproj b/Controladora/Controladora.csproj
index a8a5fb3..f35cac4 100644
--- a/Controladora/Controladora.csproj
+++ b/Controladora/Controladora.csproj
@@ -6,6 +6,12 @@
enable
+<<<<<<< HEAD
+=======
+
+
+
+>>>>>>> c493033 (cosas que faltaban)
diff --git a/Controladora/ControladoraCategorias.cs b/Controladora/ControladoraCategorias.cs
index 80f0125..29e990f 100644
--- a/Controladora/ControladoraCategorias.cs
+++ b/Controladora/ControladoraCategorias.cs
@@ -6,31 +6,48 @@ namespace Controladora
{
public class ControladoraCategorias : Singleton
{
+ // Método para verificar si una categoría con un ID ya existe
+ private bool CategoriaExiste(int id)
+ {
+ var categorias = RepositorioCategoria.Instance.Listar();
+ return categorias.Any(c => c.Id == id);
+ }
+
public string Añadir(Categoria t)
{
- if (t == null) return "El Categoria es nulo fallo la carga";
+ if (t == null) return "La categoría es nula, fallo la carga";
- return (RepositorioCategoria.Instance.Add(t)) ?
- $"El Categoria {t.Descripcion} se cargo correctamente":
- $"Fallo la carga del Categoria {t.Descripcion}";
+ if (CategoriaExiste(t.Id))
+ {
+ return $"Ya existe una categoría con el ID {t.Id}";
+ }
+
+ return (RepositorioCategoria.Instance.Add(t)) ?
+ $"La categoría {t.Descripcion} se cargó correctamente" :
+ $"Falló la carga de la categoría {t.Descripcion}";
}
public string Eliminar(Categoria t)
{
- if (t == null) return "El Categoria es nulo fallo la carga";
+ if (t == null) return "La categoría es nula, fallo la carga";
- return (RepositorioCategoria.Instance.Del(t)) ?
- $"El Categoria {t.Descripcion} se Elimino correctamente":
- $"Fallo la Eliminacion del Categoria {t.Descripcion}";
+ return (RepositorioCategoria.Instance.Del(t)) ?
+ $"La categoría {t.Descripcion} se eliminó correctamente" :
+ $"Falló la eliminación de la categoría {t.Descripcion}";
}
- public string Modificar(Categoria t)
+ public string Modificar(Categoria t)
{
- if (t == null) return "El Categoria es nulo fallo la carga";
+ if (t == null) return "La categoría es nula, fallo la carga";
- return (RepositorioCategoria.Instance.Mod(t)) ?
- $"El Categoria {t.Descripcion} se Modifico correctamente":
- $"Fallo la Modificacion del Categoria {t.Descripcion}";
+ if (!CategoriaExiste(t.Id))
+ {
+ return $"No se encontró una categoría con el ID {t.Id}";
+ }
+
+ return (RepositorioCategoria.Instance.Mod(t)) ?
+ $"La categoría {t.Descripcion} se modificó correctamente" :
+ $"Falló la modificación de la categoría {t.Descripcion}";
}
public ReadOnlyCollection Listar()
@@ -39,4 +56,3 @@ namespace Controladora
}
}
}
-
diff --git a/Controladora/ControladoraClientes.cs b/Controladora/ControladoraClientes.cs
index 1df7e2a..12c05f3 100644
--- a/Controladora/ControladoraClientes.cs
+++ b/Controladora/ControladoraClientes.cs
@@ -6,33 +6,51 @@ namespace Controladora
{
public class ControladoraClientes : Singleton
{
- public string Añadir(Cliente cl)
+ public string Añadir(Cliente t)
{
- if (cl == null) return "El Cliente es nulo fallo la carga";
+ if (t == null)
+ {
+ return "El Cliente es nulo, fallo la carga";
+ }
- return (RepositorioClientes.Instance.Add(cl)) ?
- $"El Cliente {cl.Nombre} se cargo correctamente":
- $"Fallo la carga del Cliente {cl.Nombre}";
+ // Verificar si el CUIT ya existe en el repositorio
+ if (RepositorioClientes.Instance.ExistePorCuit(t.Cuit))
+ {
+ return $"El Cliente con el CUIT {t.Cuit} ya existe";
+ }
+
+ try
+ {
+ bool resultado = RepositorioClientes.Instance.Add(t);
+ return resultado ?
+ $"El Cliente con el CUIT {t.Cuit} se cargó correctamente" :
+ $"Falló la carga del Cliente con el CUIT {t.Cuit}";
+ }
+ catch (Exception ex)
+ {
+ // Captura cualquier excepción no prevista
+ return $"Ocurrió un error inesperado: {ex.Message}";
+ }
}
- public string Eliminar(long t)
+ public string Eliminar(long cuit)
{
- var cl = RepositorioClientes.Instance.Listar().First(x => x.Cuit == t);
+ // Buscar el cliente por CUIT antes de eliminar
+ var cliente = RepositorioClientes.Instance.Listar().FirstOrDefault(x => x.Cuit == cuit);
+ if (cliente == null) return "El Cliente no existe";
- if (cl == null) return "El Cliente es nulo fallo la carga";
-
- return (RepositorioClientes.Instance.Del(cl)) ?
- $"El Cliente {cl.Nombre} se Elimino correctamente":
- $"Fallo la Eliminacion del Cliente {t}";
+ return (RepositorioClientes.Instance.Del(cliente)) ?
+ $"El Cliente {cliente.Nombre} se eliminó correctamente" :
+ $"Falló la eliminación del Cliente con el CUIT {cuit}";
}
public string Modificar(Cliente t)
{
- if (t == null) return "El Cliente es nulo fallo la carga";
+ if (t == null) return "El Cliente es nulo, fallo la carga";
- return (RepositorioClientes.Instance.Mod(t)) ?
- $"El Cliente {t.Nombre} se Modifico correctamente":
- $"Fallo la Modificacion del Cliente {t.Nombre}";
+ return (RepositorioClientes.Instance.Mod(t)) ?
+ $"El Cliente con el CUIT {t.Cuit} se modificó correctamente" :
+ $"Falló la modificación del Cliente con el CUIT {t.Cuit}";
}
public ReadOnlyCollection Listar()
@@ -40,4 +58,4 @@ namespace Controladora
return RepositorioClientes.Instance.Listar();
}
}
-}
\ No newline at end of file
+}
diff --git a/Controladora/ControladoraFacturas.cs b/Controladora/ControladoraFacturas.cs
index 74bd2fe..ce68e52 100644
--- a/Controladora/ControladoraFacturas.cs
+++ b/Controladora/ControladoraFacturas.cs
@@ -8,29 +8,49 @@ namespace Controladora
{
public string Añadir(Factura t)
{
- if (t == null) return "El Factura es nulo fallo la carga";
+ if (t == null) return "La Factura es nula, fallo la carga";
- return (RepositorioFactura.Instance.Add(t)) ?
- $"El Factura {t.Id} se cargo correctamente":
- $"Fallo la carga del Factura {t.Id}";
+ if (RepositorioFactura.Instance.ExistePorId(t.Id))
+ {
+ return $"La Factura con el ID {t.Id} ya existe";
+ }
+
+ // Verificar si el cliente está seleccionado
+ if (t.Cliente == null || t.Cliente.Cuit == 0)
+ {
+ return "Debe seleccionar un cliente antes de agregar la factura";
+ }
+
+ try
+ {
+ bool resultado = RepositorioFactura.Instance.Add(t);
+ return resultado ?
+ $"La Factura con el ID {t.Id} se cargó correctamente" :
+ $"Falló la carga de la Factura con el ID {t.Id}";
+ }
+ catch (Exception ex)
+ {
+ // Captura cualquier excepción no prevista
+ return $"Ocurrió un error inesperado: {ex.Message}";
+ }
}
public string Eliminar(Factura t)
{
- if (t == null) return "El Factura es nulo fallo la carga";
+ if (t == null) return "La Factura es nula, fallo la carga";
- return (RepositorioFactura.Instance.Del(t)) ?
- $"El Factura {t.Id} se Elimino correctamente":
- $"Fallo la Eliminacion del Factura {t.Id}";
+ return (RepositorioFactura.Instance.Del(t)) ?
+ $"La Factura con el ID {t.Id} se eliminó correctamente" :
+ $"Falló la eliminación de la Factura con el ID {t.Id}";
}
public string Modificar(Factura t)
{
- if (t == null) return "El Factura es nulo fallo la carga";
+ if (t == null) return "La Factura es nula, fallo la carga";
- return (RepositorioFactura.Instance.Mod(t)) ?
- $"El Factura {t.Id} se Modifico correctamente":
- $"Fallo la Modificacion del Factura {t.Id}";
+ return (RepositorioFactura.Instance.Mod(t)) ?
+ $"La Factura con el ID {t.Id} se modificó correctamente" :
+ $"Falló la modificación de la Factura con el ID {t.Id}";
}
public ReadOnlyCollection Listar()
@@ -39,3 +59,4 @@ namespace Controladora
}
}
}
+
\ No newline at end of file
diff --git a/Controladora/ControladoraProductos.cs b/Controladora/ControladoraProductos.cs
index 87aea0a..b365ca8 100644
--- a/Controladora/ControladoraProductos.cs
+++ b/Controladora/ControladoraProductos.cs
@@ -37,5 +37,7 @@ namespace Controladora
{
return RepositorioProductos.Instance.Listar();
}
+
+
}
}
\ No newline at end of file
diff --git a/Controladora/ControladoraProveedores.cs b/Controladora/ControladoraProveedores.cs
index a5df5c0..900e07c 100644
--- a/Controladora/ControladoraProveedores.cs
+++ b/Controladora/ControladoraProveedores.cs
@@ -10,29 +10,36 @@ namespace Controladora
{
if (t == null) return "El Proveedor es nulo fallo la carga";
- return (RepositorioProveedor.Instance.Add(t)) ?
- $"El Proveedor {t.Nombre} se cargo correctamente":
- $"Fallo la carga del Proveedor {t.Nombre}";
+ try
+ {
+ return RepositorioProveedor.Instance.Add(t) ?
+ $"El Proveedor {t.Nombre} se cargó correctamente" :
+ $"Falló la carga del Proveedor {t.Nombre}";
+ }
+ catch (InvalidOperationException ex)
+ {
+ return ex.Message; // Captura la excepción y muestra el mensaje adecuado
+ }
}
public string Eliminar(long t)
{
- var proveedor = RepositorioProveedor.Instance.Listar().First(x => x.Cuit == t);
+ var proveedor = RepositorioProveedor.Instance.Listar().FirstOrDefault(x => x.Cuit == t);
if (proveedor == null) return "El Proveedor es nulo fallo la baja";
return (RepositorioProveedor.Instance.Del(proveedor)) ?
- $"El Proveedor {proveedor.Nombre} se Elimino correctamente" :
- $"Fallo la Eliminacion del Proveedor {t}";
+ $"El Proveedor {proveedor.Nombre} se eliminó correctamente" :
+ $"Falló la eliminación del Proveedor {t}";
}
public string Modificar(Proveedor t)
{
- if (t == null) return "El Proveedor es nulo fallo la modificacion";
+ if (t == null) return "El Proveedor es nulo fallo la modificación";
- return (RepositorioProveedor.Instance.Mod(t)) ?
- $"El Proveedor {t.Nombre} se Modifico correctamente":
- $"Fallo la Modificacion del Proveedor {t.Nombre}";
+ return (RepositorioProveedor.Instance.Mod(t)) ?
+ $"El Proveedor {t.Nombre} se modificó correctamente" :
+ $"Falló la modificación del Proveedor {t.Nombre}";
}
public ReadOnlyCollection Listar()
@@ -40,4 +47,4 @@ namespace Controladora
return RepositorioProveedor.Instance.Listar();
}
}
-}
\ No newline at end of file
+}
diff --git a/Controladora/bin/Debug/net6.0/Controladora.deps.json b/Controladora/bin/Debug/net6.0/Controladora.deps.json
index f717833..3498de1 100644
--- a/Controladora/bin/Debug/net6.0/Controladora.deps.json
+++ b/Controladora/bin/Debug/net6.0/Controladora.deps.json
@@ -8,3612 +8,13 @@
".NETCoreApp,Version=v6.0": {
"Controladora/1.0.0": {
"dependencies": {
- "Emailer": "1.0.0",
"Entidades": "1.0.0",
- "Modelo": "1.0.0",
- "webhookSharp": "1.0.0"
+ "Modelo": "1.0.0"
},
"runtime": {
"Controladora.dll": {}
}
},
- "Emailer/1.0.0": {
- "dependencies": {
- "Microsoft.AspNetCore.All": "2.0.7"
- },
- "runtime": {
- "lib/netcoreapp2.0/Emailer.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "Libuv/1.10.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0"
- },
- "runtimeTargets": {
- "runtimes/linux-arm/native/libuv.so": {
- "rid": "linux-arm",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-arm64/native/libuv.so": {
- "rid": "linux-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-armel/native/libuv.so": {
- "rid": "linux-armel",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x64/native/libuv.so": {
- "rid": "linux-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx/native/libuv.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-arm/native/libuv.dll": {
- "rid": "win-arm",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x64/native/libuv.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x86/native/libuv.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "Microsoft.ApplicationInsights/2.4.0": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Diagnostics.StackTrace": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.ApplicationInsights.dll": {
- "assemblyVersion": "2.4.0.0",
- "fileVersion": "2.4.0.32153"
- }
- }
- },
- "Microsoft.ApplicationInsights.AspNetCore/2.1.1": {
- "dependencies": {
- "Microsoft.ApplicationInsights": "2.4.0",
- "Microsoft.ApplicationInsights.DependencyCollector": "2.4.1",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.DiagnosticAdapter": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "NETStandard.Library": "1.6.1",
- "System.Net.NameResolution": "4.3.0",
- "System.Text.Encodings.Web": "4.4.0"
- },
- "runtime": {
- "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll": {
- "assemblyVersion": "2.1.1.0",
- "fileVersion": "2.1.1.0"
- }
- }
- },
- "Microsoft.ApplicationInsights.DependencyCollector/2.4.1": {
- "dependencies": {
- "Microsoft.ApplicationInsights": "2.4.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
- "NETStandard.Library": "1.6.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Diagnostics.StackTrace": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.6/Microsoft.AI.DependencyCollector.dll": {
- "assemblyVersion": "2.4.1.0",
- "fileVersion": "2.4.1.1362"
- }
- }
- },
- "Microsoft.AspNetCore/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Diagnostics": "2.0.2",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Routing": "2.0.2",
- "Microsoft.AspNetCore.Server.IISIntegration": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Https": "2.0.2",
- "Microsoft.Extensions.Configuration.CommandLine": "2.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.Configuration.UserSecrets": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Logging.Configuration": "2.0.1",
- "Microsoft.Extensions.Logging.Console": "2.0.1",
- "Microsoft.Extensions.Logging.Debug": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.All/2.0.7": {
- "dependencies": {
- "Microsoft.AspNetCore": "2.0.2",
- "Microsoft.AspNetCore.Antiforgery": "2.0.2",
- "Microsoft.AspNetCore.ApplicationInsights.HostingStartup": "2.0.2",
- "Microsoft.AspNetCore.Authentication": "2.0.3",
- "Microsoft.AspNetCore.Authentication.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Authentication.Cookies": "2.0.3",
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.Authentication.Facebook": "2.0.3",
- "Microsoft.AspNetCore.Authentication.Google": "2.0.3",
- "Microsoft.AspNetCore.Authentication.JwtBearer": "2.0.3",
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "2.0.3",
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3",
- "Microsoft.AspNetCore.Authentication.OpenIdConnect": "2.0.3",
- "Microsoft.AspNetCore.Authentication.Twitter": "2.0.3",
- "Microsoft.AspNetCore.Authorization": "2.0.3",
- "Microsoft.AspNetCore.Authorization.Policy": "2.0.3",
- "Microsoft.AspNetCore.AzureAppServices.HostingStartup": "2.0.2",
- "Microsoft.AspNetCore.AzureAppServicesIntegration": "2.0.2",
- "Microsoft.AspNetCore.CookiePolicy": "2.0.3",
- "Microsoft.AspNetCore.Cors": "2.0.2",
- "Microsoft.AspNetCore.Cryptography.Internal": "2.0.2",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.0.2",
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.DataProtection.AzureStorage": "2.0.2",
- "Microsoft.AspNetCore.DataProtection.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Diagnostics": "2.0.2",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "2.0.2",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Html.Abstractions": "2.0.1",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Http.Features": "2.0.2",
- "Microsoft.AspNetCore.HttpOverrides": "2.0.2",
- "Microsoft.AspNetCore.Identity": "2.0.2",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "2.0.2",
- "Microsoft.AspNetCore.JsonPatch": "2.0.0",
- "Microsoft.AspNetCore.Localization": "2.0.2",
- "Microsoft.AspNetCore.Localization.Routing": "2.0.2",
- "Microsoft.AspNetCore.MiddlewareAnalysis": "2.0.2",
- "Microsoft.AspNetCore.Mvc": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Abstractions": "2.0.3",
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Cors": "2.0.3",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Formatters.Xml": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Localization": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Razor": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation": "2.0.3",
- "Microsoft.AspNetCore.Mvc.RazorPages": "2.0.3",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "2.0.3",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.3",
- "Microsoft.AspNetCore.NodeServices": "2.0.3",
- "Microsoft.AspNetCore.Owin": "2.0.2",
- "Microsoft.AspNetCore.Razor": "2.0.2",
- "Microsoft.AspNetCore.Razor.Language": "2.0.2",
- "Microsoft.AspNetCore.Razor.Runtime": "2.0.2",
- "Microsoft.AspNetCore.ResponseCaching": "2.0.2",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.ResponseCompression": "2.0.2",
- "Microsoft.AspNetCore.Rewrite": "2.0.2",
- "Microsoft.AspNetCore.Routing": "2.0.2",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.HttpSys": "2.0.3",
- "Microsoft.AspNetCore.Server.IISIntegration": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Https": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv": "2.0.2",
- "Microsoft.AspNetCore.Session": "2.0.2",
- "Microsoft.AspNetCore.SpaServices": "2.0.3",
- "Microsoft.AspNetCore.StaticFiles": "2.0.2",
- "Microsoft.AspNetCore.WebSockets": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.CodeAnalysis.Razor": "2.0.2",
- "Microsoft.Data.Sqlite": "2.0.1",
- "Microsoft.Data.Sqlite.Core": "2.0.1",
- "Microsoft.EntityFrameworkCore": "2.0.2",
- "Microsoft.EntityFrameworkCore.Design": "2.0.2",
- "Microsoft.EntityFrameworkCore.InMemory": "2.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2",
- "Microsoft.EntityFrameworkCore.SqlServer": "2.0.2",
- "Microsoft.EntityFrameworkCore.Sqlite": "2.0.2",
- "Microsoft.EntityFrameworkCore.Sqlite.Core": "2.0.2",
- "Microsoft.EntityFrameworkCore.Tools": "2.0.2",
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.Caching.Redis": "2.0.1",
- "Microsoft.Extensions.Caching.SqlServer": "2.0.1",
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.Configuration.AzureKeyVault": "2.0.1",
- "Microsoft.Extensions.Configuration.Binder": "2.0.1",
- "Microsoft.Extensions.Configuration.CommandLine": "2.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Microsoft.Extensions.Configuration.Ini": "2.0.1",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.Configuration.UserSecrets": "2.0.1",
- "Microsoft.Extensions.Configuration.Xml": "2.0.1",
- "Microsoft.Extensions.DependencyInjection": "2.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.DiagnosticAdapter": "2.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.FileProviders.Composite": "2.0.1",
- "Microsoft.Extensions.FileProviders.Embedded": "2.0.1",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1",
- "Microsoft.Extensions.FileSystemGlobbing": "2.0.1",
- "Microsoft.Extensions.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.Identity.Core": "2.0.2",
- "Microsoft.Extensions.Identity.Stores": "2.0.2",
- "Microsoft.Extensions.Localization": "2.0.2",
- "Microsoft.Extensions.Localization.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.AzureAppServices": "2.0.1",
- "Microsoft.Extensions.Logging.Configuration": "2.0.1",
- "Microsoft.Extensions.Logging.Console": "2.0.1",
- "Microsoft.Extensions.Logging.Debug": "2.0.1",
- "Microsoft.Extensions.Logging.EventSource": "2.0.1",
- "Microsoft.Extensions.Logging.TraceSource": "2.0.1",
- "Microsoft.Extensions.ObjectPool": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.1",
- "Microsoft.Extensions.Primitives": "2.0.0",
- "Microsoft.Extensions.WebEncoders": "2.0.1",
- "Microsoft.Net.Http.Headers": "2.0.2",
- "Microsoft.VisualStudio.Web.BrowserLink": "2.0.2"
- }
- },
- "Microsoft.AspNetCore.Antiforgery/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Extensions.ObjectPool": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.ApplicationInsights.HostingStartup/2.0.2": {
- "dependencies": {
- "Microsoft.ApplicationInsights.AspNetCore": "2.1.1",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Razor.Runtime": "2.0.2",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.DiagnosticAdapter": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Logging.Configuration": "2.0.1"
- },
- "runtime": {
- "lib/netcoreapp2.0/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Extensions.WebEncoders": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Cookies/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Core/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Facebook/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Google/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.JwtBearer/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication": "2.0.3",
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.1.4"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.OAuth/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication": "2.0.3",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3",
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.1.4"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Twitter/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authorization/2.0.3": {
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authorization.Policy/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Authorization": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.AzureAppServices.HostingStartup/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.AzureAppServicesIntegration": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2"
- },
- "runtime": {
- "lib/netcoreapp2.0/Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.AzureAppServicesIntegration/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.Extensions.Logging.AzureAppServices": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.AzureAppServicesIntegration.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.CookiePolicy/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Cors/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Cryptography.Internal/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.DataProtection/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "2.0.2",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Win32.Registry": "4.4.0",
- "System.Security.Cryptography.Xml": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.DataProtection.AzureStorage/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "WindowsAzure.Storage": "8.1.4"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.AzureStorage.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.Extensions.DependencyInjection": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Diagnostics/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Reflection.Metadata": "1.5.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Hosting/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Microsoft.Extensions.DependencyInjection": "2.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Reflection.Metadata": "1.5.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Html.Abstractions/2.0.1": {
- "dependencies": {
- "System.Text.Encodings.Web": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Http/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Extensions.ObjectPool": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Net.Http.Headers": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.0.2",
- "System.Text.Encodings.Web": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Extensions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Net.Http.Headers": "2.0.2",
- "System.Buffers": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Features/2.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.HttpOverrides/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Identity/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "2.0.3",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.Identity.Core": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Identity": "2.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2",
- "Microsoft.Extensions.Identity.Stores": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.JsonPatch/2.0.0": {
- "dependencies": {
- "Microsoft.CSharp": "4.4.0",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.0.17205"
- }
- }
- },
- "Microsoft.AspNetCore.Localization/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Localization.Abstractions": "2.0.2",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Localization.Routing/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Localization": "2.0.2",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.MiddlewareAnalysis/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "System.Diagnostics.DiagnosticSource": "4.4.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Cors": "2.0.3",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Localization": "2.0.3",
- "Microsoft.AspNetCore.Mvc.RazorPages": "2.0.3",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "2.0.3",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.3",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.DependencyInjection": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2",
- "Microsoft.Net.Http.Headers": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Core/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.Authorization.Policy": "2.0.3",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Mvc.Abstractions": "2.0.3",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Routing": "2.0.2",
- "Microsoft.Extensions.DependencyModel": "2.0.3",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Cors/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Cors": "2.0.2",
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3",
- "Microsoft.Extensions.Localization": "2.0.2",
- "System.ComponentModel.Annotations": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "2.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Localization/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Localization": "2.0.2",
- "Microsoft.AspNetCore.Mvc.Razor": "2.0.3",
- "Microsoft.Extensions.DependencyInjection": "2.0.0",
- "Microsoft.Extensions.Localization": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Razor/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.3",
- "Microsoft.AspNetCore.Razor.Runtime": "2.0.2",
- "Microsoft.CodeAnalysis.CSharp": "2.3.1",
- "Microsoft.CodeAnalysis.Razor": "2.0.2",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.FileProviders.Composite": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "2.0.2",
- "Microsoft.CodeAnalysis.Razor": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Mvc.RazorPages": "2.0.3"
- }
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "2.0.3",
- "Microsoft.AspNetCore.Razor.Runtime": "2.0.2",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.FileSystemGlobbing": "2.0.1",
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "2.0.2",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Html.Abstractions": "2.0.1",
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.0.3",
- "Microsoft.Extensions.WebEncoders": "2.0.1",
- "Newtonsoft.Json.Bson": "1.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.NodeServices/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Console": "2.0.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Owin/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Razor/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Razor.Language/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Razor.Runtime/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "2.0.1",
- "Microsoft.AspNetCore.Razor": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.ResponseCaching/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.0.2",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.ResponseCompression/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Rewrite/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Routing/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.ObjectPool": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Routing.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.HttpSys/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.Net.Http.Headers": "2.0.2",
- "Microsoft.Win32.Registry": "4.4.0",
- "System.Security.Principal.Windows": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.IISIntegration/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.HttpOverrides": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Security.Principal.Windows": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Net.Http.Headers": "2.0.2",
- "System.Threading.Tasks.Extensions": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Https/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.0.2",
- "System.Buffers": "4.4.0",
- "System.Numerics.Vectors": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv/2.0.2": {
- "dependencies": {
- "Libuv": "1.10.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Session/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.SpaServices/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.TagHelpers": "2.0.3",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.3",
- "Microsoft.AspNetCore.NodeServices": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.StaticFiles/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.WebEncoders": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.WebSockets/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Numerics.Vectors": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.WebUtilities/2.0.2": {
- "dependencies": {
- "Microsoft.Net.Http.Headers": "2.0.2",
- "System.Text.Encodings.Web": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Azure.KeyVault/2.3.2": {
- "dependencies": {
- "Microsoft.Azure.KeyVault.WebKey": "2.0.7",
- "Microsoft.Rest.ClientRuntime": "2.3.8",
- "Microsoft.Rest.ClientRuntime.Azure": "3.3.7",
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1",
- "System.Net.Http": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.3.2.0"
- }
- }
- },
- "Microsoft.Azure.KeyVault.WebKey/2.0.7": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.WebKey.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.7.0"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/1.1.0": {},
- "Microsoft.CodeAnalysis.Common/2.3.1": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
- "System.AppContext": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Collections.Immutable": "1.4.0",
- "System.Console": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.FileVersionInfo": "4.3.0",
- "System.Diagnostics.StackTrace": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Metadata": "1.5.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.CodePages": "4.4.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Parallel": "4.3.0",
- "System.Threading.Thread": "4.3.0",
- "System.ValueTuple": "4.4.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0",
- "System.Xml.XPath.XDocument": "4.3.0",
- "System.Xml.XmlDocument": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
- "assemblyVersion": "2.3.0.0",
- "fileVersion": "2.3.1.61919"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/2.3.1": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "2.3.1"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
- "assemblyVersion": "2.3.0.0",
- "fileVersion": "2.3.1.61919"
- }
- }
- },
- "Microsoft.CodeAnalysis.Razor/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "2.0.2",
- "Microsoft.CodeAnalysis.CSharp": "2.3.1",
- "Microsoft.CodeAnalysis.Common": "2.3.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.CSharp/4.4.0": {},
- "Microsoft.Data.Edm/5.8.2": {
- "runtime": {
- "lib/netstandard1.1/Microsoft.Data.Edm.dll": {
- "assemblyVersion": "5.8.1.0",
- "fileVersion": "5.8.1.62767"
- }
- },
- "resources": {
- "lib/netstandard1.1/de/Microsoft.Data.Edm.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.1/es/Microsoft.Data.Edm.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.1/fr/Microsoft.Data.Edm.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.1/it/Microsoft.Data.Edm.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.1/ja/Microsoft.Data.Edm.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.1/ko/Microsoft.Data.Edm.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.1/ru/Microsoft.Data.Edm.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.1/zh-Hans/Microsoft.Data.Edm.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.1/zh-Hant/Microsoft.Data.Edm.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Data.OData/5.8.2": {
- "dependencies": {
- "Microsoft.Data.Edm": "5.8.2",
- "System.Spatial": "5.8.2"
- },
- "runtime": {
- "lib/netstandard1.1/Microsoft.Data.OData.dll": {
- "assemblyVersion": "5.8.1.0",
- "fileVersion": "5.8.1.62767"
- }
- },
- "resources": {
- "lib/netstandard1.1/de/Microsoft.Data.OData.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.1/es/Microsoft.Data.OData.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.1/fr/Microsoft.Data.OData.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.1/it/Microsoft.Data.OData.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.1/ja/Microsoft.Data.OData.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.1/ko/Microsoft.Data.OData.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.1/ru/Microsoft.Data.OData.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.1/zh-Hans/Microsoft.Data.OData.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.1/zh-Hant/Microsoft.Data.OData.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Data.Sqlite/2.0.1": {
- "dependencies": {
- "Microsoft.Data.Sqlite.Core": "2.0.1",
- "SQLitePCLRaw.bundle_green": "1.1.7"
- }
- },
- "Microsoft.Data.Sqlite.Core/2.0.1": {
- "dependencies": {
- "SQLitePCLRaw.core": "1.1.7"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.DotNet.PlatformAbstractions/2.0.3": {
- "dependencies": {
- "System.AppContext": "4.3.0",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.0"
- }
- }
- },
- "Microsoft.EntityFrameworkCore/2.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.DependencyInjection": "2.0.0",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Remotion.Linq": "2.1.1",
- "System.Collections.Immutable": "1.4.0",
- "System.ComponentModel.Annotations": "4.4.0",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Interactive.Async": "3.1.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Design/2.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.InMemory/2.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/2.0.2": {
- "dependencies": {
- "Microsoft.CSharp": "4.4.0",
- "Microsoft.EntityFrameworkCore": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Sqlite/2.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Sqlite.Core": "2.0.2",
- "SQLitePCLRaw.bundle_green": "1.1.7"
- }
- },
- "Microsoft.EntityFrameworkCore.Sqlite.Core/2.0.2": {
- "dependencies": {
- "Microsoft.Data.Sqlite.Core": "2.0.1",
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.SqlServer/2.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2",
- "System.Data.SqlClient": "4.4.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/2.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "2.0.2"
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Caching.Memory/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Caching.Redis/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "StackExchange.Redis.StrongName": "1.2.4"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Redis.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Caching.SqlServer/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Data.SqlClient": "4.4.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.AzureKeyVault/2.0.1": {
- "dependencies": {
- "Microsoft.Azure.KeyVault": "2.3.2",
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Microsoft.IdentityModel.Clients.ActiveDirectory": "3.14.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureKeyVault.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.CommandLine/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.FileExtensions/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Ini/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Json/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.UserSecrets/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Json": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Xml/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "System.Security.Cryptography.Xml": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/2.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.0.17205"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.0.17205"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/2.0.3": {
- "dependencies": {
- "Microsoft.DotNet.PlatformAbstractions": "2.0.3",
- "Newtonsoft.Json": "10.0.1",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Linq": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.0"
- }
- }
- },
- "Microsoft.Extensions.DiagnosticAdapter/2.0.1": {
- "dependencies": {
- "System.Diagnostics.DiagnosticSource": "4.4.1"
- },
- "runtime": {
- "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Composite/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Embedded/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Physical/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.FileSystemGlobbing": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.FileSystemGlobbing/2.0.1": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Extensions.Identity.Core/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.0.2",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.ComponentModel.Annotations": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Extensions.Identity.Stores/2.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Identity.Core": "2.0.2",
- "Microsoft.Extensions.Logging": "2.0.1",
- "System.ComponentModel.Annotations": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Extensions.Localization/2.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Extensions.Localization.Abstractions/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/2.0.1": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.AzureAppServices/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.0.1",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Configuration": "2.0.1",
- "System.ValueTuple": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.AzureAppServices.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.Configuration/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.Console/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.Debug/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.EventSource/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "2.0.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.TraceSource/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.ObjectPool/2.0.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.0.17205"
- }
- }
- },
- "Microsoft.Extensions.Options/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.Configuration.Binder": "2.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Reflection.TypeExtensions": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {
- "assemblyVersion": "1.1.0.0",
- "fileVersion": "1.1.0.21115"
- }
- }
- },
- "Microsoft.Extensions.Primitives/2.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.0.17205"
- }
- }
- },
- "Microsoft.Extensions.WebEncoders/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Text.Encodings.Web": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.IdentityModel.Clients.ActiveDirectory/3.14.1": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Runtime.Serialization.Json": "4.0.2",
- "System.Runtime.Serialization.Primitives": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll": {
- "assemblyVersion": "3.14.1.10",
- "fileVersion": "3.14.40629.536"
- },
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll": {
- "assemblyVersion": "3.14.1.10",
- "fileVersion": "3.14.40629.536"
- }
- }
- },
- "Microsoft.IdentityModel.Logging/1.1.4": {
- "dependencies": {
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll": {
- "assemblyVersion": "1.1.4.0",
- "fileVersion": "1.1.4.216"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols/2.1.4": {
- "dependencies": {
- "System.Collections.Specialized": "4.3.0",
- "System.Diagnostics.Contracts": "4.3.0",
- "System.IdentityModel.Tokens.Jwt": "5.1.4",
- "System.Net.Http": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll": {
- "assemblyVersion": "2.1.4.0",
- "fileVersion": "2.1.4.216"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.1.4": {
- "dependencies": {
- "Microsoft.IdentityModel.Protocols": "2.1.4",
- "System.Dynamic.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
- "assemblyVersion": "2.1.4.0",
- "fileVersion": "2.1.4.216"
- }
- }
- },
- "Microsoft.IdentityModel.Tokens/5.1.4": {
- "dependencies": {
- "Microsoft.IdentityModel.Logging": "1.1.4",
- "Newtonsoft.Json": "10.0.1",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Security.Claims": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll": {
- "assemblyVersion": "5.1.4.0",
- "fileVersion": "5.1.4.216"
- }
- }
- },
- "Microsoft.Net.Http.Headers/2.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0",
- "System.Buffers": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.NETCore.Platforms/2.0.0": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.Rest.ClientRuntime/2.3.8": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.3.8.0"
- }
- }
- },
- "Microsoft.Rest.ClientRuntime.Azure/3.3.7": {
- "dependencies": {
- "Microsoft.Rest.ClientRuntime": "2.3.8",
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.Azure.dll": {
- "assemblyVersion": "3.0.0.0",
- "fileVersion": "3.3.7.0"
- }
- }
- },
- "Microsoft.VisualStudio.Web.BrowserLink/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.VisualStudio.Web.BrowserLink.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "Microsoft.Win32.Registry/4.4.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Security.AccessControl": "4.4.0",
- "System.Security.Principal.Windows": "4.4.0"
- }
- },
- "NETStandard.Library/1.6.1": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.AppContext": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Console": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.Compression.ZipFile": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Net.Http": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Net.Sockets": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Timer": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0"
- }
- },
- "Newtonsoft.Json/10.0.1": {
- "dependencies": {
- "Microsoft.CSharp": "4.4.0",
- "System.Collections": "4.3.0",
- "System.ComponentModel.TypeConverter": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Runtime.Serialization.Formatters": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0",
- "System.Xml.XmlDocument": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Newtonsoft.Json.dll": {
- "assemblyVersion": "10.0.0.0",
- "fileVersion": "10.0.1.20720"
- }
- }
- },
- "Newtonsoft.Json.Bson/1.0.1": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.1.20722"
- }
- }
- },
- "Remotion.Linq/2.1.1": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Linq.Queryable": "4.0.1",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.0/Remotion.Linq.dll": {
- "assemblyVersion": "2.1.0.0",
- "fileVersion": "2.1.1.30000"
- }
- }
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.native.System/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "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.IO.Compression/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Net.Security/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
- "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "runtimeTargets": {
- "runtimes/win-arm64/native/sni.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "4.6.25512.1"
- }
- }
- },
- "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "runtimeTargets": {
- "runtimes/win-x64/native/sni.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "4.6.25512.1"
- }
- }
- },
- "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "runtimeTargets": {
- "runtimes/win-x86/native/sni.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "4.6.25512.1"
- }
- }
- },
- "SQLitePCLRaw.bundle_green/1.1.7": {
- "dependencies": {
- "SQLitePCLRaw.core": "1.1.7",
- "SQLitePCLRaw.lib.e_sqlite3.linux": "1.1.7",
- "SQLitePCLRaw.lib.e_sqlite3.osx": "1.1.7",
- "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.7",
- "SQLitePCLRaw.provider.e_sqlite3.netstandard11": "1.1.7"
- },
- "runtime": {
- "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- },
- "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.core/1.1.7": {
- "dependencies": {
- "NETStandard.Library": "1.6.1"
- },
- "runtime": {
- "lib/netstandard1.1/SQLitePCLRaw.core.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.7": {
- "runtimeTargets": {
- "runtimes/linux-x64/native/libe_sqlite3.so": {
- "rid": "linux-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x86/native/libe_sqlite3.so": {
- "rid": "linux-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.7": {
- "runtimeTargets": {
- "runtimes/osx-x64/native/libe_sqlite3.dylib": {
- "rid": "osx-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.7": {
- "runtimeTargets": {
- "runtimes/win7-x64/native/e_sqlite3.dll": {
- "rid": "win7-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win7-x86/native/e_sqlite3.dll": {
- "rid": "win7-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.7": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "SQLitePCLRaw.core": "1.1.7"
- },
- "runtime": {
- "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "StackExchange.Redis.StrongName/1.2.4": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Collections.NonGeneric": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Net.NameResolution": "4.3.0",
- "System.Net.Security": "4.3.0",
- "System.Net.Sockets": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Thread": "4.3.0",
- "System.Threading.ThreadPool": "4.3.0",
- "System.Threading.Timer": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.5/StackExchange.Redis.StrongName.dll": {
- "assemblyVersion": "1.2.4.0",
- "fileVersion": "1.2.4.0"
- }
- }
- },
- "System.AppContext/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Buffers/4.4.0": {},
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "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"
- }
- },
- "System.Collections.Immutable/1.4.0": {},
- "System.Collections.NonGeneric/4.3.0": {
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "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.Collections.Specialized/4.3.0": {
- "dependencies": {
- "System.Collections.NonGeneric": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "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.ComponentModel/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.ComponentModel.Annotations/4.4.0": {},
- "System.ComponentModel.Primitives/4.3.0": {
- "dependencies": {
- "System.ComponentModel": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.ComponentModel.TypeConverter/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.NonGeneric": "4.3.0",
- "System.Collections.Specialized": "4.3.0",
- "System.ComponentModel": "4.3.0",
- "System.ComponentModel.Primitives": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Console/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- }
- },
- "System.Data.SqlClient/4.4.3": {
- "dependencies": {
- "Microsoft.Win32.Registry": "4.4.0",
- "System.Security.Principal.Windows": "4.4.0",
- "System.Text.Encoding.CodePages": "4.4.0",
- "runtime.native.System.Data.SqlClient.sni": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.Data.SqlClient.dll": {
- "assemblyVersion": "4.2.0.2",
- "fileVersion": "4.6.26212.1"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.2.0.2",
- "fileVersion": "4.6.26212.1"
- },
- "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.2.0.2",
- "fileVersion": "4.6.26212.1"
- }
- }
- },
- "System.Diagnostics.Contracts/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.DiagnosticSource/4.4.1": {},
- "System.Diagnostics.FileVersionInfo/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Reflection.Metadata": "1.5.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- }
- },
- "System.Diagnostics.StackTrace/4.3.0": {
- "dependencies": {
- "System.IO.FileSystem": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Metadata": "1.5.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.Tools/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Dynamic.Runtime/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- }
- },
- "System.IdentityModel.Tokens.Jwt/5.1.4": {
- "dependencies": {
- "Microsoft.IdentityModel.Tokens": "5.1.4"
- },
- "runtime": {
- "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll": {
- "assemblyVersion": "5.1.4.0",
- "fileVersion": "5.1.4.216"
- }
- }
- },
- "System.Interactive.Async/3.1.1": {
- "dependencies": {
- "NETStandard.Library": "1.6.1"
- },
- "runtime": {
- "lib/netstandard1.3/System.Interactive.Async.dll": {
- "assemblyVersion": "3.0.3000.0",
- "fileVersion": "3.1.1.0"
- }
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.Compression/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Buffers": "4.4.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.IO.Compression": "4.3.0"
- }
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "dependencies": {
- "System.Buffers": "4.4.0",
- "System.IO": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- }
- },
- "System.IO.FileSystem/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- }
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Linq/4.3.0": {
- "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"
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Linq.Queryable/4.0.1": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Net.Http/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "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.0"
- }
- },
- "System.Net.NameResolution/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Principal.Windows": "4.4.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0"
- }
- },
- "System.Net.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Net.Security/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "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.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.Claims": "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.Security.Principal": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.ThreadPool": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Security": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- }
- },
- "System.Net.Sockets/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Numerics.Vectors/4.4.0": {},
- "System.ObjectModel/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Private.DataContractSerialization/4.1.1": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XmlDocument": "4.3.0",
- "System.Xml.XmlSerializer": "4.0.11"
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Metadata/1.5.0": {},
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/4.4.0": {},
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- }
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0"
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Runtime.Serialization.Formatters/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.3.0"
- }
- },
- "System.Runtime.Serialization.Json/4.0.2": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Private.DataContractSerialization": "4.1.1",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Serialization.Primitives/4.3.0": {
- "dependencies": {
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Security.AccessControl/4.4.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Security.Principal.Windows": "4.4.0"
- }
- },
- "System.Security.Claims/4.3.0": {
- "dependencies": {
- "System.Collections": "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.Runtime.Extensions": "4.3.0",
- "System.Security.Principal": "4.3.0"
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- }
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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.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.Security.Cryptography.Csp/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- }
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "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"
- }
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "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"
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- }
- },
- "System.Security.Cryptography.Xml/4.4.0": {
- "runtime": {
- "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.6.25519.3"
- }
- }
- },
- "System.Security.Principal/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Security.Principal.Windows/4.4.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0"
- }
- },
- "System.Spatial/5.8.2": {
- "runtime": {
- "lib/netstandard1.1/System.Spatial.dll": {
- "assemblyVersion": "5.8.1.0",
- "fileVersion": "5.8.1.62767"
- }
- },
- "resources": {
- "lib/netstandard1.1/de/System.Spatial.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.1/es/System.Spatial.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.1/fr/System.Spatial.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.1/it/System.Spatial.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.1/ja/System.Spatial.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.1/ko/System.Spatial.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.1/ru/System.Spatial.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.1/zh-Hans/System.Spatial.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.1/zh-Hant/System.Spatial.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding.CodePages/4.4.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0"
- }
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- }
- },
- "System.Text.Encodings.Web/4.4.0": {},
- "System.Text.RegularExpressions/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.4.0": {},
- "System.Threading.Tasks.Parallel/4.3.0": {
- "dependencies": {
- "System.Collections.Concurrent": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "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"
- }
- },
- "System.Threading.Thread/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.ThreadPool/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Threading.Timer/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.ValueTuple/4.4.0": {},
- "System.Xml.ReaderWriter/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Extensions": "4.4.0"
- }
- },
- "System.Xml.XDocument/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- }
- },
- "System.Xml.XmlDocument/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "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.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- }
- },
- "System.Xml.XmlSerializer/4.0.11": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XmlDocument": "4.3.0"
- }
- },
- "System.Xml.XPath/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "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.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- }
- },
- "System.Xml.XPath.XDocument/4.3.0": {
- "dependencies": {
- "System.Diagnostics.Debug": "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.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0",
- "System.Xml.XPath": "4.3.0"
- }
- },
- "webhookSharp/1.0.0": {
- "runtime": {
- "lib/net6.0/webhook#.dll": {
- "assemblyVersion": "0.0.0.0",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "WindowsAzure.Storage/8.1.4": {
- "dependencies": {
- "Microsoft.Data.OData": "5.8.2",
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1",
- "System.Spatial": "5.8.2"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.WindowsAzure.Storage.dll": {
- "assemblyVersion": "8.1.4.0",
- "fileVersion": "8.1.4.0"
- }
- }
- },
"Entidades/1.0.0": {
"runtime": {
"Entidades.dll": {}
@@ -3635,2043 +36,6 @@
"serviceable": false,
"sha512": ""
},
- "Emailer/1.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MKz/p7Nq4omeANwvqEm0RJRX2VRTkFwn0dmGHkxt5/TeWilN/rBEUMiGTX2ySHqh/QbQviPXnwfZQFaTK6JbGA==",
- "path": "emailer/1.0.0",
- "hashPath": "emailer.1.0.0.nupkg.sha512"
- },
- "Libuv/1.10.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GsCf4q+eyaI49rCPlgYxdxa1SQCysXFFdSJWdstrwxytg4+VPYLYrXD4AT2rjHVJ+UF7SSWX9CapWEYaU4ejVQ==",
- "path": "libuv/1.10.0",
- "hashPath": "libuv.1.10.0.nupkg.sha512"
- },
- "Microsoft.ApplicationInsights/2.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4dX/zu3Psz9oM3ErU64xfOHuSxOwMxN6q5RabSkeYbX42Yn6dR/kDToqjs+txCRjrfHUxyYjfeJHu+MbCfvAsg==",
- "path": "microsoft.applicationinsights/2.4.0",
- "hashPath": "microsoft.applicationinsights.2.4.0.nupkg.sha512"
- },
- "Microsoft.ApplicationInsights.AspNetCore/2.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kiGmzl9Cav34dF7AHVMoJxdJJQEeLB8KZGNwX1LjImG9iem5hGk4DkHpW7/m9Nh3DrL8IKSL3mqQo+IPqWfMRQ==",
- "path": "microsoft.applicationinsights.aspnetcore/2.1.1",
- "hashPath": "microsoft.applicationinsights.aspnetcore.2.1.1.nupkg.sha512"
- },
- "Microsoft.ApplicationInsights.DependencyCollector/2.4.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RWxdX90MY6tNF8S5lwRvJcHiBMIWwVLCxd4TGIEl3X0yAKaolY2vs4zTCvyCIVkEAMs1aInTgWkYwOjzYvAHWw==",
- "path": "microsoft.applicationinsights.dependencycollector/2.4.1",
- "hashPath": "microsoft.applicationinsights.dependencycollector.2.4.1.nupkg.sha512"
- },
- "Microsoft.AspNetCore/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-M1kweIFWsyqHnY4W8Jqwz/tuVKF7Ff1mokn9+jpMs+S8m1wlGKeqmy9ovNF1rJoSTnF97cb4Wn0JoTA84bCYSQ==",
- "path": "microsoft.aspnetcore/2.0.2",
- "hashPath": "microsoft.aspnetcore.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.All/2.0.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hpWBRgs094P0jBWJRqBV+8oXl6G+O5ixDAgXI5qouOsg2jlLOmYr1+95+lRbLSn31HhKbQdNel6VQSDUbm0juw==",
- "path": "microsoft.aspnetcore.all/2.0.7",
- "hashPath": "microsoft.aspnetcore.all.2.0.7.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Antiforgery/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-182axAPHGthEbxE9/JSTuFUr5KS8O4a4kPoTp4GaqHjXYp8ddZ3y69XDJCqavvZb+7ziMnWI9ONoBo6QRW41OA==",
- "path": "microsoft.aspnetcore.antiforgery/2.0.2",
- "hashPath": "microsoft.aspnetcore.antiforgery.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.ApplicationInsights.HostingStartup/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w861s7DkUmgjg1Jhviw49m6FJg+rk0lXWUtfphVainBsGfO2O5d6su8dwmUGg3mcyqax9nceWQMekVxVVS1+mA==",
- "path": "microsoft.aspnetcore.applicationinsights.hostingstartup/2.0.2",
- "hashPath": "microsoft.aspnetcore.applicationinsights.hostingstartup.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-11a6DvTSur4T62bf/l0nb1uS0h0vXfOiAMCwDYqFuR1Pkox8v9eiTgduyxDppmEQuAh3TboPhYY3TzufEAFK3Q==",
- "path": "microsoft.aspnetcore.authentication/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-12+IIkf+5eM/fNch3k+nj8nzIeaQYBF87TxZZ3Uf42wPoMuGzc8nMx8fMQDyqKtzJJ+9WCnH7N9N8ekTz9F7xg==",
- "path": "microsoft.aspnetcore.authentication.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Cookies/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JZt3k5rkAysYTShTRuYCaLXOT6o8BdSs1BmBbUDI/fLXHeRe3rPr3dNTAYjrvVjcfOLHqXcQTJCRiheZmIL2Jw==",
- "path": "microsoft.aspnetcore.authentication.cookies/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.cookies.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Core/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qA2YEcpU02rBZvtOaZk4RPIBqneGAzkS0dBQXcHk31cvf5bbzj+FHENmTKgsXDADyKVR0U1+7kS+bc44JxGCVA==",
- "path": "microsoft.aspnetcore.authentication.core/2.0.2",
- "hashPath": "microsoft.aspnetcore.authentication.core.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Facebook/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+WGDlg9GRhT6GoHp2U+xXFvknBCj9beFvgqwUlFe6It8Sygaq9san/W3UQkQGP/HECn/eijrZK17rIQQvj2cYg==",
- "path": "microsoft.aspnetcore.authentication.facebook/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.facebook.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Google/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Dquas27vl4wvVHjgPFqlg9/Sczg+pxP0MqNOgV7LR1JfLxaasULciKxEQV2vOMqFTxjdqMi10WbSYWKYQyiKVw==",
- "path": "microsoft.aspnetcore.authentication.google/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.google.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.JwtBearer/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AwYc5nGOWkpUHRd5JI3ummWJTciuvjskL7zIfgGgFwhaK3l8ZeDTHpHyTXW+Zjn69Cq+FRSLNiuEkAWQVJ8APQ==",
- "path": "microsoft.aspnetcore.authentication.jwtbearer/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-op1Xhi/4voQnCPsTf9ABQ+EaGV+6lAQOiLnEY3swIWq+v0ywg0Ze1vfmBjyktb4NIQgB5mO/eSSUOPoqFrXU5w==",
- "path": "microsoft.aspnetcore.authentication.microsoftaccount/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.microsoftaccount.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.OAuth/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cuQYTKA/u5/uY5Wxu8OyLRUAt3U7kGyBmHwHvWz83vseBsnvso+qp+KX9syr/5PfkEvzub1RCvctB2NCRz5vNQ==",
- "path": "microsoft.aspnetcore.authentication.oauth/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.oauth.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2gRCExy0c2jrrsbwbjEeqK3o0ZEaVOxl8u9X+43GbWG3UDh4Zt8agGu+PhMxUO05j4Z2u5RBZVYHIGoZnuniMA==",
- "path": "microsoft.aspnetcore.authentication.openidconnect/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.openidconnect.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Twitter/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-CrlYxaEclxWy9jsndqKy21jyQk1QpnxaFZyn9Mw7/05BivAbEpLQ5pljFhqRHpQoaafWm96gKQXEWirftnh8kA==",
- "path": "microsoft.aspnetcore.authentication.twitter/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.twitter.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authorization/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IUiI+cAzkcvkHtdoXuArk+RFQVmORyBC234T+kXuOCzsxCazMmEscX7ZvQua7JYbw5f7WgeG7iXhsBdoLUC2jQ==",
- "path": "microsoft.aspnetcore.authorization/2.0.3",
- "hashPath": "microsoft.aspnetcore.authorization.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authorization.Policy/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DTNCn50Hhbkt6XsQ9huZYgj2NIw20i7UeJZQ5jCrwFUrUIRlOhV2y5X2JQ8v1QEkpod+/3OjuWRb4tXWQC6t1g==",
- "path": "microsoft.aspnetcore.authorization.policy/2.0.3",
- "hashPath": "microsoft.aspnetcore.authorization.policy.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.AzureAppServices.HostingStartup/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LgcCPhxGp3+YQMDSLwMXNA1l0drIHpbyV3XFCs1Apmc9eRHYD8SOF+J+IlFWk6fPFgEEOMC0Yw2eXGlv4fGC/w==",
- "path": "microsoft.aspnetcore.azureappservices.hostingstartup/2.0.2",
- "hashPath": "microsoft.aspnetcore.azureappservices.hostingstartup.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.AzureAppServicesIntegration/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-N/wffLaVJWORJjze62bKmpUh5JYSp1lTf6laxaxLHkH9INvklnDJ4rmSS1guSPbPQLmkWmBrBzlFR/NMDGAdqg==",
- "path": "microsoft.aspnetcore.azureappservicesintegration/2.0.2",
- "hashPath": "microsoft.aspnetcore.azureappservicesintegration.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.CookiePolicy/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d9DS8W5yEFyPmbIczkoe4sS6MgmOJkKX4T9gLecFhNuwhMk3B1vicdKzzALPAuuEOzf9EoejY+uDWr1eHy81tA==",
- "path": "microsoft.aspnetcore.cookiepolicy/2.0.3",
- "hashPath": "microsoft.aspnetcore.cookiepolicy.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Cors/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+mmN69VlbJL4q82C5wKCMdSnxjk4VfcCysDcLIXmNYloI9PY1VqOcHD1A3E6EaPB0ncEb4J+Fg71XO6HToIl7w==",
- "path": "microsoft.aspnetcore.cors/2.0.2",
- "hashPath": "microsoft.aspnetcore.cors.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Cryptography.Internal/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pCJyY7vC6YWY94ssKcgGzVFGsK/bk7RVEH/BxwHmc+T3t5VmXlBq7VvUmhLfk+P5Uc1l0hDIJX0ZJRLy9Sz1jg==",
- "path": "microsoft.aspnetcore.cryptography.internal/2.0.2",
- "hashPath": "microsoft.aspnetcore.cryptography.internal.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JblI3dWCRga40Y6PFUNsdGMAgmMu7Igb9sAtcG3nY8O2tvfuqwkpzGao8KE081KBndGGBcLUD4iWDkoMoGOQVQ==",
- "path": "microsoft.aspnetcore.cryptography.keyderivation/2.0.2",
- "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.DataProtection/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BXVpydukX6AjcnELAZHtTNexSdGLwJ21suskAtDgQshDz/mfySm0Z/voNzQyPFF6SMzDf7iXnXpEBMZchL18Rg==",
- "path": "microsoft.aspnetcore.dataprotection/2.0.2",
- "hashPath": "microsoft.aspnetcore.dataprotection.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Q4eEkEE527CR1qzfyVeTGDVL3mss2D0VKSMWJCwhzxVmSDFy3zyXaJfCDu39GnExAVM9gLKzkoU6KoJGu3vyAg==",
- "path": "microsoft.aspnetcore.dataprotection.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.DataProtection.AzureStorage/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ax6WM99Eyne3GkaKx4LyBT0umSIVChUirI3toLl+Xn2FpwX9ci3aq8yjsRQS1gZ/GBHLwvCjYndzmwo4MO58Ag==",
- "path": "microsoft.aspnetcore.dataprotection.azurestorage/2.0.2",
- "hashPath": "microsoft.aspnetcore.dataprotection.azurestorage.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hHHlz9zhKkbz8S+wc9cxkhYrKbtvRugoSxpPuOnS8dL/KgNYWWhv0EW2LUdzPXkUIoJDAWpvWdmt28tTT/fBQg==",
- "path": "microsoft.aspnetcore.dataprotection.extensions/2.0.2",
- "hashPath": "microsoft.aspnetcore.dataprotection.extensions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Diagnostics/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fAsBgV/202K4ZMB3eFLWAXYRqUz4uf9CR9MwpNYJhMhO+yHxNPGDFBatsiKUVxG4oeMdhFXzYwUbUSaWUYU/7Q==",
- "path": "microsoft.aspnetcore.diagnostics/2.0.2",
- "hashPath": "microsoft.aspnetcore.diagnostics.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4Zb2/cIFGfyHhPMr1tg1Tyuur4PK9Nr5uKnRLxHPJJh1OuAwEAZtUsPHcUa6HHNoA5tZhUFonHJwiFTy9+ZLLA==",
- "path": "microsoft.aspnetcore.diagnostics.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.diagnostics.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fwQvTUIMWXSChZszqBj8005USTlRCUsC0JLprK6EuQJIggbZZfGoyZTv2DLrXJgKSbCWntt2XKXRgfi/VkPwRA==",
- "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/2.0.2",
- "hashPath": "microsoft.aspnetcore.diagnostics.entityframeworkcore.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Hosting/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qKV9PnsiVC2J1ws1DPoQ1fX3bowLTK2WjXPXpItgKVbuuLSWM1ECoObX2fOkQt6FKt4vJ9i4j/hktFavxova1Q==",
- "path": "microsoft.aspnetcore.hosting/2.0.2",
- "hashPath": "microsoft.aspnetcore.hosting.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-358NTTCWJWpDKno3S85BU0hjxWQ8EzsyjZ5OSMi2XpQ9SrYwzTq6tlXSpVS3cV2RJ2Jx9lXc8uSXFwrOVyUieQ==",
- "path": "microsoft.aspnetcore.hosting.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tvz7D661JTyJXRxWLqOSH0s1zF9bLviZd14aA8poR+srvldS0gg1j62e7SaM5LQrUn+Z4dPwJqBtLXZDj5PtYw==",
- "path": "microsoft.aspnetcore.hosting.server.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Html.Abstractions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l72nlZuVphJbMvmt2k+2s8A6QlfjhYiINPtMVKvD752UzIc/vAmvFUuARjUcCRGqFV/q+r+xkQEyPzLW3xu81Q==",
- "path": "microsoft.aspnetcore.html.abstractions/2.0.1",
- "hashPath": "microsoft.aspnetcore.html.abstractions.2.0.1.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oVmQJvA1dHr96VcJVyUYEPcQH+FHSJSEu52Fq6aB7rmpjtyxlcFzyvRNumD4J1QJjlhE/V8jF10lY2hH0J6h4w==",
- "path": "microsoft.aspnetcore.http/2.0.2",
- "hashPath": "microsoft.aspnetcore.http.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yQM9JzPAExsxTqvJBBr3yC+6XyOETi2T/eOOBjrOOnYgQOO+7M7J8VvAW0wQID9zh7QqWO6kh3BGCT/aqvydtg==",
- "path": "microsoft.aspnetcore.http.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.http.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http.Extensions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-z9uJ6w3BnhjWZZW+i5rVCqKIVLmngLP1AutfOJXJKtXKjAOBqWSTBgySGROqzWkPuDXot1dHVP7NAMnhtloIiQ==",
- "path": "microsoft.aspnetcore.http.extensions/2.0.2",
- "hashPath": "microsoft.aspnetcore.http.extensions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http.Features/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1U5fPSOtIq+cPuqJTjN+EFN3dWn4ptSjybd8minSbyhy0oXr8ujYla86kb9kM3rddUBgrGCyTp/hf0/tMZab+g==",
- "path": "microsoft.aspnetcore.http.features/2.0.2",
- "hashPath": "microsoft.aspnetcore.http.features.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.HttpOverrides/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hZPYYSnG17A+fFws1R5eQBmzF/9zewVlsBk/XeXTQ8fmjY8fUaOyBQGrs3OWKRXtRt3D1VetJ+ngZFl3a5YS9g==",
- "path": "microsoft.aspnetcore.httpoverrides/2.0.2",
- "hashPath": "microsoft.aspnetcore.httpoverrides.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Identity/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-12Ky01ytqyiWnOeQsarkSTrTGMMxxexzTgJ7zm08iiEquaiBzBTMKmi/5rBH8CyFcMQx3kLqnNzrglq0DYHzpg==",
- "path": "microsoft.aspnetcore.identity/2.0.2",
- "hashPath": "microsoft.aspnetcore.identity.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QSPJenMEmjZmKnZ+ZJvMudhzHISHbEm2LarScz6AHZwgoRY0j+ZdKTVLtN+tAaFeJ2AXCxRVkeBAouLHFyHSAw==",
- "path": "microsoft.aspnetcore.identity.entityframeworkcore/2.0.2",
- "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.JsonPatch/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-US78cfi7nrPTXeONgcSWbgrUBLs1Aca4kCJTieWXDLg0G0gwmdfPbd6S3c5TdJRQdA69K3UhPAs9r9ZAMjIFAA==",
- "path": "microsoft.aspnetcore.jsonpatch/2.0.0",
- "hashPath": "microsoft.aspnetcore.jsonpatch.2.0.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Localization/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nijm4SSe5LwIOod5CHOFS4oGggNqyQCSb1DhA1Gy+R8hrwdc0vZEYuclyur9jysGSUNiUw/KWGeVIB99u9rdVw==",
- "path": "microsoft.aspnetcore.localization/2.0.2",
- "hashPath": "microsoft.aspnetcore.localization.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Localization.Routing/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-R8Dfo13h2jUmCxOCDk0AZBUB9LIcDpRKIuarjaHh8QZ/Vnmg3+4MKTK2nUbnDyGuhkUt/06nVoB7LxSDhcUqSQ==",
- "path": "microsoft.aspnetcore.localization.routing/2.0.2",
- "hashPath": "microsoft.aspnetcore.localization.routing.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.MiddlewareAnalysis/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hjAzkHE9JFOi6YNneGbjlyUEZ+a7dQldTZJlhE2t4e2EMfLPY+31y5hbAYfVBKVooJDaWA0nmCUMuhdH+Nceew==",
- "path": "microsoft.aspnetcore.middlewareanalysis/2.0.2",
- "hashPath": "microsoft.aspnetcore.middlewareanalysis.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WkyEZDF709/l7ljPUD4j1IRj3McGgO8emGO7SNz+WK/HL6dmHL234uUcEjNEqFEpJJpxvvQVRal0YwwhZdeGZw==",
- "path": "microsoft.aspnetcore.mvc/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iXPYz6zZE6vLLJYjQA7F8vtyPqYgOR1bOhChkfuhbIzrU4VELB2I3ozOdMGviXlmApbpRXZKd4z7viqlKKXiIg==",
- "path": "microsoft.aspnetcore.mvc.abstractions/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.abstractions.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NllnW4FpRqBTw+P9RG6pVZdHglpx7F3jm73DNdRz66ijzypY/e0zXDItKPdmjPkRH0AIWAI+TxaHW4lcGE7MqQ==",
- "path": "microsoft.aspnetcore.mvc.apiexplorer/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.apiexplorer.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Core/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKyr3rrADlyZYkFydM3ds5F682feixPQmt/y0QsbjrsNt4eghSVsMvMqD/v2NMjHs8kH4TUsK4qXVPOSFonQ7A==",
- "path": "microsoft.aspnetcore.mvc.core/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.core.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Cors/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xSqDCgTwAk0wjcv4RcaE7MpDs9ELctrLR9ppx6AKbKrTriPqvXoCvFmLnUoXnCNQwn4at7R/C/66TtLfYfwH4g==",
- "path": "microsoft.aspnetcore.mvc.cors/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.cors.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KNb4rAFnXKZbGxWch8dNg0f9jpgUZUgaPgDFncvjtfSNW6Ml/746KBixXk/lxZq5W+MW/wnjyOr49+WLG/SmzQ==",
- "path": "microsoft.aspnetcore.mvc.dataannotations/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.dataannotations.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Vts06sEs576xjcnRzEMVKYev25N/fkA2Zeisvc3JRtXtrxVPgJretQ1Yne2JUQuTsaSCMn0TcJtbV3r2FusVGQ==",
- "path": "microsoft.aspnetcore.mvc.formatters.json/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.formatters.json.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LoVS9sHEG0i39LY8cQnVEfdAkYpal1p2idAkEgZIqtaW9su8Kf+8VGjlm2LW4PlX8sru559DNuNp8NBbbsy6Rg==",
- "path": "microsoft.aspnetcore.mvc.formatters.xml/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.formatters.xml.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Localization/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0RaOWJmXno0GAQiJ4j98KOjltGR5Gb9yu16AmRfmEIZVIY+B+s3wfZBHGgTpYxAEuAAzzUAgMX/wyhAkefCp4w==",
- "path": "microsoft.aspnetcore.mvc.localization/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.localization.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Razor/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-T56Niuff/u4nuPwnBTociMVE/dzSGu8GcuW4L+gqV42WDE/V9AdJEtae6nQ2DSdvZOokULJ74eNAe2RL1Gz4Sw==",
- "path": "microsoft.aspnetcore.mvc.razor/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.razor.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7Jr4WCpJRyHA44S6BuqgERDNeR3222Wbu3X/E2HMyiNlqIkPv4FAoEu6zqcG5iy9Y/vMzURYPASVOIBQs5ZVXg==",
- "path": "microsoft.aspnetcore.mvc.razor.extensions/2.0.2",
- "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3tyvIJ33NUumLp3A6McdX8gklkYYOj1antb1zL8CzkL94tIEVK//cUJnRdQUwtegSI1cbkjXr4/9ZWnALKYkpw==",
- "path": "microsoft.aspnetcore.mvc.razor.viewcompilation/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.razor.viewcompilation.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uugn2CpSkTisavKbHgAtCYQoSTsODNbwp+de+xwDVlUjq2IFxQTs/EFCWTFlqbNAIMUEFnoDKKx6Zlx8M20INg==",
- "path": "microsoft.aspnetcore.mvc.razorpages/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.razorpages.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vrfBUPe9KmVa8hcJaq1QVA8WGQRBbaXthOt86p48t4wh9FnkrvVXLfBTRdMz7F8X3grgXt+gZkil8Tlk+9L5hQ==",
- "path": "microsoft.aspnetcore.mvc.taghelpers/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.taghelpers.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7z2Al4cs5Rgy42rdU41fm3GP7+ZSDrF8aMi7W9b/WXql7nysSS9v/2r4eE5H3xMv2M4b3rjOyAPUurkLZVV58w==",
- "path": "microsoft.aspnetcore.mvc.viewfeatures/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.viewfeatures.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.NodeServices/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-o8Jsb9nZ2UpJoMH2Cl+MhLLICLKxOuX/kT+H8A0Mfe3LJK4X55TwjSTUU6qS9486+pawH/HMVND1SEhZriWHQg==",
- "path": "microsoft.aspnetcore.nodeservices/2.0.3",
- "hashPath": "microsoft.aspnetcore.nodeservices.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Owin/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RFfcbP54mcwdkiN5tTEpTCvLoYMOmh8P0XutxPVyn3lQmTKDJjUp+VE3DlTQ0E4mNYhgAR/8I8C6aGf1CTsHJw==",
- "path": "microsoft.aspnetcore.owin/2.0.2",
- "hashPath": "microsoft.aspnetcore.owin.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Razor/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-g5Cf2gwEg0B8WPE3XA55ve4S9l+5y0c5LMC7jga9KBjrp1ejNTS+nSeLbi9Bg/wYPfoc7Ga4yFqbFKvvODBbow==",
- "path": "microsoft.aspnetcore.razor/2.0.2",
- "hashPath": "microsoft.aspnetcore.razor.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Razor.Language/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8kcc66kk9zEtd661VVuQnmqs/S96O00TKaly5InupBPkiptgFxEcfpxC4zaCDFwmh9fo6xNJu1HlqTHiHGx6Cw==",
- "path": "microsoft.aspnetcore.razor.language/2.0.2",
- "hashPath": "microsoft.aspnetcore.razor.language.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Razor.Runtime/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iaTOXW839pOB+qpB2DqZgGGOjgyFq2wfw0blFr8QjiKKqE4h+/UuRCPdFw5dloIfX9msIERb73bbnYGknhsGZQ==",
- "path": "microsoft.aspnetcore.razor.runtime/2.0.2",
- "hashPath": "microsoft.aspnetcore.razor.runtime.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.ResponseCaching/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Inob5PAUyo+DtoXgGpBSDpIG9E98cUZXsFnNrYUUXVmcsLMknTpcALZxOJtDmvUcz9dSdMU9wDGYB2J2U1llng==",
- "path": "microsoft.aspnetcore.responsecaching/2.0.2",
- "hashPath": "microsoft.aspnetcore.responsecaching.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GDf8IgKCFKB0FRqzI15oky08OS7PwSmxCzAQoHhEgHS6hl3gEmOL65aZUu+S7v+VPd9kj9fEDuXF4vRDhSWUZg==",
- "path": "microsoft.aspnetcore.responsecaching.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.ResponseCompression/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3ik8SSK2dAHrzTSGZrAHD4dM1Pu5tQcLqnM0NWWZnakfbJuAE1EGdfdOAEmktOvvAGrw6+nXDZSzU1bw3xNUdA==",
- "path": "microsoft.aspnetcore.responsecompression/2.0.2",
- "hashPath": "microsoft.aspnetcore.responsecompression.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Rewrite/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pd+f2w7MhGmExjWzhzNK+cuE1U5aq6OfQoLHTnU64cwrJB83Ufk6Tu/93OhzcGpUVE9cmghikg2tBr9xcTwf6A==",
- "path": "microsoft.aspnetcore.rewrite/2.0.2",
- "hashPath": "microsoft.aspnetcore.rewrite.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Routing/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v0f0iRS9H71g49cwNH8hezpZalluUc1Ok3sModvqC4heLdqfAAO52GxWYVtB6lOw5JR6YYy3KvINOx+YghsdHg==",
- "path": "microsoft.aspnetcore.routing/2.0.2",
- "hashPath": "microsoft.aspnetcore.routing.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Routing.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sqI4xsQYm/11KsY8P892yrpL3ALAp6e6u12mrnbdWhQt/IiWhK4X9OIQVVMM+ofrPkAKsjP96ctEkJcDKysNVw==",
- "path": "microsoft.aspnetcore.routing.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.routing.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.HttpSys/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hbwM1WVODYXGn1alR9NkXCMw9P6To5AOPkE8tqdh/TmnCECNwDz75qhpPmhQK+xa9nKdnEQlzjqkTYsmbb5beQ==",
- "path": "microsoft.aspnetcore.server.httpsys/2.0.3",
- "hashPath": "microsoft.aspnetcore.server.httpsys.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.IISIntegration/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UUbQIZp5dmEnDrgjIGjiTqqMBlus1+q+nL0JTmo40UveFVMO4rQSBMwv7M9QzR+T1qFCWNcysbutHIOdoYl8bA==",
- "path": "microsoft.aspnetcore.server.iisintegration/2.0.2",
- "hashPath": "microsoft.aspnetcore.server.iisintegration.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rPDyGoafAZwRvovro5wzmeaOScYjehjy7yABvgMfkkiPTUeSDdtm020XR3HFU+GxCAmhU8bQhLUH0CKk9NNGDQ==",
- "path": "microsoft.aspnetcore.server.kestrel/2.0.2",
- "hashPath": "microsoft.aspnetcore.server.kestrel.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+d7WB++otIdpV10mbHsUEcPmL+676Zljsls4DUkaSB8toiYndEeK+yxXj9OsGtTCzQhv4FjLqEcgw01oA0JYbw==",
- "path": "microsoft.aspnetcore.server.kestrel.core/2.0.2",
- "hashPath": "microsoft.aspnetcore.server.kestrel.core.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Https/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v8WKn9TCiGvgocbCFDxeOj3neAgEHwfpqu/J4W2GbwprRDawFLP5XbTDjbNjo5J2UVgFH5NHaRJocNWc3raQ9g==",
- "path": "microsoft.aspnetcore.server.kestrel.https/2.0.2",
- "hashPath": "microsoft.aspnetcore.server.kestrel.https.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-25BwaKnlKHZqPnOT1De2Oe7kpwWWxb7eMrnJx2FPyN5N4rfn/3GaSC72nZzwT4us9e8vKUJP+uzo1yFEBblbXA==",
- "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3H5R93EodGu8WsPYJwjXyDwks+nvpso6F01qPiowWU1dHpPGsY8px3XX3QTX3vPlwCXjpwvwlDXY8AT7kgBJzg==",
- "path": "microsoft.aspnetcore.server.kestrel.transport.libuv/2.0.2",
- "hashPath": "microsoft.aspnetcore.server.kestrel.transport.libuv.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Session/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p0YokieiGsIlxNQ52kSlKmHBiEUK2VSEADdKQJcw2JoHuk4SVayDm8fgqpkoMxt+dNlr+mvjFECXI4NGxDDOnA==",
- "path": "microsoft.aspnetcore.session/2.0.2",
- "hashPath": "microsoft.aspnetcore.session.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.SpaServices/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-EQqYTbrlshzny6OY7quuLZEhUwQ3Io6Km60ns099PluwfZiRfpys+gSzEk+cfOJsHdJcKXKZT8rvLAGREJyQAQ==",
- "path": "microsoft.aspnetcore.spaservices/2.0.3",
- "hashPath": "microsoft.aspnetcore.spaservices.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.StaticFiles/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8G/Dl4sjp7GWOlh0YoGTGEeAH9fkwiEoPFmm/s4jZUxeTIOJkTCKJAP8xC2sYgcORLMZFINQI4kdGp6Wm4odPw==",
- "path": "microsoft.aspnetcore.staticfiles/2.0.2",
- "hashPath": "microsoft.aspnetcore.staticfiles.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.WebSockets/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VUZCI/lAfPNU3KneT6xezPnUDUPnP0RzAFAcR+zNebBQ584STXLgy04PSeKMy5UgUzihln5N8xLLfM7bZSHlvQ==",
- "path": "microsoft.aspnetcore.websockets/2.0.2",
- "hashPath": "microsoft.aspnetcore.websockets.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.WebUtilities/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dvn80+p1AIQKOfJ+VrOhVMUktWRvJs7Zb+UapZGBNSyrCzTsYiXbb9C7Mzw+nGj5UevnLNFcWWc7BUlLMD2qpw==",
- "path": "microsoft.aspnetcore.webutilities/2.0.2",
- "hashPath": "microsoft.aspnetcore.webutilities.2.0.2.nupkg.sha512"
- },
- "Microsoft.Azure.KeyVault/2.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-A82ESUdfLz2wMhYuPxrwf/fA7JVt3IARgeMCG3TsaLtxUxa9RBKX3f0zdnKmvBvJ/u1/5g03OLR26GPekqY5HQ==",
- "path": "microsoft.azure.keyvault/2.3.2",
- "hashPath": "microsoft.azure.keyvault.2.3.2.nupkg.sha512"
- },
- "Microsoft.Azure.KeyVault.WebKey/2.0.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MVSYao62R9rwl9KF+IsJm+XBLupJj1ma2lfwNeFlSWziXGAopnYK+YkDWqABOqNIV9kpza/MvNBxITzhlJIyIw==",
- "path": "microsoft.azure.keyvault.webkey/2.0.7",
- "hashPath": "microsoft.azure.keyvault.webkey.2.0.7.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
- "path": "microsoft.codeanalysis.analyzers/1.1.0",
- "hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/2.3.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nGATpUW09zOGFLQZ3JXIObJyNlk2dvgNgC7Kh+iDpxGWgKHSgpHMXnGmXUecJa4CNi0HhUENKSnEack1aF/MwQ==",
- "path": "microsoft.codeanalysis.common/2.3.1",
- "hashPath": "microsoft.codeanalysis.common.2.3.1.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/2.3.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fvO7Q8FqzmWX8gzzCk4Bf34Ms06bZ6r/A9tUz1ndj3ioitAxSC2QUXbUQOJ4ExzohTtXhczJAFirgs//Nasz6A==",
- "path": "microsoft.codeanalysis.csharp/2.3.1",
- "hashPath": "microsoft.codeanalysis.csharp.2.3.1.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Razor/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uDtaWOCEZ9+2bEYA8cmlogajruQziTqRDKEZ2zt/2BViRm/sFUovHHbmYnBp5W1cqVEPz6M8R6dA1Qqv67fhfA==",
- "path": "microsoft.codeanalysis.razor/2.0.2",
- "hashPath": "microsoft.codeanalysis.razor.2.0.2.nupkg.sha512"
- },
- "Microsoft.CSharp/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vvVR/B08YVghQ4jHEloxqw2ZWzEGE1AOA5E0DioUM3ujbXz6FD3AfB/0Jl2ohJPd0nXYGwmPe1En6HTsSriq1A==",
- "path": "microsoft.csharp/4.4.0",
- "hashPath": "microsoft.csharp.4.4.0.nupkg.sha512"
- },
- "Microsoft.Data.Edm/5.8.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P/d8DxA6MFHroBEn/jW0LMQSIKnsRRibrZtRCLfov2boQfrQ1R1BVgkJ5oIhcQsOm0l4POv+I2ny6RBsclNbOw==",
- "path": "microsoft.data.edm/5.8.2",
- "hashPath": "microsoft.data.edm.5.8.2.nupkg.sha512"
- },
- "Microsoft.Data.OData/5.8.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oEIUtXcRiKogF0yZxA+QdgxoBJ34989qL/5xOSrTfxAhzNJV5Hw6DRdWgUCpeXFMoJUQx7ptbHCN+My/LCQfsg==",
- "path": "microsoft.data.odata/5.8.2",
- "hashPath": "microsoft.data.odata.5.8.2.nupkg.sha512"
- },
- "Microsoft.Data.Sqlite/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jJXCZniFDwHGnRYd9WD3vswQCyIXk0/gsne9TLFWIpy6oK4kAcKD1BTncaHQmVg0pp/YmRBKXVIh4yXSHqbsGQ==",
- "path": "microsoft.data.sqlite/2.0.1",
- "hashPath": "microsoft.data.sqlite.2.0.1.nupkg.sha512"
- },
- "Microsoft.Data.Sqlite.Core/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lkUOJRJEXnXAxWKhCSFjYKLhuopw+m6ClML4cF1Rt/Ek8bBUW6hn1xAHCZ9KFqkcNOpBS7rQ6nZBaSXU3mgbOQ==",
- "path": "microsoft.data.sqlite.core/2.0.1",
- "hashPath": "microsoft.data.sqlite.core.2.0.1.nupkg.sha512"
- },
- "Microsoft.DotNet.PlatformAbstractions/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cXgVdJmW3fLwmSxsv0RlTe4BIKs6slVXV5xRvsO4CV4aUeY67GelaujxY/lP5yVlaMjMM22pXKbKtUY9x050Mw==",
- "path": "microsoft.dotnet.platformabstractions/2.0.3",
- "hashPath": "microsoft.dotnet.platformabstractions.2.0.3.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-TjlP5PH687P1pHVUEUlXeoywd5iEXLHxOKfKfVIWsesXGq+hSz0Z8/afWo3mvuBIR0yLMc4Dfh5baTTKzYDQKw==",
- "path": "microsoft.entityframeworkcore/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Design/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cEqvei8LTLxJavvOH5OwQRjtfAlJF6RhnUyetv3M7hByXktkpedvhykH0TeJS0IQMfP3pU+9qclQpyrq9Ej4lQ==",
- "path": "microsoft.entityframeworkcore.design/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.design.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.InMemory/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ElVLhS/kaVByeh1I7mg9AcUVfZ/k55SMCW6BRRoXIMaAyUHw9n3EWhK7ThdBLp1Dek0UBwSD593jxGis2BqUGA==",
- "path": "microsoft.entityframeworkcore.inmemory/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.inmemory.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tuB7TVi2VM5nmwmo2jXOOo5kH/iDaiGW2pHi8xHdy0YTj/ywNP8adobu35u4CabPaH88di6SLveeAdVi80vffw==",
- "path": "microsoft.entityframeworkcore.relational/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.relational.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Sqlite/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+Oc8jLtctAWzhZTao+oKNdS90fmEstirP/OAwfujtgQDQW0ktbsQwSGnNJM91fkN/fydOND5APMPG4jOdinlCA==",
- "path": "microsoft.entityframeworkcore.sqlite/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.sqlite.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Sqlite.Core/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Fgal6xyOon1rzKuk5kTCfsanSUN203BA6I6OFhEPIWbRDkBNjNVGlXg0C7N0gtgvq1OeByQj8H2Jni6VHk032Q==",
- "path": "microsoft.entityframeworkcore.sqlite.core/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.sqlite.core.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.SqlServer/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-368mmlJFauVm1ICn+plKJNm6KSX2jRTuK3zwomZwDAlzxO5kr8MMmbr60e6QM68wk8u0bdQBzTwO7GzfEnzWLA==",
- "path": "microsoft.entityframeworkcore.sqlserver/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.sqlserver.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Tools/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GBgyVDSZhYwja4cy+muVBocjlgbLhV5m29J3tHHf02utM8zo1jDSuarDGKV0O+kj5d3bgBuHe+0/Tf78GanTHQ==",
- "path": "microsoft.entityframeworkcore.tools/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.tools.2.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NobDNbehAbMYUApMXLd9XSt9UznGCgPW9PW4Ybe6S5jKqkd5RcTnaKm0FODcgyx+7B1hIGx7dZwa1bVdiSbHAg==",
- "path": "microsoft.extensions.caching.abstractions/2.0.1",
- "hashPath": "microsoft.extensions.caching.abstractions.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GVtJD0uhoLOkXBfYZAIRDexEr2qg0QHbUo3CIjmtoGpFWHuGHTvjGqRlybMKIYTpt0BxKpXMn4fqhS4ff10llA==",
- "path": "microsoft.extensions.caching.memory/2.0.1",
- "hashPath": "microsoft.extensions.caching.memory.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Redis/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6Zo0CnNFiNBaeac8cmPCaA5Gs2LMQHoYeyaz4Il03NTa0sTEnHUoiXcujozkJmJbQjbSb7qFhw2DATzwIfEvMA==",
- "path": "microsoft.extensions.caching.redis/2.0.1",
- "hashPath": "microsoft.extensions.caching.redis.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.SqlServer/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mSQKQBhjfBeYU7cqG3wU/mgMqmwbRKy/ZkPxrPnZQ55NhnT3QbGNDOgD9CxJ1j8FMWBYcprxAbSGOM98ab+C5Q==",
- "path": "microsoft.extensions.caching.sqlserver/2.0.1",
- "hashPath": "microsoft.extensions.caching.sqlserver.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d9fFoEYRaBccu/Z2B2BZCil/lEnmoVQ8YiY1dGViERh0qWjixgR9y/M7EGaoTrAunnmvAmfwxuij/gCq6WvL1w==",
- "path": "microsoft.extensions.configuration/2.0.1",
- "hashPath": "microsoft.extensions.configuration.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-stGq1c136UUYOsgQuJ5fjiygqZhgt6Kj0pm4iL0qq1MICNgEKTJ4tnbXLkZfrDHDz+olsT2VY9cVv2yshg+m+A==",
- "path": "microsoft.extensions.configuration.abstractions/2.0.1",
- "hashPath": "microsoft.extensions.configuration.abstractions.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.AzureKeyVault/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qVg14LrUn1xMS9D3meFJZGQHB13hu63AWF+eCRI/BKFSuP1t24wK4bVjRiLOfgeaBa/7uu168BTpVcAC62OD+w==",
- "path": "microsoft.extensions.configuration.azurekeyvault/2.0.1",
- "hashPath": "microsoft.extensions.configuration.azurekeyvault.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5I1aC5g3+zb10nbNfTEz0YVFuKgvNU4jul0iDX10Q1nVyZoj33TsoNQwcJqBzJBxwjDSSGhejhgsQduREhFm6g==",
- "path": "microsoft.extensions.configuration.binder/2.0.1",
- "hashPath": "microsoft.extensions.configuration.binder.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.CommandLine/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xbA72loiTC3MK89cJZBEEbl4jWi8ugUJjd6Ak4jJN7JXerVURpWhSJ7engn+gZKYwvzdbt0vkr+/u015Pe4gqA==",
- "path": "microsoft.extensions.configuration.commandline/2.0.1",
- "hashPath": "microsoft.extensions.configuration.commandline.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ex3C6fEpePj3pekjjDTbSY/+IR371KDv+BFp6Wev/q0uPBmFN5dXlvy2M37fYmfca/VIb3rkOIqHpheWG3Iezg==",
- "path": "microsoft.extensions.configuration.environmentvariables/2.0.1",
- "hashPath": "microsoft.extensions.configuration.environmentvariables.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.FileExtensions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ig55mY9fpfvVbQLuiT1ETjpYuI33RiSfhdon0nfl3m9cRSCJrrq2X7MXus2ihh2eW3ev+jPBHWNOFjN0YRN3cg==",
- "path": "microsoft.extensions.configuration.fileextensions/2.0.1",
- "hashPath": "microsoft.extensions.configuration.fileextensions.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Ini/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VexwTBlONJ42fDEdFBOg3A40wfEqlnWI2OQnUBmVs/dsoyTiMdPi1fgCJ1aUEYsXvfbkttF3qkudKsFbLw4rBA==",
- "path": "microsoft.extensions.configuration.ini/2.0.1",
- "hashPath": "microsoft.extensions.configuration.ini.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Json/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RIh+RKEFkLDNeOhwPasPslqVDr72NVedR0rNKwxWnCZftAlSa4jmKg7nCacB4pU7rK2TMgl85ZaHZmrxC7Rcew==",
- "path": "microsoft.extensions.configuration.json/2.0.1",
- "hashPath": "microsoft.extensions.configuration.json.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.UserSecrets/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MZMMOV7cMHnT7bAfcF2NmLywHXcw3krNtrPmjTO/CoimDl4dJbd7YhM29S5EFkr10nwMslH3VQtMccSVKGAcyw==",
- "path": "microsoft.extensions.configuration.usersecrets/2.0.1",
- "hashPath": "microsoft.extensions.configuration.usersecrets.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Xml/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BSbH2kXBKej8Hp8OixjAqx6nD2il8inYYDD6qPkSkralLe1X2Kiv5jzzlDWUvh9DZ51wrLDoWMvY7FGBhU6Sfw==",
- "path": "microsoft.extensions.configuration.xml/2.0.1",
- "hashPath": "microsoft.extensions.configuration.xml.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-wakg18gHYiUL1pcjjyZuYk6OvDpbSw1E7IWxm78TMepsr+gQ8W0tWzuRm0q/9RFblngwPwo15rrgZSUV51W5Iw==",
- "path": "microsoft.extensions.dependencyinjection/2.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.2.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eUdJ0Q/GfVyUJc0Jal5L1QZLceL78pvEM9wEKcHeI24KorqMDoVX+gWsMGLulQMfOwsUaPtkpQM2pFERTzSfSg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/2.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OiNYN/QeZLuYcn4CvYrOmYgODPB1Jpqft+cT4F3Hkq5poj+1DLfbIBftMI/Pn8J7DyHhYeBMLxJUuugjvk/Fuw==",
- "path": "microsoft.extensions.dependencymodel/2.0.3",
- "hashPath": "microsoft.extensions.dependencymodel.2.0.3.nupkg.sha512"
- },
- "Microsoft.Extensions.DiagnosticAdapter/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w8nux+yppIAD3ouzLz3CEtUMj03WIQ9FAmuR6IhrCpQDcoMtajlZIkZLbryJE1jdF1wkewLLM2LpXasfu7HzQw==",
- "path": "microsoft.extensions.diagnosticadapter/2.0.1",
- "hashPath": "microsoft.extensions.diagnosticadapter.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Abstractions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Gzc5yXvwIrKpdti0Ev4jC0inVrGZpI86eLZorMVRqAPXowR8JDRbcHjhmID2EqA4rdhL/IsfD42+4upKpHULDw==",
- "path": "microsoft.extensions.fileproviders.abstractions/2.0.1",
- "hashPath": "microsoft.extensions.fileproviders.abstractions.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Composite/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bgAUXH3T/Y1R5bCthCiZVzEX4spvNeIHRv6+Jr4BJMxPVSFm/8er7xvywd2NCayv94frKZdDGP3mjAQZenZDxQ==",
- "path": "microsoft.extensions.fileproviders.composite/2.0.1",
- "hashPath": "microsoft.extensions.fileproviders.composite.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Embedded/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PH1oo04WCbKy42aga6bC4phl1rZfbFsZLuozJN1LGUUZTCnycUAZzCqG6MNRCgRiHg2bPexiQ15708vSwnuBHQ==",
- "path": "microsoft.extensions.fileproviders.embedded/2.0.1",
- "hashPath": "microsoft.extensions.fileproviders.embedded.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Physical/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h+6bcXYlGldl7BUhnQKFxL2sMfeg9Gr/AuVexYOCYWmzDsc4iyUoy3NL7i2vkG209wd0ZXf+pZzRDwGPFhmlSw==",
- "path": "microsoft.extensions.fileproviders.physical/2.0.1",
- "hashPath": "microsoft.extensions.fileproviders.physical.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileSystemGlobbing/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-q7KsG2kjwo2Ps0WdV7MFh64cQS0UHikV8qv4HQrUfWQyxim5vNmLzAbuduarS9QWbhRHTtUanx+ohyAQdumdnw==",
- "path": "microsoft.extensions.filesystemglobbing/2.0.1",
- "hashPath": "microsoft.extensions.filesystemglobbing.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Hosting.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gs+TNXCW05ujojZlQj2i9Fj00IAhXrgLZtgGM0XxoSoffgCGfGh7jX4kB/dnaot3xVdw84L1nE98bwQN7+kK8A==",
- "path": "microsoft.extensions.hosting.abstractions/2.0.2",
- "hashPath": "microsoft.extensions.hosting.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Identity.Core/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Lx5bFoGV2q83SdNh6SrzZczngu/FQ8N/VegNxyEl8h+UwFQJrVj9S3Ukp5Xd1jdFaRT4Xus8P8aGBdy8V7Iwew==",
- "path": "microsoft.extensions.identity.core/2.0.2",
- "hashPath": "microsoft.extensions.identity.core.2.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Identity.Stores/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9BTVdltrgFh+O69zm4fHZ50PV+GDEdGqcp+KMlbrOW+RmAgbVkQvMV25ZZChUAlT/uQb7BnAF1h5+2xWEyNQzA==",
- "path": "microsoft.extensions.identity.stores/2.0.2",
- "hashPath": "microsoft.extensions.identity.stores.2.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Localization/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rT21gcQRQjpITr7GfpXSbUi+87WP2JEU1TrJjAS0jQSBEWwylzFNeokHYp/hQw9DHXhGHeqYSUXyrKE06XdsdA==",
- "path": "microsoft.extensions.localization/2.0.2",
- "hashPath": "microsoft.extensions.localization.2.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Localization.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-akovmABJPmBjQfomzHywPGBjelgRazTBj2RV6+EBnALt5T639CBF+npHKM2z3Ms6HR9e50sDvAyAcnKgVOTdgA==",
- "path": "microsoft.extensions.localization.abstractions/2.0.2",
- "hashPath": "microsoft.extensions.localization.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FKeB93fwdaEf2EXpxczDjE1CkWoAIrijiG1RZeDyD0OvbC0yjTVp1kCJTLYPrFil9JveJzvgXpL7BMNil9Ht3w==",
- "path": "microsoft.extensions.logging/2.0.1",
- "hashPath": "microsoft.extensions.logging.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DzCKlMdXOysXFDBXgNnxFlpSj5AOdMkUqKEjKT1n+japTxhQ3e3MaGODZGtbIj9ezykRs9oEBGmdSHHfh4oNVA==",
- "path": "microsoft.extensions.logging.abstractions/2.0.1",
- "hashPath": "microsoft.extensions.logging.abstractions.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.AzureAppServices/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v+JIz8XjA8l97lCMaEs+FcbG435QXCzHXEfPG47puYFiRbzsuphqlBqa0I3dsejhoeMfdroi7xRz4ODlmkv6iw==",
- "path": "microsoft.extensions.logging.azureappservices/2.0.1",
- "hashPath": "microsoft.extensions.logging.azureappservices.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Configuration/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xIA/im+xMO80xHvfFCa3IQ6/L20pHl7MjyEZjKQKHRNsZgJIk4e8dfdHGeNaXChuTUycQ0EBdyN4kXUFqbAk3A==",
- "path": "microsoft.extensions.logging.configuration/2.0.1",
- "hashPath": "microsoft.extensions.logging.configuration.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Console/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lbAWSy/Iwj584V6TAcKK8DU37IDOO7l+fMfktTsQWs14a4NXF/S0DjdbeJ5QoGR3aQiIlKJvNoCPoKLO9XeBMQ==",
- "path": "microsoft.extensions.logging.console/2.0.1",
- "hashPath": "microsoft.extensions.logging.console.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Debug/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Cvsb3YWmuy7R/CRCAjoTVHDG3GDDVROfp3UWjo7CnxGX2Czc89AUPjxH5JFOd7xOplj12BX/KgU5m1KO3VOJIg==",
- "path": "microsoft.extensions.logging.debug/2.0.1",
- "hashPath": "microsoft.extensions.logging.debug.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.EventSource/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LSihUUWSccjvDXrEwLS5f0RqesSCQ9W2bkTKr+AKXoGEXggzdHvcT3AmJbxWmNHVygkE+fPNMT9wHLeGD/Eu9A==",
- "path": "microsoft.extensions.logging.eventsource/2.0.1",
- "hashPath": "microsoft.extensions.logging.eventsource.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.TraceSource/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9vUL4uDDI/cfXsaZurijJgsXxSx7v0bugaPeWZPhFzynm1nvPJTZ4nAWXBHHLgVQLA7msFkmm97LKdVKecC+AQ==",
- "path": "microsoft.extensions.logging.tracesource/2.0.1",
- "hashPath": "microsoft.extensions.logging.tracesource.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.ObjectPool/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-drOmgNZCJiNEqFM/TvyqwtogS8wqoWGQCW5KB/CVGKL6VXHw8OOMdaHyspp8HPstP9UDnrnuq+8eaCaAcQg6tA==",
- "path": "microsoft.extensions.objectpool/2.0.0",
- "hashPath": "microsoft.extensions.objectpool.2.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gxo2Bgg4D6+uyQz1Wdj1FAcBD3870+t37YjplyQXmjLzPWaoU89AIg3AXBXw4fR9CCdWLputZBLm3YaBx+oDFQ==",
- "path": "microsoft.extensions.options/2.0.1",
- "hashPath": "microsoft.extensions.options.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-O1/MZSjWHdo4NNBD83ibRi83kKkbqbe+XTuoQtyk9NpfzYO6GoeEA+5ClEMJ56BO9DCNZb5SCBCPdlt2MdLFfw==",
- "path": "microsoft.extensions.options.configurationextensions/2.0.1",
- "hashPath": "microsoft.extensions.options.configurationextensions.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
- "path": "microsoft.extensions.platformabstractions/1.1.0",
- "hashPath": "microsoft.extensions.platformabstractions.1.1.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ukg53qNlqTrK38WA30b5qhw0GD7y3jdI9PHHASjdKyTcBHTevFM2o23tyk3pWCgAV27Bbkm+CPQ2zUe1ZOuYSA==",
- "path": "microsoft.extensions.primitives/2.0.0",
- "hashPath": "microsoft.extensions.primitives.2.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.WebEncoders/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uRVexwgmsT3kfLKYb1mVOh96DIfo13Jp0rXvVZjFLEL29TV9K3GUeM/qTgm5P+hncWCMU6KOmx/QA+954pBMtw==",
- "path": "microsoft.extensions.webencoders/2.0.1",
- "hashPath": "microsoft.extensions.webencoders.2.0.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Clients.ActiveDirectory/3.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GlyzF4FWsn3LXC6rrzw6Yg2nMbGLx+7JS9a6Z8n7jhqPa5cMiNEX01tBUO1v3A9p1mk+gQzHWJheAsSpOLp/ew==",
- "path": "microsoft.identitymodel.clients.activedirectory/3.14.1",
- "hashPath": "microsoft.identitymodel.clients.activedirectory.3.14.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Logging/1.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j7t22EsDOuo0IXqAbp6ijdB1GuaY8cu3YoPNZpymOhUMTVC+wRTV0IHqxL31HacCnJHU/igsqe70fDKZgZu3oA==",
- "path": "microsoft.identitymodel.logging/1.1.4",
- "hashPath": "microsoft.identitymodel.logging.1.1.4.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Protocols/2.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9aefRN9sL8XZo90Aix88IHHpAvfBl6UOiYpcKHiXbCYE2nB+zA3B8dZdNMOUH4pqXdnpYrHRDQZ2k7A4/CUgTQ==",
- "path": "microsoft.identitymodel.protocols/2.1.4",
- "hashPath": "microsoft.identitymodel.protocols.2.1.4.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LF8JcG9BqGRwVjhu/IebuZQer6TJGDv2uxNnmg2Zkzh/d+MIC1ShsC1U3U7pVaw03SKyXmCgYm+JG0WM0mcOUw==",
- "path": "microsoft.identitymodel.protocols.openidconnect/2.1.4",
- "hashPath": "microsoft.identitymodel.protocols.openidconnect.2.1.4.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Tokens/5.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SsJbZVPvjSlKFDAQmR2wpL6ZD/vCFlIsf0jxRlBJwyzKXZy3Wi/Xo+fE2MzAerLsJgG1UCdtplRwqDyq1euayw==",
- "path": "microsoft.identitymodel.tokens/5.1.4",
- "hashPath": "microsoft.identitymodel.tokens.5.1.4.nupkg.sha512"
- },
- "Microsoft.Net.Http.Headers/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hNhJU+Sd7Ws/yrBnakUWKWMyGiDUJE5lTkJfWe5xPL8YGTiL6Es07H9CcTyaYYwVlgW06uDVN0YhhH+t4EjdCw==",
- "path": "microsoft.net.http.headers/2.0.2",
- "hashPath": "microsoft.net.http.headers.2.0.2.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
- "path": "microsoft.netcore.platforms/2.0.0",
- "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.Rest.ClientRuntime/2.3.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Hj96LBoCwKY2VQKfSCVGGPV1sSumVjuYnrlpBwL4JSTnSK4b6ZxjLtXj8LgmKav8xJ2gps+UN7eI3hHVFKvBFw==",
- "path": "microsoft.rest.clientruntime/2.3.8",
- "hashPath": "microsoft.rest.clientruntime.2.3.8.nupkg.sha512"
- },
- "Microsoft.Rest.ClientRuntime.Azure/3.3.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6u8JIuvrztse4tPOcvNzAJuzGBP0uY+Ijggk8ZYhp0siGEZ1XfZylf1vpNGUicvwcrhhoIgDW73Z1L6QGssr2g==",
- "path": "microsoft.rest.clientruntime.azure/3.3.7",
- "hashPath": "microsoft.rest.clientruntime.azure.3.3.7.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.BrowserLink/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZS/yWRNbOseQefHnPewOqSuh9lvwVItikPNw6hhm0MKQRFkaTHw7NSb+SqDYM4LBzgx5uvkz3f3kHLZg9AgMFw==",
- "path": "microsoft.visualstudio.web.browserlink/2.0.2",
- "hashPath": "microsoft.visualstudio.web.browserlink.2.0.2.nupkg.sha512"
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
- "path": "microsoft.win32.primitives/4.3.0",
- "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
- },
- "Microsoft.Win32.Registry/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
- "path": "microsoft.win32.registry/4.4.0",
- "hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512"
- },
- "NETStandard.Library/1.6.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
- "path": "netstandard.library/1.6.1",
- "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
- },
- "Newtonsoft.Json/10.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ebWzW9j2nwxQeBo59As2TYn7nYr9BHicqqCwHOD1Vdo+50HBtLPuqdiCYJcLdTRknpYis/DSEOQz5KmZxwrIAg==",
- "path": "newtonsoft.json/10.0.1",
- "hashPath": "newtonsoft.json.10.0.1.nupkg.sha512"
- },
- "Newtonsoft.Json.Bson/1.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
- "path": "newtonsoft.json.bson/1.0.1",
- "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
- },
- "Remotion.Linq/2.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IJn0BqkvwEDpP+2qjvci7n4/a9f7DhKESLWb2/uG4xQh3rTkGTBUz69bI4IivCoKkTFAqjXxYDZw2K/npohjsw==",
- "path": "remotion.linq/2.1.1",
- "hashPath": "remotion.linq.2.1.1.nupkg.sha512"
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "path": "runtime.native.system/4.3.0",
- "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
- "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
- "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
- "path": "runtime.native.system.io.compression/4.3.0",
- "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "path": "runtime.native.system.net.http/4.3.0",
- "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Net.Security/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
- "path": "runtime.native.system.net.security/4.3.0",
- "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "path": "runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "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.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
- "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
- "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
- },
- "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
- "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
- "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
- },
- "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
- "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
- "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
- },
- "SQLitePCLRaw.bundle_green/1.1.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Kw+n4CUhQ8S4YAPmpRUldO8S7c4LU7HHukJF0v5Sfggf8Ia9YVdIh0dYkMvKvS+DTX+OBORSMqPM0CGfAzFtVA==",
- "path": "sqlitepclraw.bundle_green/1.1.7",
- "hashPath": "sqlitepclraw.bundle_green.1.1.7.nupkg.sha512"
- },
- "SQLitePCLRaw.core/1.1.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-u9k9ZFkyTU6CVyXWpRuuXOvKi/cy/xt1oGKVSW8aUKcTL4RdH34yFNtVykEeiR68ojIEvmoZfL51h/xx2IQk5g==",
- "path": "sqlitepclraw.core/1.1.7",
- "hashPath": "sqlitepclraw.core.1.1.7.nupkg.sha512"
- },
- "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KRqMd1qLwJ4pzPybj8q95s+wV6jby5F0O/rp0vw3wa2Z2wHxRm0VqxS2Sejlr7Ctz+LxSr8DpNg1l1u6n/PAPA==",
- "path": "sqlitepclraw.lib.e_sqlite3.linux/1.1.7",
- "hashPath": "sqlitepclraw.lib.e_sqlite3.linux.1.1.7.nupkg.sha512"
- },
- "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hdZx1DKHbDi4li6abmJ+A29mxY8D6BcM0s8VMT8p4MWEyrj54CZFUm402jTV6OgZCsFGkbRFnuFdBXf4vSDO7g==",
- "path": "sqlitepclraw.lib.e_sqlite3.osx/1.1.7",
- "hashPath": "sqlitepclraw.lib.e_sqlite3.osx.1.1.7.nupkg.sha512"
- },
- "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-roIdTH4a4iFa08HOwTWnzj2QYBIpSZRYfLSvHjtbH67I4DSWregrd4jkSnoOuwC5GHG08FNahBfEx3HAsVqW+g==",
- "path": "sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.7",
- "hashPath": "sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.7.nupkg.sha512"
- },
- "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Zdug2wETm6847337EtD8MoCAtOdwM6prEXL/UsJ97Zxvoeyk/gUpdtuFNBxgJzceuty0jymjxm5yur5QajdApg==",
- "path": "sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.7",
- "hashPath": "sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.7.nupkg.sha512"
- },
- "StackExchange.Redis.StrongName/1.2.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qrfSB1BnmM17V20A4yvvNA0HNiDgnBd/CcjaeMKMA4qtup1uuBUMyhl20oj31fRVo71E/fXTbmQCuM9ytBJs6w==",
- "path": "stackexchange.redis.strongname/1.2.4",
- "hashPath": "stackexchange.redis.strongname.1.2.4.nupkg.sha512"
- },
- "System.AppContext/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
- "path": "system.appcontext/4.3.0",
- "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
- },
- "System.Buffers/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==",
- "path": "system.buffers/4.4.0",
- "hashPath": "system.buffers.4.4.0.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "path": "system.collections.concurrent/4.3.0",
- "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
- },
- "System.Collections.Immutable/1.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-71hw5RUJRu5+q/geUY69gpXD8Upd12cH+F3MwpXV2zle7Bqqkrmc1JblOTuvUcgmdnUtQvBlV5e1d6RH+H2lvA==",
- "path": "system.collections.immutable/1.4.0",
- "hashPath": "system.collections.immutable.1.4.0.nupkg.sha512"
- },
- "System.Collections.NonGeneric/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
- "path": "system.collections.nongeneric/4.3.0",
- "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
- },
- "System.Collections.Specialized/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
- "path": "system.collections.specialized/4.3.0",
- "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
- "path": "system.componentmodel/4.3.0",
- "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel.Annotations/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-29K3DQ+IGU7LBaMjTo7SI7T7X/tsMtLvz1p56LJ556Iu0Dw3pKZw5g8yCYCWMRxrOF0Hr0FU0FwW0o42y2sb3A==",
- "path": "system.componentmodel.annotations/4.4.0",
- "hashPath": "system.componentmodel.annotations.4.4.0.nupkg.sha512"
- },
- "System.ComponentModel.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
- "path": "system.componentmodel.primitives/4.3.0",
- "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel.TypeConverter/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
- "path": "system.componentmodel.typeconverter/4.3.0",
- "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
- },
- "System.Console/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
- "path": "system.console/4.3.0",
- "hashPath": "system.console.4.3.0.nupkg.sha512"
- },
- "System.Data.SqlClient/4.4.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-D1hEOS1oPLJ6WcGCzpTWe8SauWVxnDoDTUWhv5XCNdRm/QeSUk4BQ3ZDe7BH+zNVHDBkPYjVzpVjnCl43eOSGg==",
- "path": "system.data.sqlclient/4.4.3",
- "hashPath": "system.data.sqlclient.4.4.3.nupkg.sha512"
- },
- "System.Diagnostics.Contracts/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==",
- "path": "system.diagnostics.contracts/4.3.0",
- "hashPath": "system.diagnostics.contracts.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.4.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-U/KcC19fyLsPN1GLmeU2zQq15MMVcPwMOYPADVo1+WIoJpvMHxrzvl+BLLZwTEZSneGwaPFZ0aWr0nJ7B7LSdA==",
- "path": "system.diagnostics.diagnosticsource/4.4.1",
- "hashPath": "system.diagnostics.diagnosticsource.4.4.1.nupkg.sha512"
- },
- "System.Diagnostics.FileVersionInfo/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==",
- "path": "system.diagnostics.fileversioninfo/4.3.0",
- "hashPath": "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.StackTrace/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
- "path": "system.diagnostics.stacktrace/4.3.0",
- "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tools/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
- "path": "system.diagnostics.tools/4.3.0",
- "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "path": "system.diagnostics.tracing/4.3.0",
- "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
- },
- "System.Dynamic.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
- "path": "system.dynamic.runtime/4.3.0",
- "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "path": "system.globalization.calendars/4.3.0",
- "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "path": "system.globalization.extensions/4.3.0",
- "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
- },
- "System.IdentityModel.Tokens.Jwt/5.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hLUU1N99aL9uyxiTraBnCKlpUKsbP/+5ygD7cswspH9/+M7fAAL0hRzt2aA4w7VEQlSSiu8j+xWFk3NRcqhfQQ==",
- "path": "system.identitymodel.tokens.jwt/5.1.4",
- "hashPath": "system.identitymodel.tokens.jwt.5.1.4.nupkg.sha512"
- },
- "System.Interactive.Async/3.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hZccYiIE5RS1/J9Tb/BNtosAGVggdlsJm4Ojdu+gDV0p4AIi+LUfUogMKkRacljQEJd2AG6vYzvcjhQFkqoZmw==",
- "path": "system.interactive.async/3.1.1",
- "hashPath": "system.interactive.async.3.1.1.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.Compression/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
- "path": "system.io.compression/4.3.0",
- "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
- "path": "system.io.compression.zipfile/4.3.0",
- "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "path": "system.io.filesystem/4.3.0",
- "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "path": "system.io.filesystem.primitives/4.3.0",
- "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "path": "system.linq.expressions/4.3.0",
- "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
- },
- "System.Linq.Queryable/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
- "path": "system.linq.queryable/4.0.1",
- "hashPath": "system.linq.queryable.4.0.1.nupkg.sha512"
- },
- "System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
- "path": "system.net.http/4.3.0",
- "hashPath": "system.net.http.4.3.0.nupkg.sha512"
- },
- "System.Net.NameResolution/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
- "path": "system.net.nameresolution/4.3.0",
- "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "path": "system.net.primitives/4.3.0",
- "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
- },
- "System.Net.Security/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
- "path": "system.net.security/4.3.0",
- "hashPath": "system.net.security.4.3.0.nupkg.sha512"
- },
- "System.Net.Sockets/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
- "path": "system.net.sockets/4.3.0",
- "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
- },
- "System.Numerics.Vectors/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ==",
- "path": "system.numerics.vectors/4.4.0",
- "hashPath": "system.numerics.vectors.4.4.0.nupkg.sha512"
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "path": "system.objectmodel/4.3.0",
- "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
- },
- "System.Private.DataContractSerialization/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
- "path": "system.private.datacontractserialization/4.1.1",
- "hashPath": "system.private.datacontractserialization.4.1.1.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "path": "system.reflection.emit/4.3.0",
- "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "path": "system.reflection.extensions/4.3.0",
- "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/1.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-423hF/x1/1/aBT6hjgrp8RH2zdKOd1iTujlHisSesTW/cgv1ixUitfk23ZknVzItMm6jnwp9CBwI2P3r9jpitw==",
- "path": "system.reflection.metadata/1.5.0",
- "hashPath": "system.reflection.metadata.1.5.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "path": "system.reflection.typeextensions/4.3.0",
- "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.CompilerServices.Unsafe/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9dLLuBxr5GNmOfl2jSMcsHuteEg32BEfUotmmUkmZjpR3RpVHE8YQwt0ow3p6prwA1ME8WqDVZqrr8z6H8G+Kw==",
- "path": "system.runtime.compilerservices.unsafe/4.4.0",
- "hashPath": "system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
- "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
- "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "path": "system.runtime.numerics/4.3.0",
- "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Serialization.Formatters/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
- "path": "system.runtime.serialization.formatters/4.3.0",
- "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Serialization.Json/4.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==",
- "path": "system.runtime.serialization.json/4.0.2",
- "hashPath": "system.runtime.serialization.json.4.0.2.nupkg.sha512"
- },
- "System.Runtime.Serialization.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
- "path": "system.runtime.serialization.primitives/4.3.0",
- "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
- },
- "System.Security.AccessControl/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==",
- "path": "system.security.accesscontrol/4.4.0",
- "hashPath": "system.security.accesscontrol.4.4.0.nupkg.sha512"
- },
- "System.Security.Claims/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
- "path": "system.security.claims/4.3.0",
- "hashPath": "system.security.claims.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
- "path": "system.security.cryptography.cng/4.3.0",
- "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "path": "system.security.cryptography.csp/4.3.0",
- "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "path": "system.security.cryptography.encoding/4.3.0",
- "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "path": "system.security.cryptography.openssl/4.3.0",
- "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "path": "system.security.cryptography.primitives/4.3.0",
- "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Xml/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1Xubvo4i+K+DO6YzVh6vBKmCl5xx/cAoiJEze6VQ+XwVQU25KQC9pPrmniz2EbbJnmoQ5Rm2FFjHsfQAi0Rs+Q==",
- "path": "system.security.cryptography.xml/4.4.0",
- "hashPath": "system.security.cryptography.xml.4.4.0.nupkg.sha512"
- },
- "System.Security.Principal/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
- "path": "system.security.principal/4.3.0",
- "hashPath": "system.security.principal.4.3.0.nupkg.sha512"
- },
- "System.Security.Principal.Windows/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==",
- "path": "system.security.principal.windows/4.4.0",
- "hashPath": "system.security.principal.windows.4.4.0.nupkg.sha512"
- },
- "System.Spatial/5.8.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0RfZZJ8RlrfjoBPAF6pczX4Nd2kyLM8EX1PCP5Rqs/jOhJBUPYhpXjIsVAYN7kocj9IJ9XoJWAxWgXIDtJY2Ag==",
- "path": "system.spatial/5.8.2",
- "hashPath": "system.spatial.5.8.2.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.CodePages/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
- "path": "system.text.encoding.codepages/4.4.0",
- "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
- "path": "system.text.encoding.extensions/4.3.0",
- "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
- },
- "System.Text.Encodings.Web/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l/tYeikqMHX2MD2jzrHDfR9ejrpTTF7wvAEbR51AMvzip1wSJgiURbDik4iv/w7ZgytmTD/hlwpplEhF9bmFNw==",
- "path": "system.text.encodings.web/4.4.0",
- "hashPath": "system.text.encodings.web.4.4.0.nupkg.sha512"
- },
- "System.Text.RegularExpressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
- "path": "system.text.regularexpressions/4.3.0",
- "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SPKfFGbpQsK5Srz2Kq3URgvC90yoOyBE8H1quDA2+MAJ2HAzFmV3biOgPv2Ck3mPAvdKngo3QHi2BNwUQDRVvA==",
- "path": "system.threading.tasks.extensions/4.4.0",
- "hashPath": "system.threading.tasks.extensions.4.4.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Parallel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
- "path": "system.threading.tasks.parallel/4.3.0",
- "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512"
- },
- "System.Threading.Thread/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
- "path": "system.threading.thread/4.3.0",
- "hashPath": "system.threading.thread.4.3.0.nupkg.sha512"
- },
- "System.Threading.ThreadPool/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
- "path": "system.threading.threadpool/4.3.0",
- "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
- },
- "System.Threading.Timer/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
- "path": "system.threading.timer/4.3.0",
- "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
- },
- "System.ValueTuple/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BahUww/+mdP4ARCAh2RQhQTg13wYLVrBb9SYVgW8ZlrwjraGCXHGjo0oIiUfZ34LUZkMMR+RAzR7dEY4S1HeQQ==",
- "path": "system.valuetuple/4.4.0",
- "hashPath": "system.valuetuple.4.4.0.nupkg.sha512"
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
- "path": "system.xml.readerwriter/4.3.0",
- "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
- },
- "System.Xml.XDocument/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
- "path": "system.xml.xdocument/4.3.0",
- "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
- },
- "System.Xml.XmlDocument/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
- "path": "system.xml.xmldocument/4.3.0",
- "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
- },
- "System.Xml.XmlSerializer/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
- "path": "system.xml.xmlserializer/4.0.11",
- "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512"
- },
- "System.Xml.XPath/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
- "path": "system.xml.xpath/4.3.0",
- "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512"
- },
- "System.Xml.XPath.XDocument/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==",
- "path": "system.xml.xpath.xdocument/4.3.0",
- "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512"
- },
- "webhookSharp/1.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-13BokBv/Zp6c1UBuEZPtehyOhzGWVhQ/PsqQTjn3oBZObX7dfdIPJDEoMCxdGKjpT15OnneyeWRHzR5ytxKCvQ==",
- "path": "webhooksharp/1.0.0",
- "hashPath": "webhooksharp.1.0.0.nupkg.sha512"
- },
- "WindowsAzure.Storage/8.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W6ZZ0/o7+3Qb77mRAQyLjPudHG3OMeeQ4p9yY13PUdJArmRCx2cLMm5F4tpIjJXxzHC0ew0oK7DMDGILMdfCnw==",
- "path": "windowsazure.storage/8.1.4",
- "hashPath": "windowsazure.storage.8.1.4.nupkg.sha512"
- },
"Entidades/1.0.0": {
"type": "project",
"serviceable": false,
diff --git a/Controladora/bin/Debug/net6.0/Controladora.dll b/Controladora/bin/Debug/net6.0/Controladora.dll
index eedcf14..4e2384e 100644
Binary files a/Controladora/bin/Debug/net6.0/Controladora.dll and b/Controladora/bin/Debug/net6.0/Controladora.dll differ
diff --git a/Controladora/bin/Debug/net6.0/Controladora.pdb b/Controladora/bin/Debug/net6.0/Controladora.pdb
index 5871efc..b6f74b0 100644
Binary files a/Controladora/bin/Debug/net6.0/Controladora.pdb and b/Controladora/bin/Debug/net6.0/Controladora.pdb differ
diff --git a/Controladora/obj/Controladora.csproj.nuget.dgspec.json b/Controladora/obj/Controladora.csproj.nuget.dgspec.json
index 72853ea..0468b66 100644
--- a/Controladora/obj/Controladora.csproj.nuget.dgspec.json
+++ b/Controladora/obj/Controladora.csproj.nuget.dgspec.json
@@ -3,6 +3,7 @@
"restore": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"/home/fede/proyectos/Final_OOP/Controladora/Controladora.csproj": {}
},
@@ -23,13 +24,17 @@
=======
"C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj": {}
>>>>>>> 9b0bde2 (fix: arreglado nivel de acceso para las controladoras)
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj": {}
+>>>>>>> c493033 (cosas que faltaban)
},
"projects": {
- "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj": {
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj",
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj",
"projectName": "Controladora",
+<<<<<<< HEAD
<<<<<<< HEAD
"projectPath": "C:\\Users\\Nacho\\Source\\Repos\\Final_OOP\\Controladora\\Controladora.csproj",
"packagesPath": "C:\\Users\\Nacho\\.nuget\\packages\\",
@@ -44,8 +49,11 @@
"/home/fede/.nuget/NuGet/NuGet.Config"
=======
"projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj",
+=======
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj",
+>>>>>>> c493033 (cosas que faltaban)
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Controladora\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
@@ -69,6 +77,7 @@
"projectReferences": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"/home/fede/proyectos/Final_OOP/Entidades/Entidades.csproj": {
"projectPath": "/home/fede/proyectos/Final_OOP/Entidades/Entidades.csproj"
@@ -96,6 +105,13 @@
"C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj": {
"projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj"
>>>>>>> 9b0bde2 (fix: arreglado nivel de acceso para las controladoras)
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj"
+ },
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj"
+>>>>>>> c493033 (cosas que faltaban)
}
}
}
@@ -109,16 +125,6 @@
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
- "dependencies": {
- "Emailer": {
- "target": "Package",
- "version": "[1.0.0, )"
- },
- "webhookSharp": {
- "target": "Package",
- "version": "[1.0.0, )"
- }
- },
"imports": [
"net461",
"net462",
@@ -285,14 +291,14 @@
}
}
},
- "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj": {
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj",
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj",
"projectName": "Entidades",
- "projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj",
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj",
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
@@ -341,14 +347,14 @@
}
}
},
- "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj": {
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj",
"projectName": "Modelo",
- "projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj",
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
@@ -366,8 +372,8 @@
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
- "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj": {
- "projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj"
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj"
}
}
}
diff --git a/Controladora/obj/Controladora.csproj.nuget.g.props b/Controladora/obj/Controladora.csproj.nuget.g.props
index 0936813..3df2749 100644
--- a/Controladora/obj/Controladora.csproj.nuget.g.props
+++ b/Controladora/obj/Controladora.csproj.nuget.g.props
@@ -26,10 +26,13 @@
+<<<<<<< HEAD
C:\Users\fedpo\.nuget\packages\newtonsoft.json\10.0.1
C:\Users\fedpo\.nuget\packages\microsoft.entityframeworkcore.tools\2.0.2
C:\Users\fedpo\.nuget\packages\microsoft.codeanalysis.analyzers\1.1.0
>>>>>>> 9b0bde2 (fix: arreglado nivel de acceso para las controladoras)
+=======
+>>>>>>> c493033 (cosas que faltaban)
\ No newline at end of file
diff --git a/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig b/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig
index 5e1f9b2..121b667 100644
--- a/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Controladora/obj/Debug/net6.0/Controladora.GeneratedMSBuildEditorConfig.editorconfig
@@ -12,6 +12,7 @@ build_property.RootNamespace = Controladora
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
build_property.ProjectDir = /home/fede/proyectos/Final_OOP/Controladora/
=======
build_property.ProjectDir = C:\Users\Nacho\source\repos\Final\Controladora\
@@ -27,3 +28,6 @@ build_property.ProjectDir = C:\Users\fedpo\Downloads\Final\Final\Controladora\
=======
build_property.ProjectDir = C:\Users\fedpo\source\repos\Final_OOP\Controladora\
>>>>>>> 9b0bde2 (fix: arreglado nivel de acceso para las controladoras)
+=======
+build_property.ProjectDir = C:\Users\fedpo\Downloads\Final\Final\Controladora\
+>>>>>>> c493033 (cosas que faltaban)
diff --git a/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache b/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache
index 7b9bfaf..57058d7 100644
--- a/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache
+++ b/Controladora/obj/Debug/net6.0/Controladora.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-59d9a59c18cc1287fb9e3a009ea4857b622fe3fc
+f2a6af9cbfa305ccb49144b674ae7e4ce398d6da648f0a2ed5600aa09ceb1f7c
diff --git a/Controladora/obj/Debug/net6.0/Controladora.csproj.FileListAbsolute.txt b/Controladora/obj/Debug/net6.0/Controladora.csproj.FileListAbsolute.txt
index ff0fdd0..899afb5 100644
--- a/Controladora/obj/Debug/net6.0/Controladora.csproj.FileListAbsolute.txt
+++ b/Controladora/obj/Debug/net6.0/Controladora.csproj.FileListAbsolute.txt
@@ -50,3 +50,34 @@ C:\Users\fedpo\source\repos\Final_OOP\Controladora\obj\Debug\net6.0\Controladora
C:\Users\fedpo\source\repos\Final_OOP\Controladora\obj\Debug\net6.0\refint\Controladora.dll
C:\Users\fedpo\source\repos\Final_OOP\Controladora\obj\Debug\net6.0\Controladora.pdb
C:\Users\fedpo\source\repos\Final_OOP\Controladora\obj\Debug\net6.0\ref\Controladora.dll
+C:\Users\Nacho\Desktop\Final\Controladora\bin\Debug\net6.0\Controladora.deps.json
+C:\Users\Nacho\Desktop\Final\Controladora\bin\Debug\net6.0\Controladora.dll
+C:\Users\Nacho\Desktop\Final\Controladora\bin\Debug\net6.0\Controladora.pdb
+C:\Users\Nacho\Desktop\Final\Controladora\bin\Debug\net6.0\Entidades.dll
+C:\Users\Nacho\Desktop\Final\Controladora\bin\Debug\net6.0\Modelo.dll
+C:\Users\Nacho\Desktop\Final\Controladora\bin\Debug\net6.0\Modelo.pdb
+C:\Users\Nacho\Desktop\Final\Controladora\bin\Debug\net6.0\Entidades.pdb
+C:\Users\Nacho\Desktop\Final\Controladora\obj\Debug\net6.0\Controladora.csproj.AssemblyReference.cache
+C:\Users\Nacho\Desktop\Final\Controladora\obj\Debug\net6.0\Controladora.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\Nacho\Desktop\Final\Controladora\obj\Debug\net6.0\Controladora.AssemblyInfoInputs.cache
+C:\Users\Nacho\Desktop\Final\Controladora\obj\Debug\net6.0\Controladora.AssemblyInfo.cs
+C:\Users\Nacho\Desktop\Final\Controladora\obj\Debug\net6.0\Controladora.csproj.CoreCompileInputs.cache
+C:\Users\Nacho\Desktop\Final\Controladora\obj\Debug\net6.0\Controla.1EE7A4DA.Up2Date
+C:\Users\Nacho\Desktop\Final\Controladora\obj\Debug\net6.0\ref\Controladora.dll
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\bin\Debug\net6.0\Controladora.deps.json
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\bin\Debug\net6.0\Controladora.dll
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\bin\Debug\net6.0\Controladora.pdb
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\bin\Debug\net6.0\Entidades.dll
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\bin\Debug\net6.0\Modelo.dll
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\bin\Debug\net6.0\Modelo.pdb
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\bin\Debug\net6.0\Entidades.pdb
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\obj\Debug\net6.0\Controladora.csproj.AssemblyReference.cache
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\obj\Debug\net6.0\Controladora.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\obj\Debug\net6.0\Controladora.AssemblyInfoInputs.cache
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\obj\Debug\net6.0\Controladora.AssemblyInfo.cs
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\obj\Debug\net6.0\Controladora.csproj.CoreCompileInputs.cache
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\obj\Debug\net6.0\Controla.1EE7A4DA.Up2Date
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\obj\Debug\net6.0\Controladora.dll
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\obj\Debug\net6.0\refint\Controladora.dll
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\obj\Debug\net6.0\Controladora.pdb
+C:\Users\Nacho\Desktop\ASDDD\Final\Controladora\obj\Debug\net6.0\ref\Controladora.dll
diff --git a/Controladora/obj/Debug/net6.0/Controladora.dll b/Controladora/obj/Debug/net6.0/Controladora.dll
index eedcf14..4e2384e 100644
Binary files a/Controladora/obj/Debug/net6.0/Controladora.dll and b/Controladora/obj/Debug/net6.0/Controladora.dll differ
diff --git a/Controladora/obj/Debug/net6.0/Controladora.pdb b/Controladora/obj/Debug/net6.0/Controladora.pdb
index 5871efc..b6f74b0 100644
Binary files a/Controladora/obj/Debug/net6.0/Controladora.pdb and b/Controladora/obj/Debug/net6.0/Controladora.pdb differ
diff --git a/Controladora/obj/Debug/net6.0/ref/Controladora.dll b/Controladora/obj/Debug/net6.0/ref/Controladora.dll
index 3c94f84..3903fd9 100644
Binary files a/Controladora/obj/Debug/net6.0/ref/Controladora.dll and b/Controladora/obj/Debug/net6.0/ref/Controladora.dll differ
diff --git a/Controladora/obj/Debug/net6.0/refint/Controladora.dll b/Controladora/obj/Debug/net6.0/refint/Controladora.dll
index 3c94f84..3903fd9 100644
Binary files a/Controladora/obj/Debug/net6.0/refint/Controladora.dll and b/Controladora/obj/Debug/net6.0/refint/Controladora.dll differ
diff --git a/Controladora/obj/project.assets.json b/Controladora/obj/project.assets.json
index 171d85f..4fc5d8a 100644
--- a/Controladora/obj/project.assets.json
+++ b/Controladora/obj/project.assets.json
@@ -2,5439 +2,6 @@
"version": 3,
"targets": {
"net6.0": {
- "Emailer/1.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.All": "2.0.7"
- },
- "compile": {
- "lib/netcoreapp2.0/Emailer.dll": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/Emailer.dll": {}
- }
- },
- "Libuv/1.10.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.1"
- },
- "runtimeTargets": {
- "runtimes/linux-arm/native/libuv.so": {
- "assetType": "native",
- "rid": "linux-arm"
- },
- "runtimes/linux-arm64/native/libuv.so": {
- "assetType": "native",
- "rid": "linux-arm64"
- },
- "runtimes/linux-armel/native/libuv.so": {
- "assetType": "native",
- "rid": "linux-armel"
- },
- "runtimes/linux-x64/native/libuv.so": {
- "assetType": "native",
- "rid": "linux-x64"
- },
- "runtimes/osx/native/libuv.dylib": {
- "assetType": "native",
- "rid": "osx"
- },
- "runtimes/win-arm/native/libuv.dll": {
- "assetType": "native",
- "rid": "win-arm"
- },
- "runtimes/win-x64/native/libuv.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x86/native/libuv.dll": {
- "assetType": "native",
- "rid": "win-x86"
- }
- }
- },
- "Microsoft.ApplicationInsights/2.4.0": {
- "type": "package",
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Diagnostics.DiagnosticSource": "4.4.0",
- "System.Diagnostics.StackTrace": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.ApplicationInsights.dll": {
- "related": ".XML"
- }
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.ApplicationInsights.dll": {
- "related": ".XML"
- }
- }
- },
- "Microsoft.ApplicationInsights.AspNetCore/2.1.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.ApplicationInsights": "2.4.0",
- "Microsoft.ApplicationInsights.DependencyCollector": "2.4.1",
- "Microsoft.AspNetCore.Hosting": "1.0.0",
- "Microsoft.Extensions.Configuration": "1.0.0",
- "Microsoft.Extensions.Configuration.Json": "1.0.0",
- "Microsoft.Extensions.DiagnosticAdapter": "1.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
- "NETStandard.Library": "1.6.1",
- "System.Net.NameResolution": "4.3.0",
- "System.Text.Encodings.Web": "4.3.1"
- },
- "compile": {
- "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.ApplicationInsights.DependencyCollector/2.4.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.ApplicationInsights": "[2.4.0]",
- "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
- "NETStandard.Library": "1.6.1",
- "System.Diagnostics.DiagnosticSource": "4.4.0",
- "System.Diagnostics.StackTrace": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.6/Microsoft.AI.DependencyCollector.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/Microsoft.AI.DependencyCollector.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Diagnostics": "2.0.2",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Routing": "2.0.2",
- "Microsoft.AspNetCore.Server.IISIntegration": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Https": "2.0.2",
- "Microsoft.Extensions.Configuration.CommandLine": "2.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.Configuration.UserSecrets": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Logging.Configuration": "2.0.1",
- "Microsoft.Extensions.Logging.Console": "2.0.1",
- "Microsoft.Extensions.Logging.Debug": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.All/2.0.7": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore": "2.0.2",
- "Microsoft.AspNetCore.Antiforgery": "2.0.2",
- "Microsoft.AspNetCore.ApplicationInsights.HostingStartup": "2.0.2",
- "Microsoft.AspNetCore.Authentication": "2.0.3",
- "Microsoft.AspNetCore.Authentication.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Authentication.Cookies": "2.0.3",
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.Authentication.Facebook": "2.0.3",
- "Microsoft.AspNetCore.Authentication.Google": "2.0.3",
- "Microsoft.AspNetCore.Authentication.JwtBearer": "2.0.3",
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "2.0.3",
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3",
- "Microsoft.AspNetCore.Authentication.OpenIdConnect": "2.0.3",
- "Microsoft.AspNetCore.Authentication.Twitter": "2.0.3",
- "Microsoft.AspNetCore.Authorization": "2.0.3",
- "Microsoft.AspNetCore.Authorization.Policy": "2.0.3",
- "Microsoft.AspNetCore.AzureAppServices.HostingStartup": "2.0.2",
- "Microsoft.AspNetCore.AzureAppServicesIntegration": "2.0.2",
- "Microsoft.AspNetCore.CookiePolicy": "2.0.3",
- "Microsoft.AspNetCore.Cors": "2.0.2",
- "Microsoft.AspNetCore.Cryptography.Internal": "2.0.2",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.0.2",
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.DataProtection.AzureStorage": "2.0.2",
- "Microsoft.AspNetCore.DataProtection.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Diagnostics": "2.0.2",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "2.0.2",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Html.Abstractions": "2.0.1",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Http.Features": "2.0.2",
- "Microsoft.AspNetCore.HttpOverrides": "2.0.2",
- "Microsoft.AspNetCore.Identity": "2.0.2",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "2.0.2",
- "Microsoft.AspNetCore.JsonPatch": "2.0.0",
- "Microsoft.AspNetCore.Localization": "2.0.2",
- "Microsoft.AspNetCore.Localization.Routing": "2.0.2",
- "Microsoft.AspNetCore.MiddlewareAnalysis": "2.0.2",
- "Microsoft.AspNetCore.Mvc": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Abstractions": "2.0.3",
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Cors": "2.0.3",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Formatters.Xml": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Localization": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Razor": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation": "2.0.3",
- "Microsoft.AspNetCore.Mvc.RazorPages": "2.0.3",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "2.0.3",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.3",
- "Microsoft.AspNetCore.NodeServices": "2.0.3",
- "Microsoft.AspNetCore.Owin": "2.0.2",
- "Microsoft.AspNetCore.Razor": "2.0.2",
- "Microsoft.AspNetCore.Razor.Language": "2.0.2",
- "Microsoft.AspNetCore.Razor.Runtime": "2.0.2",
- "Microsoft.AspNetCore.ResponseCaching": "2.0.2",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.ResponseCompression": "2.0.2",
- "Microsoft.AspNetCore.Rewrite": "2.0.2",
- "Microsoft.AspNetCore.Routing": "2.0.2",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.HttpSys": "2.0.3",
- "Microsoft.AspNetCore.Server.IISIntegration": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Https": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv": "2.0.2",
- "Microsoft.AspNetCore.Session": "2.0.2",
- "Microsoft.AspNetCore.SpaServices": "2.0.3",
- "Microsoft.AspNetCore.StaticFiles": "2.0.2",
- "Microsoft.AspNetCore.WebSockets": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.CodeAnalysis.Razor": "2.0.2",
- "Microsoft.Data.Sqlite": "2.0.1",
- "Microsoft.Data.Sqlite.Core": "2.0.1",
- "Microsoft.EntityFrameworkCore": "2.0.2",
- "Microsoft.EntityFrameworkCore.Design": "2.0.2",
- "Microsoft.EntityFrameworkCore.InMemory": "2.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2",
- "Microsoft.EntityFrameworkCore.SqlServer": "2.0.2",
- "Microsoft.EntityFrameworkCore.Sqlite": "2.0.2",
- "Microsoft.EntityFrameworkCore.Sqlite.Core": "2.0.2",
- "Microsoft.EntityFrameworkCore.Tools": "2.0.2",
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.Caching.Redis": "2.0.1",
- "Microsoft.Extensions.Caching.SqlServer": "2.0.1",
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.Configuration.AzureKeyVault": "2.0.1",
- "Microsoft.Extensions.Configuration.Binder": "2.0.1",
- "Microsoft.Extensions.Configuration.CommandLine": "2.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Microsoft.Extensions.Configuration.Ini": "2.0.1",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.Configuration.UserSecrets": "2.0.1",
- "Microsoft.Extensions.Configuration.Xml": "2.0.1",
- "Microsoft.Extensions.DependencyInjection": "2.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.DiagnosticAdapter": "2.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.FileProviders.Composite": "2.0.1",
- "Microsoft.Extensions.FileProviders.Embedded": "2.0.1",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1",
- "Microsoft.Extensions.FileSystemGlobbing": "2.0.1",
- "Microsoft.Extensions.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.Identity.Core": "2.0.2",
- "Microsoft.Extensions.Identity.Stores": "2.0.2",
- "Microsoft.Extensions.Localization": "2.0.2",
- "Microsoft.Extensions.Localization.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.AzureAppServices": "2.0.1",
- "Microsoft.Extensions.Logging.Configuration": "2.0.1",
- "Microsoft.Extensions.Logging.Console": "2.0.1",
- "Microsoft.Extensions.Logging.Debug": "2.0.1",
- "Microsoft.Extensions.Logging.EventSource": "2.0.1",
- "Microsoft.Extensions.Logging.TraceSource": "2.0.1",
- "Microsoft.Extensions.ObjectPool": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.1",
- "Microsoft.Extensions.Primitives": "2.0.0",
- "Microsoft.Extensions.WebEncoders": "2.0.1",
- "Microsoft.Net.Http.Headers": "2.0.2",
- "Microsoft.VisualStudio.Web.BrowserLink": "2.0.2"
- },
- "compile": {
- "lib/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- },
- "build": {
- "build/netcoreapp2.0/_._": {}
- }
- },
- "Microsoft.AspNetCore.Antiforgery/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Extensions.ObjectPool": "2.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.ApplicationInsights.HostingStartup/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.ApplicationInsights.AspNetCore": "2.1.1",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Razor.Runtime": "2.0.2",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.DiagnosticAdapter": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Logging.Configuration": "2.0.1"
- },
- "compile": {
- "lib/netcoreapp2.0/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp2.0/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Extensions.WebEncoders": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Cookies/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication": "2.0.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Core/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Facebook/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Google/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.JwtBearer/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication": "2.0.3",
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.1.4"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.OAuth/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication": "2.0.3",
- "Newtonsoft.Json": "10.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3",
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.1.4"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Twitter/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authorization/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Authorization.Policy/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Authorization": "2.0.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.AzureAppServices.HostingStartup/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.AzureAppServicesIntegration": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2"
- },
- "compile": {
- "lib/netcoreapp2.0/Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp2.0/Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.AzureAppServicesIntegration/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.Extensions.Logging.AzureAppServices": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.AzureAppServicesIntegration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.AzureAppServicesIntegration.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.CookiePolicy/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Cors/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Cryptography.Internal/2.0.2": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.DataProtection/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "2.0.2",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Win32.Registry": "4.4.0",
- "System.Security.Cryptography.Xml": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/2.0.2": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.DataProtection.AzureStorage/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "WindowsAzure.Storage": "8.1.4"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.AzureStorage.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.AzureStorage.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.Extensions.DependencyInjection": "2.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Diagnostics/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Reflection.Metadata": "1.5.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/2.0.2": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Hosting/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Microsoft.Extensions.DependencyInjection": "2.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Reflection.Metadata": "1.5.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Html.Abstractions/2.0.1": {
- "type": "package",
- "dependencies": {
- "System.Text.Encodings.Web": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Http/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Extensions.ObjectPool": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Net.Http.Headers": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Abstractions/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.0.2",
- "System.Text.Encodings.Web": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Extensions/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Net.Http.Headers": "2.0.2",
- "System.Buffers": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Features/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.HttpOverrides/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Identity/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "2.0.3",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.Identity.Core": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Identity": "2.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2",
- "Microsoft.Extensions.Identity.Stores": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.JsonPatch/2.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.4.0",
- "Newtonsoft.Json": "10.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Localization/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Localization.Abstractions": "2.0.2",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Localization.Routing/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Localization": "2.0.2",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.MiddlewareAnalysis/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "System.Diagnostics.DiagnosticSource": "4.4.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Cors": "2.0.3",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Localization": "2.0.3",
- "Microsoft.AspNetCore.Mvc.RazorPages": "2.0.3",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "2.0.3",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.3",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.DependencyInjection": "2.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2",
- "Microsoft.Net.Http.Headers": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Core/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.Authorization.Policy": "2.0.3",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Mvc.Abstractions": "2.0.3",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Routing": "2.0.2",
- "Microsoft.Extensions.DependencyModel": "2.0.3",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Cors/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Cors": "2.0.2",
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3",
- "Microsoft.Extensions.Localization": "2.0.2",
- "System.ComponentModel.Annotations": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "2.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Localization/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Localization": "2.0.2",
- "Microsoft.AspNetCore.Mvc.Razor": "2.0.3",
- "Microsoft.Extensions.DependencyInjection": "2.0.0",
- "Microsoft.Extensions.Localization": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Razor/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.3",
- "Microsoft.AspNetCore.Razor.Runtime": "2.0.2",
- "Microsoft.CodeAnalysis.CSharp": "2.3.1",
- "Microsoft.CodeAnalysis.Razor": "2.0.2",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.FileProviders.Composite": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "2.0.2",
- "Microsoft.CodeAnalysis.Razor": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Mvc.RazorPages": "2.0.3"
- },
- "build": {
- "build/netstandard2.0/_._": {}
- }
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "2.0.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "2.0.3",
- "Microsoft.AspNetCore.Razor.Runtime": "2.0.2",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.FileSystemGlobbing": "2.0.1",
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "2.0.2",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Html.Abstractions": "2.0.1",
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.0.3",
- "Microsoft.Extensions.WebEncoders": "2.0.1",
- "Newtonsoft.Json.Bson": "1.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.NodeServices/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Console": "2.0.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Owin/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Razor/2.0.2": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Razor.Language/2.0.2": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Razor.Runtime/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "2.0.1",
- "Microsoft.AspNetCore.Razor": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.ResponseCaching/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.0.2",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.ResponseCompression/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Rewrite/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Routing/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.ObjectPool": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Routing.Abstractions/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Server.HttpSys/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.Net.Http.Headers": "2.0.2",
- "Microsoft.Win32.Registry": "4.4.0",
- "System.Security.Principal.Windows": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Server.IISIntegration/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.HttpOverrides": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Security.Principal.Windows": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Net.Http.Headers": "2.0.2",
- "System.Threading.Tasks.Extensions": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Https/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.0.2",
- "System.Buffers": "4.4.0",
- "System.Numerics.Vectors": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv/2.0.2": {
- "type": "package",
- "dependencies": {
- "Libuv": "1.10.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.Session/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.SpaServices/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.TagHelpers": "2.0.3",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.3",
- "Microsoft.AspNetCore.NodeServices": "2.0.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.StaticFiles/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.WebEncoders": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.AspNetCore.WebSockets/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Numerics.Vectors": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {
- "related": ".xml"
- }
- }
- },
- "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.Azure.KeyVault/2.3.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Azure.KeyVault.WebKey": "2.0.7",
- "Microsoft.Rest.ClientRuntime": "[2.3.8, 3.0.0)",
- "Microsoft.Rest.ClientRuntime.Azure": "[3.3.7, 4.0.0)",
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "9.0.1",
- "System.Net.Http": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.dll": {
- "related": ".runtimeconfig.json;.xml"
- }
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.dll": {
- "related": ".runtimeconfig.json;.xml"
- }
- }
- },
- "Microsoft.Azure.KeyVault.WebKey/2.0.7": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.0.2",
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "9.0.1",
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Linq": "4.1.0",
- "System.Runtime": "4.1.0",
- "System.Security.Cryptography.Algorithms": "4.2.0"
- },
- "compile": {
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.WebKey.dll": {
- "related": ".runtimeconfig.json;.xml"
- }
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.WebKey.dll": {
- "related": ".runtimeconfig.json;.xml"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
- "type": "package"
- },
- "Microsoft.CodeAnalysis.Common/2.3.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
- "System.AppContext": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Collections.Immutable": "1.3.1",
- "System.Console": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.FileVersionInfo": "4.3.0",
- "System.Diagnostics.StackTrace": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Metadata": "1.4.2",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "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.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.CodePages": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Parallel": "4.3.0",
- "System.Threading.Thread": "4.3.0",
- "System.ValueTuple": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0",
- "System.Xml.XPath.XDocument": "4.3.0",
- "System.Xml.XmlDocument": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/2.3.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "[2.3.1]"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.CodeAnalysis.Razor/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "2.0.2",
- "Microsoft.CodeAnalysis.CSharp": "2.3.1",
- "Microsoft.CodeAnalysis.Common": "2.3.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.CSharp/4.4.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "Microsoft.Data.Edm/5.8.2": {
- "type": "package",
- "compile": {
- "lib/netstandard1.1/Microsoft.Data.Edm.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.1/Microsoft.Data.Edm.dll": {
- "related": ".xml"
- }
- },
- "resource": {
- "lib/netstandard1.1/de/Microsoft.Data.Edm.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.1/es/Microsoft.Data.Edm.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.1/fr/Microsoft.Data.Edm.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.1/it/Microsoft.Data.Edm.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.1/ja/Microsoft.Data.Edm.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.1/ko/Microsoft.Data.Edm.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.1/ru/Microsoft.Data.Edm.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.1/zh-Hans/Microsoft.Data.Edm.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.1/zh-Hant/Microsoft.Data.Edm.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Data.OData/5.8.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Data.Edm": "[5.8.2]",
- "System.Spatial": "[5.8.2]"
- },
- "compile": {
- "lib/netstandard1.1/Microsoft.Data.OData.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.1/Microsoft.Data.OData.dll": {
- "related": ".xml"
- }
- },
- "resource": {
- "lib/netstandard1.1/de/Microsoft.Data.OData.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.1/es/Microsoft.Data.OData.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.1/fr/Microsoft.Data.OData.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.1/it/Microsoft.Data.OData.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.1/ja/Microsoft.Data.OData.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.1/ko/Microsoft.Data.OData.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.1/ru/Microsoft.Data.OData.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.1/zh-Hans/Microsoft.Data.OData.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.1/zh-Hant/Microsoft.Data.OData.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Data.Sqlite/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Data.Sqlite.Core": "2.0.1",
- "SQLitePCLRaw.bundle_green": "1.1.7"
- }
- },
- "Microsoft.Data.Sqlite.Core/2.0.1": {
- "type": "package",
- "dependencies": {
- "SQLitePCLRaw.core": "1.1.7"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.DotNet.PlatformAbstractions/2.0.3": {
- "type": "package",
- "dependencies": {
- "System.AppContext": "4.1.0",
- "System.Collections": "4.0.11",
- "System.IO": "4.1.0",
- "System.IO.FileSystem": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.InteropServices": "4.1.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
- }
- },
- "Microsoft.EntityFrameworkCore/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.DependencyInjection": "2.0.0",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Remotion.Linq": "2.1.1",
- "System.Collections.Immutable": "1.4.0",
- "System.ComponentModel.Annotations": "4.4.0",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Interactive.Async": "3.1.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Design/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.InMemory/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.4.0",
- "Microsoft.EntityFrameworkCore": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Sqlite/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Sqlite.Core": "2.0.2",
- "SQLitePCLRaw.bundle_green": "1.1.7"
- }
- },
- "Microsoft.EntityFrameworkCore.Sqlite.Core/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Data.Sqlite.Core": "2.0.1",
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.SqlServer/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2",
- "System.Data.SqlClient": "4.4.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "2.0.2"
- },
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/_._": {}
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Caching.Memory/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Caching.Redis/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "StackExchange.Redis.StrongName": "1.2.4"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Redis.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Redis.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Caching.SqlServer/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Data.SqlClient": "4.4.3"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.AzureKeyVault/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Azure.KeyVault": "2.3.2",
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Microsoft.IdentityModel.Clients.ActiveDirectory": "3.14.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureKeyVault.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureKeyVault.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.CommandLine/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.FileExtensions/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Ini/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Json/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Configuration.UserSecrets/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Json": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/netstandard2.0/_._": {}
- }
- },
- "Microsoft.Extensions.Configuration.Xml/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "System.Security.Cryptography.Xml": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/2.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/2.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.DotNet.PlatformAbstractions": "2.0.3",
- "Newtonsoft.Json": "9.0.1",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Dynamic.Runtime": "4.0.11",
- "System.Linq": "4.1.0"
- },
- "compile": {
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
- }
- },
- "Microsoft.Extensions.DiagnosticAdapter/2.0.1": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.DiagnosticSource": "4.4.1"
- },
- "compile": {
- "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Composite/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Embedded/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Physical/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.FileSystemGlobbing": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.FileSystemGlobbing/2.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/2.0.2": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Identity.Core/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.0.2",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.ComponentModel.Annotations": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Identity.Stores/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Identity.Core": "2.0.2",
- "Microsoft.Extensions.Logging": "2.0.1",
- "System.ComponentModel.Annotations": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Localization/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Localization.Abstractions/2.0.2": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/2.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging.AzureAppServices/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.0.1",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Configuration": "2.0.1",
- "System.ValueTuple": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.AzureAppServices.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.AzureAppServices.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging.Configuration/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging.Console/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging.Debug/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Logging": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging.EventSource/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Logging": "2.0.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Logging.TraceSource/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Logging": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.ObjectPool/2.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Options/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.Configuration.Binder": "2.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
- "type": "package",
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Reflection.TypeExtensions": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.Primitives/2.0.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Extensions.WebEncoders/2.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Text.Encodings.Web": "4.4.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Clients.ActiveDirectory/3.14.1": {
- "type": "package",
- "dependencies": {
- "NETStandard.Library": "1.6.0",
- "System.Runtime.Serialization.Json": "4.0.2",
- "System.Runtime.Serialization.Primitives": "4.1.1"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll": {
- "related": ".pdb"
- },
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll": {
- "related": ".pdb;.Platform.pdb;.xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll": {
- "related": ".pdb"
- },
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll": {
- "related": ".pdb;.Platform.pdb;.xml"
- }
- }
- },
- "Microsoft.IdentityModel.Logging/1.1.4": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols/2.1.4": {
- "type": "package",
- "dependencies": {
- "System.Collections.Specialized": "4.3.0",
- "System.Diagnostics.Contracts": "4.3.0",
- "System.IdentityModel.Tokens.Jwt": "5.1.4",
- "System.Net.Http": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.1.4": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Protocols": "2.1.4",
- "System.Dynamic.Runtime": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Tokens/5.1.4": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Logging": "1.1.4",
- "Newtonsoft.Json": "9.0.1",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Security.Claims": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.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/2.0.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.Rest.ClientRuntime/2.3.8": {
- "type": "package",
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "9.0.1"
- },
- "compile": {
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.dll": {
- "related": ".runtimeconfig.json;.xml"
- }
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.dll": {
- "related": ".runtimeconfig.json;.xml"
- }
- }
- },
- "Microsoft.Rest.ClientRuntime.Azure/3.3.7": {
- "type": "package",
- "dependencies": {
- "Microsoft.Rest.ClientRuntime": "[2.3.8, 3.0.0)",
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "9.0.1"
- },
- "compile": {
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.Azure.dll": {
- "related": ".runtimeconfig.json;.xml"
- }
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.Azure.dll": {
- "related": ".runtimeconfig.json;.xml"
- }
- }
- },
- "Microsoft.VisualStudio.Web.BrowserLink/2.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.VisualStudio.Web.BrowserLink.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.VisualStudio.Web.BrowserLink.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Win32.Registry/4.4.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Security.AccessControl": "4.4.0",
- "System.Security.Principal.Windows": "4.4.0"
- },
- "compile": {
- "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "NETStandard.Library/1.6.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.AppContext": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Console": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.Compression.ZipFile": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Net.Http": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Net.Sockets": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Timer": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0"
- }
- },
- "Newtonsoft.Json/10.0.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.3.0",
- "System.Collections": "4.3.0",
- "System.ComponentModel.TypeConverter": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Runtime.Serialization.Formatters": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0",
- "System.Xml.XmlDocument": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.3/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- }
- },
- "Newtonsoft.Json.Bson/1.0.1": {
- "type": "package",
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "compile": {
- "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
- "related": ".xml"
- }
- }
- },
- "Remotion.Linq/2.1.1": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Linq.Queryable": "4.0.1",
- "System.ObjectModel": "4.0.12",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11"
- },
- "compile": {
- "lib/netstandard1.0/Remotion.Linq.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.0/Remotion.Linq.dll": {
- "related": ".xml"
- }
- }
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "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.0": {
- "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.0": {
- "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.4.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.IO.Compression/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Net.Security/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.0": {
- "type": "package",
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "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.0": {
- "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.0": {
- "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.0": {
- "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.0": {
- "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.0": {
- "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.0": {
- "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"
- }
- }
- },
- "SQLitePCLRaw.bundle_green/1.1.7": {
- "type": "package",
- "dependencies": {
- "SQLitePCLRaw.core": "1.1.7",
- "SQLitePCLRaw.lib.e_sqlite3.linux": "1.1.7",
- "SQLitePCLRaw.lib.e_sqlite3.osx": "1.1.7",
- "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.7",
- "SQLitePCLRaw.provider.e_sqlite3.netstandard11": "1.1.7"
- },
- "compile": {
- "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {},
- "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {}
- },
- "runtime": {
- "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {},
- "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {}
- }
- },
- "SQLitePCLRaw.core/1.1.7": {
- "type": "package",
- "dependencies": {
- "NETStandard.Library": "1.6.0"
- },
- "compile": {
- "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
- },
- "runtime": {
- "lib/netstandard1.1/SQLitePCLRaw.core.dll": {}
- }
- },
- "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.7": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/linux-x64/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-x64"
- },
- "runtimes/linux-x86/native/libe_sqlite3.so": {
- "assetType": "native",
- "rid": "linux-x86"
- }
- }
- },
- "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.7": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/osx-x64/native/libe_sqlite3.dylib": {
- "assetType": "native",
- "rid": "osx-x64"
- }
- }
- },
- "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.7": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/_._": {}
- },
- "runtime": {
- "lib/netstandard2.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win7-x64/native/e_sqlite3.dll": {
- "assetType": "native",
- "rid": "win7-x64"
- },
- "runtimes/win7-x86/native/e_sqlite3.dll": {
- "assetType": "native",
- "rid": "win7-x86"
- }
- }
- },
- "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.7": {
- "type": "package",
- "dependencies": {
- "NETStandard.Library": "1.6.0",
- "SQLitePCLRaw.core": "1.1.7"
- },
- "compile": {
- "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {}
- },
- "runtime": {
- "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {}
- }
- },
- "StackExchange.Redis.StrongName/1.2.4": {
- "type": "package",
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Collections.NonGeneric": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Net.NameResolution": "4.3.0",
- "System.Net.Security": "4.3.0",
- "System.Net.Sockets": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Thread": "4.3.0",
- "System.Threading.ThreadPool": "4.3.0",
- "System.Threading.Timer": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.5/StackExchange.Redis.StrongName.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.5/StackExchange.Redis.StrongName.dll": {
- "related": ".xml"
- }
- }
- },
- "System.AppContext/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.AppContext.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/System.AppContext.dll": {}
- }
- },
- "System.Buffers/4.4.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.Concurrent.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
- }
- },
- "System.Collections.Immutable/1.4.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.Collections.NonGeneric/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.NonGeneric.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
- }
- },
- "System.Collections.Specialized/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections.NonGeneric": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Collections.Specialized.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Specialized.dll": {}
- }
- },
- "System.ComponentModel/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.ComponentModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.ComponentModel.dll": {}
- }
- },
- "System.ComponentModel.Annotations/4.4.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.ComponentModel.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.ComponentModel": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
- }
- },
- "System.ComponentModel.TypeConverter/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.NonGeneric": "4.3.0",
- "System.Collections.Specialized": "4.3.0",
- "System.ComponentModel": "4.3.0",
- "System.ComponentModel.Primitives": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
- }
- },
- "System.Console/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Console.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Data.SqlClient/4.4.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Win32.Registry": "4.4.0",
- "System.Security.Principal.Windows": "4.4.0",
- "System.Text.Encoding.CodePages": "4.4.0",
- "runtime.native.System.Data.SqlClient.sni": "4.4.0"
- },
- "compile": {
- "ref/netstandard2.0/System.Data.SqlClient.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Data.SqlClient.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Diagnostics.Contracts/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Diagnostics.Contracts.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Diagnostics.DiagnosticSource/4.4.1": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.Diagnostics.FileVersionInfo/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Reflection.Metadata": "1.4.1",
- "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.Diagnostics.FileVersionInfo.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Diagnostics.StackTrace/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.IO.FileSystem": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Metadata": "1.4.1",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Diagnostics.StackTrace.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
- }
- },
- "System.Diagnostics.Tools/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Dynamic.Runtime/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
- }
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Globalization.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Globalization.Calendars.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.IdentityModel.Tokens.Jwt/5.1.4": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Tokens": "5.1.4"
- },
- "compile": {
- "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Interactive.Async/3.1.1": {
- "type": "package",
- "dependencies": {
- "NETStandard.Library": "1.6.0"
- },
- "compile": {
- "lib/netstandard1.3/System.Interactive.Async.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Interactive.Async.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.IO.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.Compression/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Buffers": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.IO.Compression": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.IO.Compression.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Buffers": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
- }
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.IO.FileSystem.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
- }
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {}
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.Expressions.dll": {}
- }
- },
- "System.Linq.Queryable/4.0.1": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Linq": "4.1.0",
- "System.Linq.Expressions": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Extensions": "4.0.1",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Linq.Queryable.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Linq.Queryable.dll": {}
- }
- },
- "System.Net.Http/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "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.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Http.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.NameResolution/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Principal.Windows": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.NameResolution.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Net.Security/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "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.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.Claims": "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.Security.Principal": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.ThreadPool": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Security": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Security.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.Sockets/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Sockets.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Numerics.Vectors/4.4.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.ObjectModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.ObjectModel.dll": {}
- }
- },
- "System.Private.DataContractSerialization/4.1.1": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Collections.Concurrent": "4.0.12",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Emit.Lightweight": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Runtime.Serialization.Primitives": "4.1.1",
- "System.Text.Encoding": "4.0.11",
- "System.Text.Encoding.Extensions": "4.0.11",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XmlDocument": "4.0.1",
- "System.Xml.XmlSerializer": "4.0.11"
- },
- "compile": {
- "ref/netstandard/_._": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
- }
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/System.Reflection.Emit.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.dll": {}
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Extensions.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Metadata/1.5.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime/4.3.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.CompilerServices.Unsafe/4.4.0": {
- "type": "package",
- "compile": {
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.Extensions.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Runtime.Handles.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
- }
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
- },
- "runtime": {
- "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/System.Runtime.Numerics.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
- }
- },
- "System.Runtime.Serialization.Formatters/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll": {}
- },
- "runtime": {
- "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
- }
- },
- "System.Runtime.Serialization.Json/4.0.2": {
- "type": "package",
- "dependencies": {
- "System.IO": "4.1.0",
- "System.Private.DataContractSerialization": "4.1.1",
- "System.Runtime": "4.1.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Runtime.Serialization.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {}
- }
- },
- "System.Runtime.Serialization.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
- }
- },
- "System.Security.AccessControl/4.4.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Security.Principal.Windows": "4.4.0"
- },
- "compile": {
- "ref/netstandard2.0/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Security.AccessControl.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Claims/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "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.Runtime.Extensions": "4.3.0",
- "System.Security.Principal": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Claims.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Claims.dll": {}
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
- },
- "runtimeTargets": {
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "osx"
- },
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.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.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"
- },
- "compile": {
- "ref/netstandard1.6/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/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.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.X509Certificates/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Cng": "4.3.0",
- "System.Security.Cryptography.Csp": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Xml/4.4.0": {
- "type": "package",
- "compile": {
- "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {}
- }
- },
- "System.Security.Principal/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Security.Principal.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.0/System.Security.Principal.dll": {}
- }
- },
- "System.Security.Principal.Windows/4.4.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0"
- },
- "compile": {
- "ref/netstandard2.0/System.Security.Principal.Windows.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Spatial/5.8.2": {
- "type": "package",
- "compile": {
- "lib/netstandard1.1/System.Spatial.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.1/System.Spatial.dll": {
- "related": ".xml"
- }
- },
- "resource": {
- "lib/netstandard1.1/de/System.Spatial.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.1/es/System.Spatial.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.1/fr/System.Spatial.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.1/it/System.Spatial.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.1/ja/System.Spatial.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.1/ko/System.Spatial.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.1/ru/System.Spatial.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.1/zh-Hans/System.Spatial.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.1/zh-Hant/System.Spatial.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Text.Encoding.CodePages/4.4.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0"
- },
- "compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Text.Encodings.Web/4.4.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Text.RegularExpressions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
- }
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {}
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Threading.Tasks.Extensions/4.4.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.Threading.Tasks.Parallel/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections.Concurrent": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "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.1/System.Threading.Tasks.Parallel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
- }
- },
- "System.Threading.Thread/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Thread.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.Thread.dll": {}
- }
- },
- "System.Threading.ThreadPool/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
- }
- },
- "System.Threading.Timer/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.2/System.Threading.Timer.dll": {
- "related": ".xml"
- }
- }
- },
- "System.ValueTuple/4.4.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
- }
- },
- "System.Xml.XDocument/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Xml.XDocument.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XDocument.dll": {}
- }
- },
- "System.Xml.XmlDocument/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
- }
- },
- "System.Xml.XmlSerializer/4.0.11": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Globalization": "4.0.11",
- "System.IO": "4.1.0",
- "System.Linq": "4.1.0",
- "System.Reflection": "4.1.0",
- "System.Reflection.Emit": "4.0.1",
- "System.Reflection.Emit.ILGeneration": "4.0.1",
- "System.Reflection.Extensions": "4.0.1",
- "System.Reflection.Primitives": "4.0.1",
- "System.Reflection.TypeExtensions": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Text.RegularExpressions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Xml.ReaderWriter": "4.0.11",
- "System.Xml.XmlDocument": "4.0.1"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {}
- }
- },
- "System.Xml.XPath/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XPath.dll": {}
- }
- },
- "System.Xml.XPath.XDocument/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "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.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0",
- "System.Xml.XPath": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {}
- }
- },
- "webhookSharp/1.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/webhook#.dll": {}
- },
- "runtime": {
- "lib/net6.0/webhook#.dll": {}
- }
- },
- "WindowsAzure.Storage/8.1.4": {
- "type": "package",
- "dependencies": {
- "Microsoft.Data.OData": "5.8.2",
- "NETStandard.Library": "1.6.0",
- "Newtonsoft.Json": "9.0.1",
- "System.Spatial": "5.8.2"
- },
- "compile": {
- "lib/netstandard1.3/Microsoft.WindowsAzure.Storage.dll": {
- "related": ".pdb"
- }
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.WindowsAzure.Storage.dll": {
- "related": ".pdb"
- }
- }
- },
"Entidades/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
@@ -5461,7995 +28,6 @@
}
},
"libraries": {
- "Emailer/1.0.0": {
- "sha512": "MKz/p7Nq4omeANwvqEm0RJRX2VRTkFwn0dmGHkxt5/TeWilN/rBEUMiGTX2ySHqh/QbQviPXnwfZQFaTK6JbGA==",
- "type": "package",
- "path": "emailer/1.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "emailer.1.0.0.nupkg.sha512",
- "emailer.nuspec",
- "lib/netcoreapp2.0/Emailer.dll"
- ]
- },
- "Libuv/1.10.0": {
- "sha512": "GsCf4q+eyaI49rCPlgYxdxa1SQCysXFFdSJWdstrwxytg4+VPYLYrXD4AT2rjHVJ+UF7SSWX9CapWEYaU4ejVQ==",
- "type": "package",
- "path": "libuv/1.10.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "License.txt",
- "libuv.1.10.0.nupkg.sha512",
- "libuv.nuspec",
- "runtimes/linux-arm/native/libuv.so",
- "runtimes/linux-arm64/native/libuv.so",
- "runtimes/linux-armel/native/libuv.so",
- "runtimes/linux-x64/native/libuv.so",
- "runtimes/osx/native/libuv.dylib",
- "runtimes/win-arm/native/libuv.dll",
- "runtimes/win-x64/native/libuv.dll",
- "runtimes/win-x86/native/libuv.dll"
- ]
- },
- "Microsoft.ApplicationInsights/2.4.0": {
- "sha512": "4dX/zu3Psz9oM3ErU64xfOHuSxOwMxN6q5RabSkeYbX42Yn6dR/kDToqjs+txCRjrfHUxyYjfeJHu+MbCfvAsg==",
- "type": "package",
- "path": "microsoft.applicationinsights/2.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net40/Microsoft.ApplicationInsights.XML",
- "lib/net40/Microsoft.ApplicationInsights.dll",
- "lib/net45/Microsoft.ApplicationInsights.XML",
- "lib/net45/Microsoft.ApplicationInsights.dll",
- "lib/net46/Microsoft.ApplicationInsights.XML",
- "lib/net46/Microsoft.ApplicationInsights.dll",
- "lib/netstandard1.3/Microsoft.ApplicationInsights.XML",
- "lib/netstandard1.3/Microsoft.ApplicationInsights.dll",
- "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll",
- "lib/uap10.0/Microsoft.ApplicationInsights.dll",
- "lib/wp8/Microsoft.ApplicationInsights.dll",
- "microsoft.applicationinsights.2.4.0.nupkg.sha512",
- "microsoft.applicationinsights.nuspec"
- ]
- },
- "Microsoft.ApplicationInsights.AspNetCore/2.1.1": {
- "sha512": "kiGmzl9Cav34dF7AHVMoJxdJJQEeLB8KZGNwX1LjImG9iem5hGk4DkHpW7/m9Nh3DrL8IKSL3mqQo+IPqWfMRQ==",
- "type": "package",
- "path": "microsoft.applicationinsights.aspnetcore/2.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net451/Microsoft.ApplicationInsights.AspNetCore.dll",
- "lib/net451/Microsoft.ApplicationInsights.AspNetCore.xml",
- "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll",
- "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.xml",
- "microsoft.applicationinsights.aspnetcore.2.1.1.nupkg.sha512",
- "microsoft.applicationinsights.aspnetcore.nuspec"
- ]
- },
- "Microsoft.ApplicationInsights.DependencyCollector/2.4.1": {
- "sha512": "RWxdX90MY6tNF8S5lwRvJcHiBMIWwVLCxd4TGIEl3X0yAKaolY2vs4zTCvyCIVkEAMs1aInTgWkYwOjzYvAHWw==",
- "type": "package",
- "path": "microsoft.applicationinsights.dependencycollector/2.4.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "content/ApplicationInsights.config.install.xdt",
- "content/ApplicationInsights.config.transform",
- "content/ApplicationInsights.config.uninstall.xdt",
- "lib/net40/Microsoft.AI.DependencyCollector.XML",
- "lib/net40/Microsoft.AI.DependencyCollector.dll",
- "lib/net45/Microsoft.AI.DependencyCollector.XML",
- "lib/net45/Microsoft.AI.DependencyCollector.dll",
- "lib/netstandard1.6/Microsoft.AI.DependencyCollector.dll",
- "lib/netstandard1.6/Microsoft.AI.DependencyCollector.xml",
- "microsoft.applicationinsights.dependencycollector.2.4.1.nupkg.sha512",
- "microsoft.applicationinsights.dependencycollector.nuspec"
- ]
- },
- "Microsoft.AspNetCore/2.0.2": {
- "sha512": "M1kweIFWsyqHnY4W8Jqwz/tuVKF7Ff1mokn9+jpMs+S8m1wlGKeqmy9ovNF1rJoSTnF97cb4Wn0JoTA84bCYSQ==",
- "type": "package",
- "path": "microsoft.aspnetcore/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.xml",
- "microsoft.aspnetcore.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.nuspec"
- ]
- },
- "Microsoft.AspNetCore.All/2.0.7": {
- "sha512": "hpWBRgs094P0jBWJRqBV+8oXl6G+O5ixDAgXI5qouOsg2jlLOmYr1+95+lRbLSn31HhKbQdNel6VQSDUbm0juw==",
- "type": "package",
- "path": "microsoft.aspnetcore.all/2.0.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "build/PublishWithAspNetCoreTargetManifest.targets",
- "build/aspnetcore-store-2.0.0-common.xml",
- "build/aspnetcore-store-2.0.0-linux-x64.xml",
- "build/aspnetcore-store-2.0.0-osx-x64.xml",
- "build/aspnetcore-store-2.0.0-win7-x64.xml",
- "build/aspnetcore-store-2.0.0-win7-x86.xml",
- "build/aspnetcore-store-2.0.3.xml",
- "build/aspnetcore-store-2.0.5.xml",
- "build/aspnetcore-store-2.0.6.xml",
- "build/aspnetcore-store-2.0.7.xml",
- "build/netcoreapp2.0/Microsoft.AspNetCore.All.targets",
- "lib/netcoreapp2.0/_._",
- "microsoft.aspnetcore.all.2.0.7.nupkg.sha512",
- "microsoft.aspnetcore.all.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Antiforgery/2.0.2": {
- "sha512": "182axAPHGthEbxE9/JSTuFUr5KS8O4a4kPoTp4GaqHjXYp8ddZ3y69XDJCqavvZb+7ziMnWI9ONoBo6QRW41OA==",
- "type": "package",
- "path": "microsoft.aspnetcore.antiforgery/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.xml",
- "microsoft.aspnetcore.antiforgery.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.antiforgery.nuspec"
- ]
- },
- "Microsoft.AspNetCore.ApplicationInsights.HostingStartup/2.0.2": {
- "sha512": "w861s7DkUmgjg1Jhviw49m6FJg+rk0lXWUtfphVainBsGfO2O5d6su8dwmUGg3mcyqax9nceWQMekVxVVS1+mA==",
- "type": "package",
- "path": "microsoft.aspnetcore.applicationinsights.hostingstartup/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net461/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll",
- "lib/net461/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.xml",
- "lib/netcoreapp2.0/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll",
- "lib/netcoreapp2.0/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.xml",
- "microsoft.aspnetcore.applicationinsights.hostingstartup.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.applicationinsights.hostingstartup.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authentication/2.0.3": {
- "sha512": "11a6DvTSur4T62bf/l0nb1uS0h0vXfOiAMCwDYqFuR1Pkox8v9eiTgduyxDppmEQuAh3TboPhYY3TzufEAFK3Q==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.xml",
- "microsoft.aspnetcore.authentication.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.authentication.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/2.0.2": {
- "sha512": "12+IIkf+5eM/fNch3k+nj8nzIeaQYBF87TxZZ3Uf42wPoMuGzc8nMx8fMQDyqKtzJJ+9WCnH7N9N8ekTz9F7xg==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication.abstractions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml",
- "microsoft.aspnetcore.authentication.abstractions.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.authentication.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authentication.Cookies/2.0.3": {
- "sha512": "JZt3k5rkAysYTShTRuYCaLXOT6o8BdSs1BmBbUDI/fLXHeRe3rPr3dNTAYjrvVjcfOLHqXcQTJCRiheZmIL2Jw==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication.cookies/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.xml",
- "microsoft.aspnetcore.authentication.cookies.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.authentication.cookies.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authentication.Core/2.0.2": {
- "sha512": "qA2YEcpU02rBZvtOaZk4RPIBqneGAzkS0dBQXcHk31cvf5bbzj+FHENmTKgsXDADyKVR0U1+7kS+bc44JxGCVA==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication.core/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml",
- "microsoft.aspnetcore.authentication.core.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.authentication.core.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authentication.Facebook/2.0.3": {
- "sha512": "+WGDlg9GRhT6GoHp2U+xXFvknBCj9beFvgqwUlFe6It8Sygaq9san/W3UQkQGP/HECn/eijrZK17rIQQvj2cYg==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication.facebook/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.xml",
- "microsoft.aspnetcore.authentication.facebook.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.authentication.facebook.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authentication.Google/2.0.3": {
- "sha512": "Dquas27vl4wvVHjgPFqlg9/Sczg+pxP0MqNOgV7LR1JfLxaasULciKxEQV2vOMqFTxjdqMi10WbSYWKYQyiKVw==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication.google/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.xml",
- "microsoft.aspnetcore.authentication.google.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.authentication.google.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authentication.JwtBearer/2.0.3": {
- "sha512": "AwYc5nGOWkpUHRd5JI3ummWJTciuvjskL7zIfgGgFwhaK3l8ZeDTHpHyTXW+Zjn69Cq+FRSLNiuEkAWQVJ8APQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication.jwtbearer/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
- "microsoft.aspnetcore.authentication.jwtbearer.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.0.3": {
- "sha512": "op1Xhi/4voQnCPsTf9ABQ+EaGV+6lAQOiLnEY3swIWq+v0ywg0Ze1vfmBjyktb4NIQgB5mO/eSSUOPoqFrXU5w==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication.microsoftaccount/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.xml",
- "microsoft.aspnetcore.authentication.microsoftaccount.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.authentication.microsoftaccount.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authentication.OAuth/2.0.3": {
- "sha512": "cuQYTKA/u5/uY5Wxu8OyLRUAt3U7kGyBmHwHvWz83vseBsnvso+qp+KX9syr/5PfkEvzub1RCvctB2NCRz5vNQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication.oauth/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.xml",
- "microsoft.aspnetcore.authentication.oauth.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.authentication.oauth.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.0.3": {
- "sha512": "2gRCExy0c2jrrsbwbjEeqK3o0ZEaVOxl8u9X+43GbWG3UDh4Zt8agGu+PhMxUO05j4Z2u5RBZVYHIGoZnuniMA==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication.openidconnect/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.xml",
- "microsoft.aspnetcore.authentication.openidconnect.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.authentication.openidconnect.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authentication.Twitter/2.0.3": {
- "sha512": "CrlYxaEclxWy9jsndqKy21jyQk1QpnxaFZyn9Mw7/05BivAbEpLQ5pljFhqRHpQoaafWm96gKQXEWirftnh8kA==",
- "type": "package",
- "path": "microsoft.aspnetcore.authentication.twitter/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.xml",
- "microsoft.aspnetcore.authentication.twitter.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.authentication.twitter.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authorization/2.0.3": {
- "sha512": "IUiI+cAzkcvkHtdoXuArk+RFQVmORyBC234T+kXuOCzsxCazMmEscX7ZvQua7JYbw5f7WgeG7iXhsBdoLUC2jQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.authorization/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
- "microsoft.aspnetcore.authorization.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.authorization.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Authorization.Policy/2.0.3": {
- "sha512": "DTNCn50Hhbkt6XsQ9huZYgj2NIw20i7UeJZQ5jCrwFUrUIRlOhV2y5X2JQ8v1QEkpod+/3OjuWRb4tXWQC6t1g==",
- "type": "package",
- "path": "microsoft.aspnetcore.authorization.policy/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml",
- "microsoft.aspnetcore.authorization.policy.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.authorization.policy.nuspec"
- ]
- },
- "Microsoft.AspNetCore.AzureAppServices.HostingStartup/2.0.2": {
- "sha512": "LgcCPhxGp3+YQMDSLwMXNA1l0drIHpbyV3XFCs1Apmc9eRHYD8SOF+J+IlFWk6fPFgEEOMC0Yw2eXGlv4fGC/w==",
- "type": "package",
- "path": "microsoft.aspnetcore.azureappservices.hostingstartup/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net461/Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll",
- "lib/net461/Microsoft.AspNetCore.AzureAppServices.HostingStartup.xml",
- "lib/netcoreapp2.0/Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll",
- "lib/netcoreapp2.0/Microsoft.AspNetCore.AzureAppServices.HostingStartup.xml",
- "microsoft.aspnetcore.azureappservices.hostingstartup.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.azureappservices.hostingstartup.nuspec"
- ]
- },
- "Microsoft.AspNetCore.AzureAppServicesIntegration/2.0.2": {
- "sha512": "N/wffLaVJWORJjze62bKmpUh5JYSp1lTf6laxaxLHkH9INvklnDJ4rmSS1guSPbPQLmkWmBrBzlFR/NMDGAdqg==",
- "type": "package",
- "path": "microsoft.aspnetcore.azureappservicesintegration/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.AzureAppServicesIntegration.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.AzureAppServicesIntegration.xml",
- "microsoft.aspnetcore.azureappservicesintegration.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.azureappservicesintegration.nuspec"
- ]
- },
- "Microsoft.AspNetCore.CookiePolicy/2.0.3": {
- "sha512": "d9DS8W5yEFyPmbIczkoe4sS6MgmOJkKX4T9gLecFhNuwhMk3B1vicdKzzALPAuuEOzf9EoejY+uDWr1eHy81tA==",
- "type": "package",
- "path": "microsoft.aspnetcore.cookiepolicy/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.xml",
- "microsoft.aspnetcore.cookiepolicy.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.cookiepolicy.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Cors/2.0.2": {
- "sha512": "+mmN69VlbJL4q82C5wKCMdSnxjk4VfcCysDcLIXmNYloI9PY1VqOcHD1A3E6EaPB0ncEb4J+Fg71XO6HToIl7w==",
- "type": "package",
- "path": "microsoft.aspnetcore.cors/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Cors.xml",
- "microsoft.aspnetcore.cors.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.cors.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Cryptography.Internal/2.0.2": {
- "sha512": "pCJyY7vC6YWY94ssKcgGzVFGsK/bk7RVEH/BxwHmc+T3t5VmXlBq7VvUmhLfk+P5Uc1l0hDIJX0ZJRLy9Sz1jg==",
- "type": "package",
- "path": "microsoft.aspnetcore.cryptography.internal/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
- "microsoft.aspnetcore.cryptography.internal.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.cryptography.internal.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.0.2": {
- "sha512": "JblI3dWCRga40Y6PFUNsdGMAgmMu7Igb9sAtcG3nY8O2tvfuqwkpzGao8KE081KBndGGBcLUD4iWDkoMoGOQVQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.cryptography.keyderivation/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
- "microsoft.aspnetcore.cryptography.keyderivation.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
- ]
- },
- "Microsoft.AspNetCore.DataProtection/2.0.2": {
- "sha512": "BXVpydukX6AjcnELAZHtTNexSdGLwJ21suskAtDgQshDz/mfySm0Z/voNzQyPFF6SMzDf7iXnXpEBMZchL18Rg==",
- "type": "package",
- "path": "microsoft.aspnetcore.dataprotection/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml",
- "microsoft.aspnetcore.dataprotection.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.dataprotection.nuspec"
- ]
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/2.0.2": {
- "sha512": "Q4eEkEE527CR1qzfyVeTGDVL3mss2D0VKSMWJCwhzxVmSDFy3zyXaJfCDu39GnExAVM9gLKzkoU6KoJGu3vyAg==",
- "type": "package",
- "path": "microsoft.aspnetcore.dataprotection.abstractions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
- "microsoft.aspnetcore.dataprotection.abstractions.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.dataprotection.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.DataProtection.AzureStorage/2.0.2": {
- "sha512": "ax6WM99Eyne3GkaKx4LyBT0umSIVChUirI3toLl+Xn2FpwX9ci3aq8yjsRQS1gZ/GBHLwvCjYndzmwo4MO58Ag==",
- "type": "package",
- "path": "microsoft.aspnetcore.dataprotection.azurestorage/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.AzureStorage.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.AzureStorage.xml",
- "microsoft.aspnetcore.dataprotection.azurestorage.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.dataprotection.azurestorage.nuspec"
- ]
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/2.0.2": {
- "sha512": "hHHlz9zhKkbz8S+wc9cxkhYrKbtvRugoSxpPuOnS8dL/KgNYWWhv0EW2LUdzPXkUIoJDAWpvWdmt28tTT/fBQg==",
- "type": "package",
- "path": "microsoft.aspnetcore.dataprotection.extensions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.xml",
- "microsoft.aspnetcore.dataprotection.extensions.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.dataprotection.extensions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Diagnostics/2.0.2": {
- "sha512": "fAsBgV/202K4ZMB3eFLWAXYRqUz4uf9CR9MwpNYJhMhO+yHxNPGDFBatsiKUVxG4oeMdhFXzYwUbUSaWUYU/7Q==",
- "type": "package",
- "path": "microsoft.aspnetcore.diagnostics/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.xml",
- "microsoft.aspnetcore.diagnostics.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.diagnostics.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/2.0.2": {
- "sha512": "4Zb2/cIFGfyHhPMr1tg1Tyuur4PK9Nr5uKnRLxHPJJh1OuAwEAZtUsPHcUa6HHNoA5tZhUFonHJwiFTy9+ZLLA==",
- "type": "package",
- "path": "microsoft.aspnetcore.diagnostics.abstractions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml",
- "microsoft.aspnetcore.diagnostics.abstractions.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.diagnostics.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.0.2": {
- "sha512": "fwQvTUIMWXSChZszqBj8005USTlRCUsC0JLprK6EuQJIggbZZfGoyZTv2DLrXJgKSbCWntt2XKXRgfi/VkPwRA==",
- "type": "package",
- "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.xml",
- "microsoft.aspnetcore.diagnostics.entityframeworkcore.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.diagnostics.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Hosting/2.0.2": {
- "sha512": "qKV9PnsiVC2J1ws1DPoQ1fX3bowLTK2WjXPXpItgKVbuuLSWM1ECoObX2fOkQt6FKt4vJ9i4j/hktFavxova1Q==",
- "type": "package",
- "path": "microsoft.aspnetcore.hosting/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.xml",
- "microsoft.aspnetcore.hosting.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.hosting.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/2.0.2": {
- "sha512": "358NTTCWJWpDKno3S85BU0hjxWQ8EzsyjZ5OSMi2XpQ9SrYwzTq6tlXSpVS3cV2RJ2Jx9lXc8uSXFwrOVyUieQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.hosting.abstractions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
- "microsoft.aspnetcore.hosting.abstractions.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.hosting.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.0.2": {
- "sha512": "tvz7D661JTyJXRxWLqOSH0s1zF9bLviZd14aA8poR+srvldS0gg1j62e7SaM5LQrUn+Z4dPwJqBtLXZDj5PtYw==",
- "type": "package",
- "path": "microsoft.aspnetcore.hosting.server.abstractions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
- "microsoft.aspnetcore.hosting.server.abstractions.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Html.Abstractions/2.0.1": {
- "sha512": "l72nlZuVphJbMvmt2k+2s8A6QlfjhYiINPtMVKvD752UzIc/vAmvFUuARjUcCRGqFV/q+r+xkQEyPzLW3xu81Q==",
- "type": "package",
- "path": "microsoft.aspnetcore.html.abstractions/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml",
- "microsoft.aspnetcore.html.abstractions.2.0.1.nupkg.sha512",
- "microsoft.aspnetcore.html.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Http/2.0.2": {
- "sha512": "oVmQJvA1dHr96VcJVyUYEPcQH+FHSJSEu52Fq6aB7rmpjtyxlcFzyvRNumD4J1QJjlhE/V8jF10lY2hH0J6h4w==",
- "type": "package",
- "path": "microsoft.aspnetcore.http/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
- "microsoft.aspnetcore.http.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.http.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Http.Abstractions/2.0.2": {
- "sha512": "yQM9JzPAExsxTqvJBBr3yC+6XyOETi2T/eOOBjrOOnYgQOO+7M7J8VvAW0wQID9zh7QqWO6kh3BGCT/aqvydtg==",
- "type": "package",
- "path": "microsoft.aspnetcore.http.abstractions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
- "microsoft.aspnetcore.http.abstractions.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.http.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Http.Extensions/2.0.2": {
- "sha512": "z9uJ6w3BnhjWZZW+i5rVCqKIVLmngLP1AutfOJXJKtXKjAOBqWSTBgySGROqzWkPuDXot1dHVP7NAMnhtloIiQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.http.extensions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml",
- "microsoft.aspnetcore.http.extensions.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.http.extensions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Http.Features/2.0.2": {
- "sha512": "1U5fPSOtIq+cPuqJTjN+EFN3dWn4ptSjybd8minSbyhy0oXr8ujYla86kb9kM3rddUBgrGCyTp/hf0/tMZab+g==",
- "type": "package",
- "path": "microsoft.aspnetcore.http.features/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
- "microsoft.aspnetcore.http.features.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.http.features.nuspec"
- ]
- },
- "Microsoft.AspNetCore.HttpOverrides/2.0.2": {
- "sha512": "hZPYYSnG17A+fFws1R5eQBmzF/9zewVlsBk/XeXTQ8fmjY8fUaOyBQGrs3OWKRXtRt3D1VetJ+ngZFl3a5YS9g==",
- "type": "package",
- "path": "microsoft.aspnetcore.httpoverrides/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.xml",
- "microsoft.aspnetcore.httpoverrides.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.httpoverrides.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Identity/2.0.2": {
- "sha512": "12Ky01ytqyiWnOeQsarkSTrTGMMxxexzTgJ7zm08iiEquaiBzBTMKmi/5rBH8CyFcMQx3kLqnNzrglq0DYHzpg==",
- "type": "package",
- "path": "microsoft.aspnetcore.identity/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Identity.xml",
- "microsoft.aspnetcore.identity.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.identity.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.0.2": {
- "sha512": "QSPJenMEmjZmKnZ+ZJvMudhzHISHbEm2LarScz6AHZwgoRY0j+ZdKTVLtN+tAaFeJ2AXCxRVkeBAouLHFyHSAw==",
- "type": "package",
- "path": "microsoft.aspnetcore.identity.entityframeworkcore/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
- "microsoft.aspnetcore.identity.entityframeworkcore.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.AspNetCore.JsonPatch/2.0.0": {
- "sha512": "US78cfi7nrPTXeONgcSWbgrUBLs1Aca4kCJTieWXDLg0G0gwmdfPbd6S3c5TdJRQdA69K3UhPAs9r9ZAMjIFAA==",
- "type": "package",
- "path": "microsoft.aspnetcore.jsonpatch/2.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
- "microsoft.aspnetcore.jsonpatch.2.0.0.nupkg.sha512",
- "microsoft.aspnetcore.jsonpatch.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Localization/2.0.2": {
- "sha512": "nijm4SSe5LwIOod5CHOFS4oGggNqyQCSb1DhA1Gy+R8hrwdc0vZEYuclyur9jysGSUNiUw/KWGeVIB99u9rdVw==",
- "type": "package",
- "path": "microsoft.aspnetcore.localization/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Localization.xml",
- "microsoft.aspnetcore.localization.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.localization.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Localization.Routing/2.0.2": {
- "sha512": "R8Dfo13h2jUmCxOCDk0AZBUB9LIcDpRKIuarjaHh8QZ/Vnmg3+4MKTK2nUbnDyGuhkUt/06nVoB7LxSDhcUqSQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.localization.routing/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.xml",
- "microsoft.aspnetcore.localization.routing.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.localization.routing.nuspec"
- ]
- },
- "Microsoft.AspNetCore.MiddlewareAnalysis/2.0.2": {
- "sha512": "hjAzkHE9JFOi6YNneGbjlyUEZ+a7dQldTZJlhE2t4e2EMfLPY+31y5hbAYfVBKVooJDaWA0nmCUMuhdH+Nceew==",
- "type": "package",
- "path": "microsoft.aspnetcore.middlewareanalysis/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.xml",
- "microsoft.aspnetcore.middlewareanalysis.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.middlewareanalysis.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc/2.0.3": {
- "sha512": "WkyEZDF709/l7ljPUD4j1IRj3McGgO8emGO7SNz+WK/HL6dmHL234uUcEjNEqFEpJJpxvvQVRal0YwwhZdeGZw==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.xml",
- "microsoft.aspnetcore.mvc.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/2.0.3": {
- "sha512": "iXPYz6zZE6vLLJYjQA7F8vtyPqYgOR1bOhChkfuhbIzrU4VELB2I3ozOdMGviXlmApbpRXZKd4z7viqlKKXiIg==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.abstractions/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml",
- "microsoft.aspnetcore.mvc.abstractions.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/2.0.3": {
- "sha512": "NllnW4FpRqBTw+P9RG6pVZdHglpx7F3jm73DNdRz66ijzypY/e0zXDItKPdmjPkRH0AIWAI+TxaHW4lcGE7MqQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.apiexplorer/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.xml",
- "microsoft.aspnetcore.mvc.apiexplorer.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.apiexplorer.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.Core/2.0.3": {
- "sha512": "OKyr3rrADlyZYkFydM3ds5F682feixPQmt/y0QsbjrsNt4eghSVsMvMqD/v2NMjHs8kH4TUsK4qXVPOSFonQ7A==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.core/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml",
- "microsoft.aspnetcore.mvc.core.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.core.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.Cors/2.0.3": {
- "sha512": "xSqDCgTwAk0wjcv4RcaE7MpDs9ELctrLR9ppx6AKbKrTriPqvXoCvFmLnUoXnCNQwn4at7R/C/66TtLfYfwH4g==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.cors/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.xml",
- "microsoft.aspnetcore.mvc.cors.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.cors.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/2.0.3": {
- "sha512": "KNb4rAFnXKZbGxWch8dNg0f9jpgUZUgaPgDFncvjtfSNW6Ml/746KBixXk/lxZq5W+MW/wnjyOr49+WLG/SmzQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.dataannotations/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
- "microsoft.aspnetcore.mvc.dataannotations.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.dataannotations.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/2.0.3": {
- "sha512": "Vts06sEs576xjcnRzEMVKYev25N/fkA2Zeisvc3JRtXtrxVPgJretQ1Yne2JUQuTsaSCMn0TcJtbV3r2FusVGQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.formatters.json/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
- "microsoft.aspnetcore.mvc.formatters.json.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.formatters.json.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.0.3": {
- "sha512": "LoVS9sHEG0i39LY8cQnVEfdAkYpal1p2idAkEgZIqtaW9su8Kf+8VGjlm2LW4PlX8sru559DNuNp8NBbbsy6Rg==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.formatters.xml/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.xml",
- "microsoft.aspnetcore.mvc.formatters.xml.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.formatters.xml.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.Localization/2.0.3": {
- "sha512": "0RaOWJmXno0GAQiJ4j98KOjltGR5Gb9yu16AmRfmEIZVIY+B+s3wfZBHGgTpYxAEuAAzzUAgMX/wyhAkefCp4w==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.localization/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.xml",
- "microsoft.aspnetcore.mvc.localization.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.localization.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.Razor/2.0.3": {
- "sha512": "T56Niuff/u4nuPwnBTociMVE/dzSGu8GcuW4L+gqV42WDE/V9AdJEtae6nQ2DSdvZOokULJ74eNAe2RL1Gz4Sw==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.razor/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.xml",
- "microsoft.aspnetcore.mvc.razor.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.razor.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.0.2": {
- "sha512": "7Jr4WCpJRyHA44S6BuqgERDNeR3222Wbu3X/E2HMyiNlqIkPv4FAoEu6zqcG5iy9Y/vMzURYPASVOIBQs5ZVXg==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.razor.extensions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
- "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml",
- "microsoft.aspnetcore.mvc.razor.extensions.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.mvc.razor.extensions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.0.3": {
- "sha512": "3tyvIJ33NUumLp3A6McdX8gklkYYOj1antb1zL8CzkL94tIEVK//cUJnRdQUwtegSI1cbkjXr4/9ZWnALKYkpw==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.razor.viewcompilation/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x64.exe",
- "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation-x86.exe",
- "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks.dll",
- "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.dll",
- "build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets",
- "microsoft.aspnetcore.mvc.razor.viewcompilation.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.razor.viewcompilation.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/2.0.3": {
- "sha512": "uugn2CpSkTisavKbHgAtCYQoSTsODNbwp+de+xwDVlUjq2IFxQTs/EFCWTFlqbNAIMUEFnoDKKx6Zlx8M20INg==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.razorpages/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.xml",
- "microsoft.aspnetcore.mvc.razorpages.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.razorpages.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/2.0.3": {
- "sha512": "vrfBUPe9KmVa8hcJaq1QVA8WGQRBbaXthOt86p48t4wh9FnkrvVXLfBTRdMz7F8X3grgXt+gZkil8Tlk+9L5hQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.taghelpers/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
- "microsoft.aspnetcore.mvc.taghelpers.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.taghelpers.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/2.0.3": {
- "sha512": "7z2Al4cs5Rgy42rdU41fm3GP7+ZSDrF8aMi7W9b/WXql7nysSS9v/2r4eE5H3xMv2M4b3rjOyAPUurkLZVV58w==",
- "type": "package",
- "path": "microsoft.aspnetcore.mvc.viewfeatures/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
- "microsoft.aspnetcore.mvc.viewfeatures.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.mvc.viewfeatures.nuspec"
- ]
- },
- "Microsoft.AspNetCore.NodeServices/2.0.3": {
- "sha512": "o8Jsb9nZ2UpJoMH2Cl+MhLLICLKxOuX/kT+H8A0Mfe3LJK4X55TwjSTUU6qS9486+pawH/HMVND1SEhZriWHQg==",
- "type": "package",
- "path": "microsoft.aspnetcore.nodeservices/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.xml",
- "microsoft.aspnetcore.nodeservices.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.nodeservices.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Owin/2.0.2": {
- "sha512": "RFfcbP54mcwdkiN5tTEpTCvLoYMOmh8P0XutxPVyn3lQmTKDJjUp+VE3DlTQ0E4mNYhgAR/8I8C6aGf1CTsHJw==",
- "type": "package",
- "path": "microsoft.aspnetcore.owin/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Owin.xml",
- "microsoft.aspnetcore.owin.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.owin.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Razor/2.0.2": {
- "sha512": "g5Cf2gwEg0B8WPE3XA55ve4S9l+5y0c5LMC7jga9KBjrp1ejNTS+nSeLbi9Bg/wYPfoc7Ga4yFqbFKvvODBbow==",
- "type": "package",
- "path": "microsoft.aspnetcore.razor/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml",
- "microsoft.aspnetcore.razor.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.razor.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Razor.Language/2.0.2": {
- "sha512": "8kcc66kk9zEtd661VVuQnmqs/S96O00TKaly5InupBPkiptgFxEcfpxC4zaCDFwmh9fo6xNJu1HlqTHiHGx6Cw==",
- "type": "package",
- "path": "microsoft.aspnetcore.razor.language/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net46/Microsoft.AspNetCore.Razor.Language.dll",
- "lib/net46/Microsoft.AspNetCore.Razor.Language.xml",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml",
- "microsoft.aspnetcore.razor.language.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.razor.language.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Razor.Runtime/2.0.2": {
- "sha512": "iaTOXW839pOB+qpB2DqZgGGOjgyFq2wfw0blFr8QjiKKqE4h+/UuRCPdFw5dloIfX9msIERb73bbnYGknhsGZQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.razor.runtime/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml",
- "microsoft.aspnetcore.razor.runtime.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.razor.runtime.nuspec"
- ]
- },
- "Microsoft.AspNetCore.ResponseCaching/2.0.2": {
- "sha512": "Inob5PAUyo+DtoXgGpBSDpIG9E98cUZXsFnNrYUUXVmcsLMknTpcALZxOJtDmvUcz9dSdMU9wDGYB2J2U1llng==",
- "type": "package",
- "path": "microsoft.aspnetcore.responsecaching/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.xml",
- "microsoft.aspnetcore.responsecaching.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.responsecaching.nuspec"
- ]
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.0.2": {
- "sha512": "GDf8IgKCFKB0FRqzI15oky08OS7PwSmxCzAQoHhEgHS6hl3gEmOL65aZUu+S7v+VPd9kj9fEDuXF4vRDhSWUZg==",
- "type": "package",
- "path": "microsoft.aspnetcore.responsecaching.abstractions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
- "microsoft.aspnetcore.responsecaching.abstractions.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.responsecaching.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.ResponseCompression/2.0.2": {
- "sha512": "3ik8SSK2dAHrzTSGZrAHD4dM1Pu5tQcLqnM0NWWZnakfbJuAE1EGdfdOAEmktOvvAGrw6+nXDZSzU1bw3xNUdA==",
- "type": "package",
- "path": "microsoft.aspnetcore.responsecompression/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net461/Microsoft.AspNetCore.ResponseCompression.dll",
- "lib/net461/Microsoft.AspNetCore.ResponseCompression.xml",
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.xml",
- "microsoft.aspnetcore.responsecompression.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.responsecompression.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Rewrite/2.0.2": {
- "sha512": "pd+f2w7MhGmExjWzhzNK+cuE1U5aq6OfQoLHTnU64cwrJB83Ufk6Tu/93OhzcGpUVE9cmghikg2tBr9xcTwf6A==",
- "type": "package",
- "path": "microsoft.aspnetcore.rewrite/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.xml",
- "microsoft.aspnetcore.rewrite.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.rewrite.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Routing/2.0.2": {
- "sha512": "v0f0iRS9H71g49cwNH8hezpZalluUc1Ok3sModvqC4heLdqfAAO52GxWYVtB6lOw5JR6YYy3KvINOx+YghsdHg==",
- "type": "package",
- "path": "microsoft.aspnetcore.routing/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml",
- "microsoft.aspnetcore.routing.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.routing.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Routing.Abstractions/2.0.2": {
- "sha512": "sqI4xsQYm/11KsY8P892yrpL3ALAp6e6u12mrnbdWhQt/IiWhK4X9OIQVVMM+ofrPkAKsjP96ctEkJcDKysNVw==",
- "type": "package",
- "path": "microsoft.aspnetcore.routing.abstractions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
- "microsoft.aspnetcore.routing.abstractions.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.routing.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Server.HttpSys/2.0.3": {
- "sha512": "hbwM1WVODYXGn1alR9NkXCMw9P6To5AOPkE8tqdh/TmnCECNwDz75qhpPmhQK+xa9nKdnEQlzjqkTYsmbb5beQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.server.httpsys/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.xml",
- "microsoft.aspnetcore.server.httpsys.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.server.httpsys.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Server.IISIntegration/2.0.2": {
- "sha512": "UUbQIZp5dmEnDrgjIGjiTqqMBlus1+q+nL0JTmo40UveFVMO4rQSBMwv7M9QzR+T1qFCWNcysbutHIOdoYl8bA==",
- "type": "package",
- "path": "microsoft.aspnetcore.server.iisintegration/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.xml",
- "microsoft.aspnetcore.server.iisintegration.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.server.iisintegration.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Server.Kestrel/2.0.2": {
- "sha512": "rPDyGoafAZwRvovro5wzmeaOScYjehjy7yABvgMfkkiPTUeSDdtm020XR3HFU+GxCAmhU8bQhLUH0CKk9NNGDQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.server.kestrel/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.xml",
- "microsoft.aspnetcore.server.kestrel.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.server.kestrel.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/2.0.2": {
- "sha512": "+d7WB++otIdpV10mbHsUEcPmL+676Zljsls4DUkaSB8toiYndEeK+yxXj9OsGtTCzQhv4FjLqEcgw01oA0JYbw==",
- "type": "package",
- "path": "microsoft.aspnetcore.server.kestrel.core/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.xml",
- "microsoft.aspnetcore.server.kestrel.core.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.server.kestrel.core.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Server.Kestrel.Https/2.0.2": {
- "sha512": "v8WKn9TCiGvgocbCFDxeOj3neAgEHwfpqu/J4W2GbwprRDawFLP5XbTDjbNjo5J2UVgFH5NHaRJocNWc3raQ9g==",
- "type": "package",
- "path": "microsoft.aspnetcore.server.kestrel.https/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.xml",
- "microsoft.aspnetcore.server.kestrel.https.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.server.kestrel.https.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.0.2": {
- "sha512": "25BwaKnlKHZqPnOT1De2Oe7kpwWWxb7eMrnJx2FPyN5N4rfn/3GaSC72nZzwT4us9e8vKUJP+uzo1yFEBblbXA==",
- "type": "package",
- "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.xml",
- "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.server.kestrel.transport.abstractions.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv/2.0.2": {
- "sha512": "3H5R93EodGu8WsPYJwjXyDwks+nvpso6F01qPiowWU1dHpPGsY8px3XX3QTX3vPlwCXjpwvwlDXY8AT7kgBJzg==",
- "type": "package",
- "path": "microsoft.aspnetcore.server.kestrel.transport.libuv/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.xml",
- "microsoft.aspnetcore.server.kestrel.transport.libuv.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.server.kestrel.transport.libuv.nuspec"
- ]
- },
- "Microsoft.AspNetCore.Session/2.0.2": {
- "sha512": "p0YokieiGsIlxNQ52kSlKmHBiEUK2VSEADdKQJcw2JoHuk4SVayDm8fgqpkoMxt+dNlr+mvjFECXI4NGxDDOnA==",
- "type": "package",
- "path": "microsoft.aspnetcore.session/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.Session.xml",
- "microsoft.aspnetcore.session.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.session.nuspec"
- ]
- },
- "Microsoft.AspNetCore.SpaServices/2.0.3": {
- "sha512": "EQqYTbrlshzny6OY7quuLZEhUwQ3Io6Km60ns099PluwfZiRfpys+gSzEk+cfOJsHdJcKXKZT8rvLAGREJyQAQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.spaservices/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.xml",
- "microsoft.aspnetcore.spaservices.2.0.3.nupkg.sha512",
- "microsoft.aspnetcore.spaservices.nuspec"
- ]
- },
- "Microsoft.AspNetCore.StaticFiles/2.0.2": {
- "sha512": "8G/Dl4sjp7GWOlh0YoGTGEeAH9fkwiEoPFmm/s4jZUxeTIOJkTCKJAP8xC2sYgcORLMZFINQI4kdGp6Wm4odPw==",
- "type": "package",
- "path": "microsoft.aspnetcore.staticfiles/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.xml",
- "microsoft.aspnetcore.staticfiles.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.staticfiles.nuspec"
- ]
- },
- "Microsoft.AspNetCore.WebSockets/2.0.2": {
- "sha512": "VUZCI/lAfPNU3KneT6xezPnUDUPnP0RzAFAcR+zNebBQ584STXLgy04PSeKMy5UgUzihln5N8xLLfM7bZSHlvQ==",
- "type": "package",
- "path": "microsoft.aspnetcore.websockets/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll",
- "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.xml",
- "microsoft.aspnetcore.websockets.2.0.2.nupkg.sha512",
- "microsoft.aspnetcore.websockets.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.Azure.KeyVault/2.3.2": {
- "sha512": "A82ESUdfLz2wMhYuPxrwf/fA7JVt3IARgeMCG3TsaLtxUxa9RBKX3f0zdnKmvBvJ/u1/5g03OLR26GPekqY5HQ==",
- "type": "package",
- "path": "microsoft.azure.keyvault/2.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net452/Microsoft.Azure.KeyVault.dll",
- "lib/net452/Microsoft.Azure.KeyVault.runtimeconfig.json",
- "lib/net452/Microsoft.Azure.KeyVault.xml",
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.dll",
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.runtimeconfig.json",
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.xml",
- "microsoft.azure.keyvault.2.3.2.nupkg.sha512",
- "microsoft.azure.keyvault.nuspec"
- ]
- },
- "Microsoft.Azure.KeyVault.WebKey/2.0.7": {
- "sha512": "MVSYao62R9rwl9KF+IsJm+XBLupJj1ma2lfwNeFlSWziXGAopnYK+YkDWqABOqNIV9kpza/MvNBxITzhlJIyIw==",
- "type": "package",
- "path": "microsoft.azure.keyvault.webkey/2.0.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net452/Microsoft.Azure.KeyVault.WebKey.dll",
- "lib/net452/Microsoft.Azure.KeyVault.WebKey.runtimeconfig.json",
- "lib/net452/Microsoft.Azure.KeyVault.WebKey.xml",
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.WebKey.dll",
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.WebKey.runtimeconfig.json",
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.WebKey.xml",
- "microsoft.azure.keyvault.webkey.2.0.7.nupkg.sha512",
- "microsoft.azure.keyvault.webkey.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
- "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
- "type": "package",
- "path": "microsoft.codeanalysis.analyzers/1.1.0",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.rtf",
- "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
- "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
- "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
- "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
- "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512",
- "microsoft.codeanalysis.analyzers.nuspec",
- "tools/install.ps1",
- "tools/uninstall.ps1"
- ]
- },
- "Microsoft.CodeAnalysis.Common/2.3.1": {
- "sha512": "nGATpUW09zOGFLQZ3JXIObJyNlk2dvgNgC7Kh+iDpxGWgKHSgpHMXnGmXUecJa4CNi0HhUENKSnEack1aF/MwQ==",
- "type": "package",
- "path": "microsoft.codeanalysis.common/2.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard1.3/Microsoft.CodeAnalysis.dll",
- "lib/netstandard1.3/Microsoft.CodeAnalysis.xml",
- "microsoft.codeanalysis.common.2.3.1.nupkg.sha512",
- "microsoft.codeanalysis.common.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp/2.3.1": {
- "sha512": "fvO7Q8FqzmWX8gzzCk4Bf34Ms06bZ6r/A9tUz1ndj3ioitAxSC2QUXbUQOJ4ExzohTtXhczJAFirgs//Nasz6A==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp/2.3.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml",
- "microsoft.codeanalysis.csharp.2.3.1.nupkg.sha512",
- "microsoft.codeanalysis.csharp.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Razor/2.0.2": {
- "sha512": "uDtaWOCEZ9+2bEYA8cmlogajruQziTqRDKEZ2zt/2BViRm/sFUovHHbmYnBp5W1cqVEPz6M8R6dA1Qqv67fhfA==",
- "type": "package",
- "path": "microsoft.codeanalysis.razor/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net46/Microsoft.CodeAnalysis.Razor.dll",
- "lib/net46/Microsoft.CodeAnalysis.Razor.xml",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml",
- "microsoft.codeanalysis.razor.2.0.2.nupkg.sha512",
- "microsoft.codeanalysis.razor.nuspec"
- ]
- },
- "Microsoft.CSharp/4.4.0": {
- "sha512": "vvVR/B08YVghQ4jHEloxqw2ZWzEGE1AOA5E0DioUM3ujbXz6FD3AfB/0Jl2ohJPd0nXYGwmPe1En6HTsSriq1A==",
- "type": "package",
- "path": "microsoft.csharp/4.4.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/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "microsoft.csharp.4.4.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/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Data.Edm/5.8.2": {
- "sha512": "P/d8DxA6MFHroBEn/jW0LMQSIKnsRRibrZtRCLfov2boQfrQ1R1BVgkJ5oIhcQsOm0l4POv+I2ny6RBsclNbOw==",
- "type": "package",
- "path": "microsoft.data.edm/5.8.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net40/Microsoft.Data.Edm.dll",
- "lib/net40/Microsoft.Data.Edm.xml",
- "lib/net40/de/Microsoft.Data.Edm.resources.dll",
- "lib/net40/es/Microsoft.Data.Edm.resources.dll",
- "lib/net40/fr/Microsoft.Data.Edm.resources.dll",
- "lib/net40/it/Microsoft.Data.Edm.resources.dll",
- "lib/net40/ja/Microsoft.Data.Edm.resources.dll",
- "lib/net40/ko/Microsoft.Data.Edm.resources.dll",
- "lib/net40/ru/Microsoft.Data.Edm.resources.dll",
- "lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll",
- "lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll",
- "lib/netstandard1.1/Microsoft.Data.Edm.dll",
- "lib/netstandard1.1/Microsoft.Data.Edm.xml",
- "lib/netstandard1.1/de/Microsoft.Data.Edm.resources.dll",
- "lib/netstandard1.1/es/Microsoft.Data.Edm.resources.dll",
- "lib/netstandard1.1/fr/Microsoft.Data.Edm.resources.dll",
- "lib/netstandard1.1/it/Microsoft.Data.Edm.resources.dll",
- "lib/netstandard1.1/ja/Microsoft.Data.Edm.resources.dll",
- "lib/netstandard1.1/ko/Microsoft.Data.Edm.resources.dll",
- "lib/netstandard1.1/ru/Microsoft.Data.Edm.resources.dll",
- "lib/netstandard1.1/zh-Hans/Microsoft.Data.Edm.resources.dll",
- "lib/netstandard1.1/zh-Hant/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.Edm.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.Edm.xml",
- "lib/portable-net40+sl5+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll",
- "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.xml",
- "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll",
- "lib/sl4/Microsoft.Data.Edm.dll",
- "lib/sl4/Microsoft.Data.Edm.xml",
- "lib/sl4/de/Microsoft.Data.Edm.resources.dll",
- "lib/sl4/es/Microsoft.Data.Edm.resources.dll",
- "lib/sl4/fr/Microsoft.Data.Edm.resources.dll",
- "lib/sl4/it/Microsoft.Data.Edm.resources.dll",
- "lib/sl4/ja/Microsoft.Data.Edm.resources.dll",
- "lib/sl4/ko/Microsoft.Data.Edm.resources.dll",
- "lib/sl4/ru/Microsoft.Data.Edm.resources.dll",
- "lib/sl4/zh-Hans/Microsoft.Data.Edm.resources.dll",
- "lib/sl4/zh-Hant/Microsoft.Data.Edm.resources.dll",
- "microsoft.data.edm.5.8.2.nupkg.sha512",
- "microsoft.data.edm.nuspec"
- ]
- },
- "Microsoft.Data.OData/5.8.2": {
- "sha512": "oEIUtXcRiKogF0yZxA+QdgxoBJ34989qL/5xOSrTfxAhzNJV5Hw6DRdWgUCpeXFMoJUQx7ptbHCN+My/LCQfsg==",
- "type": "package",
- "path": "microsoft.data.odata/5.8.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net40/Microsoft.Data.OData.dll",
- "lib/net40/Microsoft.Data.OData.xml",
- "lib/net40/de/Microsoft.Data.OData.resources.dll",
- "lib/net40/es/Microsoft.Data.OData.resources.dll",
- "lib/net40/fr/Microsoft.Data.OData.resources.dll",
- "lib/net40/it/Microsoft.Data.OData.resources.dll",
- "lib/net40/ja/Microsoft.Data.OData.resources.dll",
- "lib/net40/ko/Microsoft.Data.OData.resources.dll",
- "lib/net40/ru/Microsoft.Data.OData.resources.dll",
- "lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll",
- "lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll",
- "lib/netstandard1.1/Microsoft.Data.OData.dll",
- "lib/netstandard1.1/Microsoft.Data.OData.xml",
- "lib/netstandard1.1/de/Microsoft.Data.OData.resources.dll",
- "lib/netstandard1.1/es/Microsoft.Data.OData.resources.dll",
- "lib/netstandard1.1/fr/Microsoft.Data.OData.resources.dll",
- "lib/netstandard1.1/it/Microsoft.Data.OData.resources.dll",
- "lib/netstandard1.1/ja/Microsoft.Data.OData.resources.dll",
- "lib/netstandard1.1/ko/Microsoft.Data.OData.resources.dll",
- "lib/netstandard1.1/ru/Microsoft.Data.OData.resources.dll",
- "lib/netstandard1.1/zh-Hans/Microsoft.Data.OData.resources.dll",
- "lib/netstandard1.1/zh-Hant/Microsoft.Data.OData.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.OData.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.OData.xml",
- "lib/portable-net40+sl5+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll",
- "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.xml",
- "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll",
- "lib/sl4/Microsoft.Data.OData.dll",
- "lib/sl4/Microsoft.Data.OData.xml",
- "lib/sl4/de/Microsoft.Data.OData.resources.dll",
- "lib/sl4/es/Microsoft.Data.OData.resources.dll",
- "lib/sl4/fr/Microsoft.Data.OData.resources.dll",
- "lib/sl4/it/Microsoft.Data.OData.resources.dll",
- "lib/sl4/ja/Microsoft.Data.OData.resources.dll",
- "lib/sl4/ko/Microsoft.Data.OData.resources.dll",
- "lib/sl4/ru/Microsoft.Data.OData.resources.dll",
- "lib/sl4/zh-Hans/Microsoft.Data.OData.resources.dll",
- "lib/sl4/zh-Hant/Microsoft.Data.OData.resources.dll",
- "microsoft.data.odata.5.8.2.nupkg.sha512",
- "microsoft.data.odata.nuspec"
- ]
- },
- "Microsoft.Data.Sqlite/2.0.1": {
- "sha512": "jJXCZniFDwHGnRYd9WD3vswQCyIXk0/gsne9TLFWIpy6oK4kAcKD1BTncaHQmVg0pp/YmRBKXVIh4yXSHqbsGQ==",
- "type": "package",
- "path": "microsoft.data.sqlite/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "microsoft.data.sqlite.2.0.1.nupkg.sha512",
- "microsoft.data.sqlite.nuspec"
- ]
- },
- "Microsoft.Data.Sqlite.Core/2.0.1": {
- "sha512": "lkUOJRJEXnXAxWKhCSFjYKLhuopw+m6ClML4cF1Rt/Ek8bBUW6hn1xAHCZ9KFqkcNOpBS7rQ6nZBaSXU3mgbOQ==",
- "type": "package",
- "path": "microsoft.data.sqlite.core/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Data.Sqlite.dll",
- "lib/netstandard2.0/Microsoft.Data.Sqlite.xml",
- "microsoft.data.sqlite.core.2.0.1.nupkg.sha512",
- "microsoft.data.sqlite.core.nuspec"
- ]
- },
- "Microsoft.DotNet.PlatformAbstractions/2.0.3": {
- "sha512": "cXgVdJmW3fLwmSxsv0RlTe4BIKs6slVXV5xRvsO4CV4aUeY67GelaujxY/lP5yVlaMjMM22pXKbKtUY9x050Mw==",
- "type": "package",
- "path": "microsoft.dotnet.platformabstractions/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll",
- "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll",
- "microsoft.dotnet.platformabstractions.2.0.3.nupkg.sha512",
- "microsoft.dotnet.platformabstractions.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore/2.0.2": {
- "sha512": "TjlP5PH687P1pHVUEUlXeoywd5iEXLHxOKfKfVIWsesXGq+hSz0Z8/afWo3mvuBIR0yLMc4Dfh5baTTKzYDQKw==",
- "type": "package",
- "path": "microsoft.entityframeworkcore/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
- "microsoft.entityframeworkcore.2.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Design/2.0.2": {
- "sha512": "cEqvei8LTLxJavvOH5OwQRjtfAlJF6RhnUyetv3M7hByXktkpedvhykH0TeJS0IQMfP3pU+9qclQpyrq9Ej4lQ==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.design/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net461/Microsoft.EntityFrameworkCore.Design.dll",
- "lib/net461/Microsoft.EntityFrameworkCore.Design.xml",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.xml",
- "microsoft.entityframeworkcore.design.2.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.design.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.InMemory/2.0.2": {
- "sha512": "ElVLhS/kaVByeh1I7mg9AcUVfZ/k55SMCW6BRRoXIMaAyUHw9n3EWhK7ThdBLp1Dek0UBwSD593jxGis2BqUGA==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.inmemory/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.xml",
- "microsoft.entityframeworkcore.inmemory.2.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.inmemory.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Relational/2.0.2": {
- "sha512": "tuB7TVi2VM5nmwmo2jXOOo5kH/iDaiGW2pHi8xHdy0YTj/ywNP8adobu35u4CabPaH88di6SLveeAdVi80vffw==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.relational/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
- "microsoft.entityframeworkcore.relational.2.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.relational.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Sqlite/2.0.2": {
- "sha512": "+Oc8jLtctAWzhZTao+oKNdS90fmEstirP/OAwfujtgQDQW0ktbsQwSGnNJM91fkN/fydOND5APMPG4jOdinlCA==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.sqlite/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "microsoft.entityframeworkcore.sqlite.2.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.sqlite.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Sqlite.Core/2.0.2": {
- "sha512": "Fgal6xyOon1rzKuk5kTCfsanSUN203BA6I6OFhEPIWbRDkBNjNVGlXg0C7N0gtgvq1OeByQj8H2Jni6VHk032Q==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.sqlite.core/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.dll",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.xml",
- "microsoft.entityframeworkcore.sqlite.core.2.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.sqlite.core.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.SqlServer/2.0.2": {
- "sha512": "368mmlJFauVm1ICn+plKJNm6KSX2jRTuK3zwomZwDAlzxO5kr8MMmbr60e6QM68wk8u0bdQBzTwO7GzfEnzWLA==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.sqlserver/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
- "microsoft.entityframeworkcore.sqlserver.2.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.sqlserver.nuspec"
- ]
- },
- "Microsoft.EntityFrameworkCore.Tools/2.0.2": {
- "sha512": "GBgyVDSZhYwja4cy+muVBocjlgbLhV5m29J3tHHf02utM8zo1jDSuarDGKV0O+kj5d3bgBuHe+0/Tf78GanTHQ==",
- "type": "package",
- "path": "microsoft.entityframeworkcore.tools/2.0.2",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/_._",
- "microsoft.entityframeworkcore.tools.2.0.2.nupkg.sha512",
- "microsoft.entityframeworkcore.tools.nuspec",
- "tools/EntityFrameworkCore.PowerShell2.psd1",
- "tools/EntityFrameworkCore.PowerShell2.psm1",
- "tools/EntityFrameworkCore.psd1",
- "tools/EntityFrameworkCore.psm1",
- "tools/about_EntityFrameworkCore.help.txt",
- "tools/init.ps1",
- "tools/install.ps1",
- "tools/net461/ef.exe",
- "tools/net461/ef.exe.config",
- "tools/net461/ef.x86.exe",
- "tools/net461/ef.x86.exe.config",
- "tools/netcoreapp2.0/ef.dll",
- "tools/netcoreapp2.0/ef.runtimeconfig.json"
- ]
- },
- "Microsoft.Extensions.Caching.Abstractions/2.0.1": {
- "sha512": "NobDNbehAbMYUApMXLd9XSt9UznGCgPW9PW4Ybe6S5jKqkd5RcTnaKm0FODcgyx+7B1hIGx7dZwa1bVdiSbHAg==",
- "type": "package",
- "path": "microsoft.extensions.caching.abstractions/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
- "microsoft.extensions.caching.abstractions.2.0.1.nupkg.sha512",
- "microsoft.extensions.caching.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Caching.Memory/2.0.1": {
- "sha512": "GVtJD0uhoLOkXBfYZAIRDexEr2qg0QHbUo3CIjmtoGpFWHuGHTvjGqRlybMKIYTpt0BxKpXMn4fqhS4ff10llA==",
- "type": "package",
- "path": "microsoft.extensions.caching.memory/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
- "microsoft.extensions.caching.memory.2.0.1.nupkg.sha512",
- "microsoft.extensions.caching.memory.nuspec"
- ]
- },
- "Microsoft.Extensions.Caching.Redis/2.0.1": {
- "sha512": "6Zo0CnNFiNBaeac8cmPCaA5Gs2LMQHoYeyaz4Il03NTa0sTEnHUoiXcujozkJmJbQjbSb7qFhw2DATzwIfEvMA==",
- "type": "package",
- "path": "microsoft.extensions.caching.redis/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Redis.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Redis.xml",
- "microsoft.extensions.caching.redis.2.0.1.nupkg.sha512",
- "microsoft.extensions.caching.redis.nuspec"
- ]
- },
- "Microsoft.Extensions.Caching.SqlServer/2.0.1": {
- "sha512": "mSQKQBhjfBeYU7cqG3wU/mgMqmwbRKy/ZkPxrPnZQ55NhnT3QbGNDOgD9CxJ1j8FMWBYcprxAbSGOM98ab+C5Q==",
- "type": "package",
- "path": "microsoft.extensions.caching.sqlserver/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.xml",
- "microsoft.extensions.caching.sqlserver.2.0.1.nupkg.sha512",
- "microsoft.extensions.caching.sqlserver.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration/2.0.1": {
- "sha512": "d9fFoEYRaBccu/Z2B2BZCil/lEnmoVQ8YiY1dGViERh0qWjixgR9y/M7EGaoTrAunnmvAmfwxuij/gCq6WvL1w==",
- "type": "package",
- "path": "microsoft.extensions.configuration/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
- "microsoft.extensions.configuration.2.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.Abstractions/2.0.1": {
- "sha512": "stGq1c136UUYOsgQuJ5fjiygqZhgt6Kj0pm4iL0qq1MICNgEKTJ4tnbXLkZfrDHDz+olsT2VY9cVv2yshg+m+A==",
- "type": "package",
- "path": "microsoft.extensions.configuration.abstractions/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "microsoft.extensions.configuration.abstractions.2.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.AzureKeyVault/2.0.1": {
- "sha512": "qVg14LrUn1xMS9D3meFJZGQHB13hu63AWF+eCRI/BKFSuP1t24wK4bVjRiLOfgeaBa/7uu168BTpVcAC62OD+w==",
- "type": "package",
- "path": "microsoft.extensions.configuration.azurekeyvault/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureKeyVault.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureKeyVault.xml",
- "microsoft.extensions.configuration.azurekeyvault.2.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.azurekeyvault.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.Binder/2.0.1": {
- "sha512": "5I1aC5g3+zb10nbNfTEz0YVFuKgvNU4jul0iDX10Q1nVyZoj33TsoNQwcJqBzJBxwjDSSGhejhgsQduREhFm6g==",
- "type": "package",
- "path": "microsoft.extensions.configuration.binder/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
- "microsoft.extensions.configuration.binder.2.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.binder.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.CommandLine/2.0.1": {
- "sha512": "xbA72loiTC3MK89cJZBEEbl4jWi8ugUJjd6Ak4jJN7JXerVURpWhSJ7engn+gZKYwvzdbt0vkr+/u015Pe4gqA==",
- "type": "package",
- "path": "microsoft.extensions.configuration.commandline/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
- "microsoft.extensions.configuration.commandline.2.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.commandline.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/2.0.1": {
- "sha512": "Ex3C6fEpePj3pekjjDTbSY/+IR371KDv+BFp6Wev/q0uPBmFN5dXlvy2M37fYmfca/VIb3rkOIqHpheWG3Iezg==",
- "type": "package",
- "path": "microsoft.extensions.configuration.environmentvariables/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
- "microsoft.extensions.configuration.environmentvariables.2.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.environmentvariables.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.FileExtensions/2.0.1": {
- "sha512": "ig55mY9fpfvVbQLuiT1ETjpYuI33RiSfhdon0nfl3m9cRSCJrrq2X7MXus2ihh2eW3ev+jPBHWNOFjN0YRN3cg==",
- "type": "package",
- "path": "microsoft.extensions.configuration.fileextensions/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
- "microsoft.extensions.configuration.fileextensions.2.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.fileextensions.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.Ini/2.0.1": {
- "sha512": "VexwTBlONJ42fDEdFBOg3A40wfEqlnWI2OQnUBmVs/dsoyTiMdPi1fgCJ1aUEYsXvfbkttF3qkudKsFbLw4rBA==",
- "type": "package",
- "path": "microsoft.extensions.configuration.ini/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.xml",
- "microsoft.extensions.configuration.ini.2.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.ini.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.Json/2.0.1": {
- "sha512": "RIh+RKEFkLDNeOhwPasPslqVDr72NVedR0rNKwxWnCZftAlSa4jmKg7nCacB4pU7rK2TMgl85ZaHZmrxC7Rcew==",
- "type": "package",
- "path": "microsoft.extensions.configuration.json/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
- "microsoft.extensions.configuration.json.2.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.json.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.UserSecrets/2.0.1": {
- "sha512": "MZMMOV7cMHnT7bAfcF2NmLywHXcw3krNtrPmjTO/CoimDl4dJbd7YhM29S5EFkr10nwMslH3VQtMccSVKGAcyw==",
- "type": "package",
- "path": "microsoft.extensions.configuration.usersecrets/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "build/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
- "microsoft.extensions.configuration.usersecrets.2.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.usersecrets.nuspec"
- ]
- },
- "Microsoft.Extensions.Configuration.Xml/2.0.1": {
- "sha512": "BSbH2kXBKej8Hp8OixjAqx6nD2il8inYYDD6qPkSkralLe1X2Kiv5jzzlDWUvh9DZ51wrLDoWMvY7FGBhU6Sfw==",
- "type": "package",
- "path": "microsoft.extensions.configuration.xml/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.xml",
- "microsoft.extensions.configuration.xml.2.0.1.nupkg.sha512",
- "microsoft.extensions.configuration.xml.nuspec"
- ]
- },
- "Microsoft.Extensions.DependencyInjection/2.0.0": {
- "sha512": "wakg18gHYiUL1pcjjyZuYk6OvDpbSw1E7IWxm78TMepsr+gQ8W0tWzuRm0q/9RFblngwPwo15rrgZSUV51W5Iw==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/2.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
- "microsoft.extensions.dependencyinjection.2.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.nuspec"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
- "sha512": "eUdJ0Q/GfVyUJc0Jal5L1QZLceL78pvEM9wEKcHeI24KorqMDoVX+gWsMGLulQMfOwsUaPtkpQM2pFERTzSfSg==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/2.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "microsoft.extensions.dependencyinjection.abstractions.2.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.DependencyModel/2.0.3": {
- "sha512": "OiNYN/QeZLuYcn4CvYrOmYgODPB1Jpqft+cT4F3Hkq5poj+1DLfbIBftMI/Pn8J7DyHhYeBMLxJUuugjvk/Fuw==",
- "type": "package",
- "path": "microsoft.extensions.dependencymodel/2.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net451/Microsoft.Extensions.DependencyModel.dll",
- "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
- "microsoft.extensions.dependencymodel.2.0.3.nupkg.sha512",
- "microsoft.extensions.dependencymodel.nuspec"
- ]
- },
- "Microsoft.Extensions.DiagnosticAdapter/2.0.1": {
- "sha512": "w8nux+yppIAD3ouzLz3CEtUMj03WIQ9FAmuR6IhrCpQDcoMtajlZIkZLbryJE1jdF1wkewLLM2LpXasfu7HzQw==",
- "type": "package",
- "path": "microsoft.extensions.diagnosticadapter/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net461/Microsoft.Extensions.DiagnosticAdapter.dll",
- "lib/net461/Microsoft.Extensions.DiagnosticAdapter.xml",
- "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll",
- "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.xml",
- "microsoft.extensions.diagnosticadapter.2.0.1.nupkg.sha512",
- "microsoft.extensions.diagnosticadapter.nuspec"
- ]
- },
- "Microsoft.Extensions.FileProviders.Abstractions/2.0.1": {
- "sha512": "Gzc5yXvwIrKpdti0Ev4jC0inVrGZpI86eLZorMVRqAPXowR8JDRbcHjhmID2EqA4rdhL/IsfD42+4upKpHULDw==",
- "type": "package",
- "path": "microsoft.extensions.fileproviders.abstractions/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
- "microsoft.extensions.fileproviders.abstractions.2.0.1.nupkg.sha512",
- "microsoft.extensions.fileproviders.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.FileProviders.Composite/2.0.1": {
- "sha512": "bgAUXH3T/Y1R5bCthCiZVzEX4spvNeIHRv6+Jr4BJMxPVSFm/8er7xvywd2NCayv94frKZdDGP3mjAQZenZDxQ==",
- "type": "package",
- "path": "microsoft.extensions.fileproviders.composite/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
- "microsoft.extensions.fileproviders.composite.2.0.1.nupkg.sha512",
- "microsoft.extensions.fileproviders.composite.nuspec"
- ]
- },
- "Microsoft.Extensions.FileProviders.Embedded/2.0.1": {
- "sha512": "PH1oo04WCbKy42aga6bC4phl1rZfbFsZLuozJN1LGUUZTCnycUAZzCqG6MNRCgRiHg2bPexiQ15708vSwnuBHQ==",
- "type": "package",
- "path": "microsoft.extensions.fileproviders.embedded/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml",
- "microsoft.extensions.fileproviders.embedded.2.0.1.nupkg.sha512",
- "microsoft.extensions.fileproviders.embedded.nuspec"
- ]
- },
- "Microsoft.Extensions.FileProviders.Physical/2.0.1": {
- "sha512": "h+6bcXYlGldl7BUhnQKFxL2sMfeg9Gr/AuVexYOCYWmzDsc4iyUoy3NL7i2vkG209wd0ZXf+pZzRDwGPFhmlSw==",
- "type": "package",
- "path": "microsoft.extensions.fileproviders.physical/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
- "microsoft.extensions.fileproviders.physical.2.0.1.nupkg.sha512",
- "microsoft.extensions.fileproviders.physical.nuspec"
- ]
- },
- "Microsoft.Extensions.FileSystemGlobbing/2.0.1": {
- "sha512": "q7KsG2kjwo2Ps0WdV7MFh64cQS0UHikV8qv4HQrUfWQyxim5vNmLzAbuduarS9QWbhRHTtUanx+ohyAQdumdnw==",
- "type": "package",
- "path": "microsoft.extensions.filesystemglobbing/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
- "microsoft.extensions.filesystemglobbing.2.0.1.nupkg.sha512",
- "microsoft.extensions.filesystemglobbing.nuspec"
- ]
- },
- "Microsoft.Extensions.Hosting.Abstractions/2.0.2": {
- "sha512": "gs+TNXCW05ujojZlQj2i9Fj00IAhXrgLZtgGM0XxoSoffgCGfGh7jX4kB/dnaot3xVdw84L1nE98bwQN7+kK8A==",
- "type": "package",
- "path": "microsoft.extensions.hosting.abstractions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
- "microsoft.extensions.hosting.abstractions.2.0.2.nupkg.sha512",
- "microsoft.extensions.hosting.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Identity.Core/2.0.2": {
- "sha512": "Lx5bFoGV2q83SdNh6SrzZczngu/FQ8N/VegNxyEl8h+UwFQJrVj9S3Ukp5Xd1jdFaRT4Xus8P8aGBdy8V7Iwew==",
- "type": "package",
- "path": "microsoft.extensions.identity.core/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
- "microsoft.extensions.identity.core.2.0.2.nupkg.sha512",
- "microsoft.extensions.identity.core.nuspec"
- ]
- },
- "Microsoft.Extensions.Identity.Stores/2.0.2": {
- "sha512": "9BTVdltrgFh+O69zm4fHZ50PV+GDEdGqcp+KMlbrOW+RmAgbVkQvMV25ZZChUAlT/uQb7BnAF1h5+2xWEyNQzA==",
- "type": "package",
- "path": "microsoft.extensions.identity.stores/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
- "microsoft.extensions.identity.stores.2.0.2.nupkg.sha512",
- "microsoft.extensions.identity.stores.nuspec"
- ]
- },
- "Microsoft.Extensions.Localization/2.0.2": {
- "sha512": "rT21gcQRQjpITr7GfpXSbUi+87WP2JEU1TrJjAS0jQSBEWwylzFNeokHYp/hQw9DHXhGHeqYSUXyrKE06XdsdA==",
- "type": "package",
- "path": "microsoft.extensions.localization/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
- "microsoft.extensions.localization.2.0.2.nupkg.sha512",
- "microsoft.extensions.localization.nuspec"
- ]
- },
- "Microsoft.Extensions.Localization.Abstractions/2.0.2": {
- "sha512": "akovmABJPmBjQfomzHywPGBjelgRazTBj2RV6+EBnALt5T639CBF+npHKM2z3Ms6HR9e50sDvAyAcnKgVOTdgA==",
- "type": "package",
- "path": "microsoft.extensions.localization.abstractions/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
- "microsoft.extensions.localization.abstractions.2.0.2.nupkg.sha512",
- "microsoft.extensions.localization.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging/2.0.1": {
- "sha512": "FKeB93fwdaEf2EXpxczDjE1CkWoAIrijiG1RZeDyD0OvbC0yjTVp1kCJTLYPrFil9JveJzvgXpL7BMNil9Ht3w==",
- "type": "package",
- "path": "microsoft.extensions.logging/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
- "microsoft.extensions.logging.2.0.1.nupkg.sha512",
- "microsoft.extensions.logging.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging.Abstractions/2.0.1": {
- "sha512": "DzCKlMdXOysXFDBXgNnxFlpSj5AOdMkUqKEjKT1n+japTxhQ3e3MaGODZGtbIj9ezykRs9oEBGmdSHHfh4oNVA==",
- "type": "package",
- "path": "microsoft.extensions.logging.abstractions/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "microsoft.extensions.logging.abstractions.2.0.1.nupkg.sha512",
- "microsoft.extensions.logging.abstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging.AzureAppServices/2.0.1": {
- "sha512": "v+JIz8XjA8l97lCMaEs+FcbG435QXCzHXEfPG47puYFiRbzsuphqlBqa0I3dsejhoeMfdroi7xRz4ODlmkv6iw==",
- "type": "package",
- "path": "microsoft.extensions.logging.azureappservices/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.AzureAppServices.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.AzureAppServices.xml",
- "microsoft.extensions.logging.azureappservices.2.0.1.nupkg.sha512",
- "microsoft.extensions.logging.azureappservices.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging.Configuration/2.0.1": {
- "sha512": "xIA/im+xMO80xHvfFCa3IQ6/L20pHl7MjyEZjKQKHRNsZgJIk4e8dfdHGeNaXChuTUycQ0EBdyN4kXUFqbAk3A==",
- "type": "package",
- "path": "microsoft.extensions.logging.configuration/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
- "microsoft.extensions.logging.configuration.2.0.1.nupkg.sha512",
- "microsoft.extensions.logging.configuration.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging.Console/2.0.1": {
- "sha512": "lbAWSy/Iwj584V6TAcKK8DU37IDOO7l+fMfktTsQWs14a4NXF/S0DjdbeJ5QoGR3aQiIlKJvNoCPoKLO9XeBMQ==",
- "type": "package",
- "path": "microsoft.extensions.logging.console/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
- "microsoft.extensions.logging.console.2.0.1.nupkg.sha512",
- "microsoft.extensions.logging.console.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging.Debug/2.0.1": {
- "sha512": "Cvsb3YWmuy7R/CRCAjoTVHDG3GDDVROfp3UWjo7CnxGX2Czc89AUPjxH5JFOd7xOplj12BX/KgU5m1KO3VOJIg==",
- "type": "package",
- "path": "microsoft.extensions.logging.debug/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
- "microsoft.extensions.logging.debug.2.0.1.nupkg.sha512",
- "microsoft.extensions.logging.debug.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging.EventSource/2.0.1": {
- "sha512": "LSihUUWSccjvDXrEwLS5f0RqesSCQ9W2bkTKr+AKXoGEXggzdHvcT3AmJbxWmNHVygkE+fPNMT9wHLeGD/Eu9A==",
- "type": "package",
- "path": "microsoft.extensions.logging.eventsource/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
- "microsoft.extensions.logging.eventsource.2.0.1.nupkg.sha512",
- "microsoft.extensions.logging.eventsource.nuspec"
- ]
- },
- "Microsoft.Extensions.Logging.TraceSource/2.0.1": {
- "sha512": "9vUL4uDDI/cfXsaZurijJgsXxSx7v0bugaPeWZPhFzynm1nvPJTZ4nAWXBHHLgVQLA7msFkmm97LKdVKecC+AQ==",
- "type": "package",
- "path": "microsoft.extensions.logging.tracesource/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.xml",
- "microsoft.extensions.logging.tracesource.2.0.1.nupkg.sha512",
- "microsoft.extensions.logging.tracesource.nuspec"
- ]
- },
- "Microsoft.Extensions.ObjectPool/2.0.0": {
- "sha512": "drOmgNZCJiNEqFM/TvyqwtogS8wqoWGQCW5KB/CVGKL6VXHw8OOMdaHyspp8HPstP9UDnrnuq+8eaCaAcQg6tA==",
- "type": "package",
- "path": "microsoft.extensions.objectpool/2.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
- "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
- "microsoft.extensions.objectpool.2.0.0.nupkg.sha512",
- "microsoft.extensions.objectpool.nuspec"
- ]
- },
- "Microsoft.Extensions.Options/2.0.1": {
- "sha512": "gxo2Bgg4D6+uyQz1Wdj1FAcBD3870+t37YjplyQXmjLzPWaoU89AIg3AXBXw4fR9CCdWLputZBLm3YaBx+oDFQ==",
- "type": "package",
- "path": "microsoft.extensions.options/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
- "microsoft.extensions.options.2.0.1.nupkg.sha512",
- "microsoft.extensions.options.nuspec"
- ]
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.1": {
- "sha512": "O1/MZSjWHdo4NNBD83ibRi83kKkbqbe+XTuoQtyk9NpfzYO6GoeEA+5ClEMJ56BO9DCNZb5SCBCPdlt2MdLFfw==",
- "type": "package",
- "path": "microsoft.extensions.options.configurationextensions/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
- "microsoft.extensions.options.configurationextensions.2.0.1.nupkg.sha512",
- "microsoft.extensions.options.configurationextensions.nuspec"
- ]
- },
- "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
- "sha512": "H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
- "type": "package",
- "path": "microsoft.extensions.platformabstractions/1.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
- "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
- "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll",
- "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml",
- "microsoft.extensions.platformabstractions.1.1.0.nupkg.sha512",
- "microsoft.extensions.platformabstractions.nuspec"
- ]
- },
- "Microsoft.Extensions.Primitives/2.0.0": {
- "sha512": "ukg53qNlqTrK38WA30b5qhw0GD7y3jdI9PHHASjdKyTcBHTevFM2o23tyk3pWCgAV27Bbkm+CPQ2zUe1ZOuYSA==",
- "type": "package",
- "path": "microsoft.extensions.primitives/2.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
- "microsoft.extensions.primitives.2.0.0.nupkg.sha512",
- "microsoft.extensions.primitives.nuspec"
- ]
- },
- "Microsoft.Extensions.WebEncoders/2.0.1": {
- "sha512": "uRVexwgmsT3kfLKYb1mVOh96DIfo13Jp0rXvVZjFLEL29TV9K3GUeM/qTgm5P+hncWCMU6KOmx/QA+954pBMtw==",
- "type": "package",
- "path": "microsoft.extensions.webencoders/2.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll",
- "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.xml",
- "microsoft.extensions.webencoders.2.0.1.nupkg.sha512",
- "microsoft.extensions.webencoders.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Clients.ActiveDirectory/3.14.1": {
- "sha512": "GlyzF4FWsn3LXC6rrzw6Yg2nMbGLx+7JS9a6Z8n7jhqPa5cMiNEX01tBUO1v3A9p1mk+gQzHWJheAsSpOLp/ew==",
- "type": "package",
- "path": "microsoft.identitymodel.clients.activedirectory/3.14.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML",
- "lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll",
- "lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.pdb",
- "lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.dll",
- "lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.pdb",
- "lib/MonoAndroid10/Microsoft.IdentityModel.Clients.ActiveDirectory.xml",
- "lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML",
- "lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll",
- "lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.pdb",
- "lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.dll",
- "lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.pdb",
- "lib/Xamarin.iOS10/Microsoft.IdentityModel.Clients.ActiveDirectory.xml",
- "lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML",
- "lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll",
- "lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.pdb",
- "lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.dll",
- "lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.pdb",
- "lib/net45/Microsoft.IdentityModel.Clients.ActiveDirectory.xml",
- "lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.XML",
- "lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll",
- "lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.pdb",
- "lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.dll",
- "lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.pdb",
- "lib/netcore45/Microsoft.IdentityModel.Clients.ActiveDirectory.xml",
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll",
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.pdb",
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll",
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.pdb",
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.xml",
- "lib/portable-net45+win/Microsoft.IdentityModel.Clients.ActiveDirectory.dll",
- "lib/portable-net45+win/Microsoft.IdentityModel.Clients.ActiveDirectory.pdb",
- "lib/portable-net45+win/Microsoft.IdentityModel.Clients.ActiveDirectory.xml",
- "microsoft.identitymodel.clients.activedirectory.3.14.1.nupkg.sha512",
- "microsoft.identitymodel.clients.activedirectory.nuspec",
- "src/src/ADAL.Common/AdalEventSource.cs",
- "src/src/ADAL.Common/AuthenticationContextIntegratedAuthExtensions.cs",
- "src/src/ADAL.Common/AuthenticationResult.cs",
- "src/src/ADAL.Common/ClientAssertionCertificate.cs",
- "src/src/ADAL.Common/CommonAssemblyInfo.cs",
- "src/src/ADAL.Common/Constants.cs",
- "src/src/ADAL.Common/CryptographyHelper.cs",
- "src/src/ADAL.Common/EncodingHelper.cs",
- "src/src/ADAL.Common/LocalSettingsHelper.cs",
- "src/src/ADAL.Common/Logger.cs",
- "src/src/ADAL.Common/PromptBehavior.cs",
- "src/src/ADAL.Common/TokenCache.cs",
- "src/src/ADAL.Common/WebProxyProvider.cs",
- "src/src/ADAL.PCL.Android/ADAL.PCL.Android.csproj",
- "src/src/ADAL.PCL.Android/AuthenticationAgentActivity.cs",
- "src/src/ADAL.PCL.Android/AuthenticationAgentContinuationHelper.cs",
- "src/src/ADAL.PCL.Android/AuthenticationRequest.cs",
- "src/src/ADAL.PCL.Android/BrokerConstants.cs",
- "src/src/ADAL.PCL.Android/BrokerHelper.cs",
- "src/src/ADAL.PCL.Android/BrokerProxy.cs",
- "src/src/ADAL.PCL.Android/Constants.cs",
- "src/src/ADAL.PCL.Android/CryptographyHelper.cs",
- "src/src/ADAL.PCL.Android/DeviceAuthHelper.cs",
- "src/src/ADAL.PCL.Android/Logger.cs",
- "src/src/ADAL.PCL.Android/PlatformInformation.cs",
- "src/src/ADAL.PCL.Android/PlatformParameters.cs",
- "src/src/ADAL.PCL.Android/Properties/AssemblyInfo.cs",
- "src/src/ADAL.PCL.Android/Resources/AboutResources.txt",
- "src/src/ADAL.PCL.Android/Resources/Resource.Designer.cs",
- "src/src/ADAL.PCL.Android/Resources/Values/Strings.xml",
- "src/src/ADAL.PCL.Android/Resources/layout/WebAuthenticationBroker.axml",
- "src/src/ADAL.PCL.Android/TokenCachePlugin.cs",
- "src/src/ADAL.PCL.Android/WebProxyProvider.cs",
- "src/src/ADAL.PCL.Android/WebUI.cs",
- "src/src/ADAL.PCL.Android/WebUIFactory.cs",
- "src/src/ADAL.PCL.CoreCLR/ADAL.PCL.CoreCLR.csproj",
- "src/src/ADAL.PCL.CoreCLR/BrokerHelper.cs",
- "src/src/ADAL.PCL.CoreCLR/ClientAssertionCertificate.cs",
- "src/src/ADAL.PCL.CoreCLR/CryptographyHelper.cs",
- "src/src/ADAL.PCL.CoreCLR/DeviceAuthHelper.cs",
- "src/src/ADAL.PCL.CoreCLR/PlatformInformation.cs",
- "src/src/ADAL.PCL.CoreCLR/PlatformParameters.cs",
- "src/src/ADAL.PCL.CoreCLR/Properties/AssemblyInfo.cs",
- "src/src/ADAL.PCL.CoreCLR/TokenCachePlugin.cs",
- "src/src/ADAL.PCL.CoreCLR/WebProxyProvider.cs",
- "src/src/ADAL.PCL.CoreCLR/WebUIFactory.cs",
- "src/src/ADAL.PCL.Desktop/ADAL.PCL.Desktop.csproj",
- "src/src/ADAL.PCL.Desktop/BrokerHelper.cs",
- "src/src/ADAL.PCL.Desktop/CryptographyHelper.cs",
- "src/src/ADAL.PCL.Desktop/CustomWebBrowser.CustomWebBrowserEvent.cs",
- "src/src/ADAL.PCL.Desktop/CustomWebBrowser.cs",
- "src/src/ADAL.PCL.Desktop/DeviceAuthHelper.cs",
- "src/src/ADAL.PCL.Desktop/InteractiveWebUI.cs",
- "src/src/ADAL.PCL.Desktop/Native/BCryptNative.cs",
- "src/src/ADAL.PCL.Desktop/Native/ICngAlgorithm.cs",
- "src/src/ADAL.PCL.Desktop/Native/ICngAsymmetricAlgorithm.cs",
- "src/src/ADAL.PCL.Desktop/Native/NCryptNative.cs",
- "src/src/ADAL.PCL.Desktop/Native/RSACng.cs",
- "src/src/ADAL.PCL.Desktop/Native/Win32Native.cs",
- "src/src/ADAL.PCL.Desktop/Native/X509Native.cs",
- "src/src/ADAL.PCL.Desktop/NavigateErrorStatus.cs",
- "src/src/ADAL.PCL.Desktop/PlatformInformation.cs",
- "src/src/ADAL.PCL.Desktop/PlatformParameters.cs",
- "src/src/ADAL.PCL.Desktop/Properties/AssemblyInfo.cs",
- "src/src/ADAL.PCL.Desktop/SecureClientSecret.cs",
- "src/src/ADAL.PCL.Desktop/SilentWebUI.cs",
- "src/src/ADAL.PCL.Desktop/SilentWebUIDoneEventArgs.cs",
- "src/src/ADAL.PCL.Desktop/SilentWindowsFormsAuthenticationDialog.cs",
- "src/src/ADAL.PCL.Desktop/StaTaskScheduler.cs",
- "src/src/ADAL.PCL.Desktop/TokenCachePlugin.cs",
- "src/src/ADAL.PCL.Desktop/UserPasswordCredential.cs",
- "src/src/ADAL.PCL.Desktop/WebBrowserInterfaces.cs",
- "src/src/ADAL.PCL.Desktop/WebBrowserNavigateErrorEventArgs.cs",
- "src/src/ADAL.PCL.Desktop/WebUI.cs",
- "src/src/ADAL.PCL.Desktop/WebUIFactory.cs",
- "src/src/ADAL.PCL.Desktop/WinFormWebAuthenticationDialog.cs",
- "src/src/ADAL.PCL.Desktop/WindowsFormsWebAuthenticationDialogBase.cs",
- "src/src/ADAL.PCL.WinRT/ADAL.PCL.WinRT.csproj",
- "src/src/ADAL.PCL.WinRT/BrokerHelper.cs",
- "src/src/ADAL.PCL.WinRT/CryptographyHelper.cs",
- "src/src/ADAL.PCL.WinRT/DeviceAuthHelper.cs",
- "src/src/ADAL.PCL.WinRT/PlatformInformation.cs",
- "src/src/ADAL.PCL.WinRT/PlatformParameters.cs",
- "src/src/ADAL.PCL.WinRT/Properties/AssemblyInfo.cs",
- "src/src/ADAL.PCL.WinRT/TokenCachePlugin.cs",
- "src/src/ADAL.PCL.WinRT/WebUI.cs",
- "src/src/ADAL.PCL.WinRT/WebUIFactory.cs",
- "src/src/ADAL.PCL.iOS/ADAL.PCL.iOS.csproj",
- "src/src/ADAL.PCL.iOS/AdalCustomUrlProtocol.cs",
- "src/src/ADAL.PCL.iOS/AdalInitializer.cs",
- "src/src/ADAL.PCL.iOS/AuthenticationAgentUINavigationController.cs",
- "src/src/ADAL.PCL.iOS/AuthenticationAgentUIViewController.cs",
- "src/src/ADAL.PCL.iOS/AuthenticationContinuationHelper.cs",
- "src/src/ADAL.PCL.iOS/BrokerConstants.cs",
- "src/src/ADAL.PCL.iOS/BrokerHelper.cs",
- "src/src/ADAL.PCL.iOS/BrokerKeyHelper.cs",
- "src/src/ADAL.PCL.iOS/Constants.cs",
- "src/src/ADAL.PCL.iOS/CryptographyHelper.cs",
- "src/src/ADAL.PCL.iOS/DeviceAuthHelper.cs",
- "src/src/ADAL.PCL.iOS/GlobalSuppressions.cs",
- "src/src/ADAL.PCL.iOS/Logger.cs",
- "src/src/ADAL.PCL.iOS/PlatformInformation.cs",
- "src/src/ADAL.PCL.iOS/PlatformParameters.cs",
- "src/src/ADAL.PCL.iOS/Properties/AssemblyInfo.cs",
- "src/src/ADAL.PCL.iOS/TokenCachePlugin.cs",
- "src/src/ADAL.PCL.iOS/WebUI.cs",
- "src/src/ADAL.PCL.iOS/WebUIFactory.cs",
- "src/src/ADAL.PCL/ADAL.PCL.csproj",
- "src/src/ADAL.PCL/AdalOption.cs",
- "src/src/ADAL.PCL/AuthenticationContext.cs",
- "src/src/ADAL.PCL/AuthenticationParameters.cs",
- "src/src/ADAL.PCL/AuthenticationResult.cs",
- "src/src/ADAL.PCL/Authority/Authenticator.cs",
- "src/src/ADAL.PCL/Authority/AuthenticatorTemplate.cs",
- "src/src/ADAL.PCL/Authority/AuthenticatorTemplateList.cs",
- "src/src/ADAL.PCL/Authority/AuthorizationResult.cs",
- "src/src/ADAL.PCL/Authority/DeviceAuthJWTResponse.cs",
- "src/src/ADAL.PCL/Authority/IdToken.cs",
- "src/src/ADAL.PCL/Authority/RequestData.cs",
- "src/src/ADAL.PCL/Authority/RequestParameters.cs",
- "src/src/ADAL.PCL/Authority/TokenResponse.cs",
- "src/src/ADAL.PCL/Cache/CacheQueryData.cs",
- "src/src/ADAL.PCL/Cache/TokenCacheKey.cs",
- "src/src/ADAL.PCL/ClientAssertion.cs",
- "src/src/ADAL.PCL/ClientCredential.cs",
- "src/src/ADAL.PCL/ClientCreds/ClientKey.cs",
- "src/src/ADAL.PCL/ClientCreds/JsonWebToken.cs",
- "src/src/ADAL.PCL/DeviceCodeResult.cs",
- "src/src/ADAL.PCL/Exceptions/AdalException.cs",
- "src/src/ADAL.PCL/Exceptions/AdalServiceException.cs",
- "src/src/ADAL.PCL/Exceptions/AdalSilentTokenAcquisitionException.cs",
- "src/src/ADAL.PCL/Exceptions/AdalUserMismatchException.cs",
- "src/src/ADAL.PCL/Exceptions/HttpRequestWrapperException.cs",
- "src/src/ADAL.PCL/Flows/AcquireTokenByAuthorizationCodeHandler.cs",
- "src/src/ADAL.PCL/Flows/AcquireTokenForClientHandler.cs",
- "src/src/ADAL.PCL/Flows/AcquireTokenHandlerBase.cs",
- "src/src/ADAL.PCL/Flows/AcquireTokenInteractiveHandler.cs",
- "src/src/ADAL.PCL/Flows/AcquireTokenOnBehalfHandler.cs",
- "src/src/ADAL.PCL/Flows/AcquireTokenSilentHandler.cs",
- "src/src/ADAL.PCL/Flows/AuthenticationResultEx.cs",
- "src/src/ADAL.PCL/Flows/CallState.cs",
- "src/src/ADAL.PCL/Flows/DeviceCode/AcquireDeviceCodeHandler.cs",
- "src/src/ADAL.PCL/Flows/DeviceCode/AcquireTokenByDeviceCodeHandler.cs",
- "src/src/ADAL.PCL/Flows/DeviceCode/DeviceCodeResponse.cs",
- "src/src/ADAL.PCL/Flows/NonInteractive/AcquireTokenNonInteractiveHandler.cs",
- "src/src/ADAL.PCL/Flows/NonInteractive/MexParser.cs",
- "src/src/ADAL.PCL/Flows/NonInteractive/UserRealmDiscoveryResponse.cs",
- "src/src/ADAL.PCL/Flows/NonInteractive/WsTrustRequest.cs",
- "src/src/ADAL.PCL/Flows/NonInteractive/WsTrustResponse.cs",
- "src/src/ADAL.PCL/Http/AdalHttpClient.cs",
- "src/src/ADAL.PCL/Http/HttpClientFactory.cs",
- "src/src/ADAL.PCL/Http/HttpClientWrapper.cs",
- "src/src/ADAL.PCL/Http/HttpMessageHandlerFactory.cs",
- "src/src/ADAL.PCL/Http/HttpWebResponseWrapper.cs",
- "src/src/ADAL.PCL/Http/IHttpWebResponse.cs",
- "src/src/ADAL.PCL/IAdalLogCallback.cs",
- "src/src/ADAL.PCL/IClientAssertionCertificate.cs",
- "src/src/ADAL.PCL/IPlatformParameters.cs",
- "src/src/ADAL.PCL/ISecureClientSecret.cs",
- "src/src/ADAL.PCL/Platform/IBrokerHelper.cs",
- "src/src/ADAL.PCL/Platform/ICryptographyHelper.cs",
- "src/src/ADAL.PCL/Platform/IDeviceAuthHelper.cs",
- "src/src/ADAL.PCL/Platform/IHttpClient.cs",
- "src/src/ADAL.PCL/Platform/IHttpClientFactory.cs",
- "src/src/ADAL.PCL/Platform/ITokenCachePlugin.cs",
- "src/src/ADAL.PCL/Platform/IWebProxyProvider.cs",
- "src/src/ADAL.PCL/Platform/IWebUI.cs",
- "src/src/ADAL.PCL/Platform/IWebUIFactory.cs",
- "src/src/ADAL.PCL/Platform/LoggerBase.cs",
- "src/src/ADAL.PCL/Platform/PlatformInformationBase.cs",
- "src/src/ADAL.PCL/Platform/PlatformPlugin.cs",
- "src/src/ADAL.PCL/Properties/AssemblyInfo.cs",
- "src/src/ADAL.PCL/TokenCache.cs",
- "src/src/ADAL.PCL/TokenCacheItem.cs",
- "src/src/ADAL.PCL/TokenCacheNotificationArgs.cs",
- "src/src/ADAL.PCL/UserAssertion.cs",
- "src/src/ADAL.PCL/UserCredential.cs",
- "src/src/ADAL.PCL/UserIdentifier.cs",
- "src/src/ADAL.PCL/UserInfo.cs",
- "src/src/ADAL.PCL/Utilities/AdalIdHelper.cs",
- "src/src/ADAL.PCL/Utilities/Base64UrlEncoder.cs",
- "src/src/ADAL.PCL/Utilities/Constants.cs",
- "src/src/ADAL.PCL/Utilities/EncodingHelper.cs",
- "src/src/ADAL.PCL/Utilities/JsonHelper.cs",
- "src/src/ADAL.PCL/Utilities/OAuthConstants.cs"
- ]
- },
- "Microsoft.IdentityModel.Logging/1.1.4": {
- "sha512": "j7t22EsDOuo0IXqAbp6ijdB1GuaY8cu3YoPNZpymOhUMTVC+wRTV0IHqxL31HacCnJHU/igsqe70fDKZgZu3oA==",
- "type": "package",
- "path": "microsoft.identitymodel.logging/1.1.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Logging.dll",
- "lib/net45/Microsoft.IdentityModel.Logging.xml",
- "lib/net451/Microsoft.IdentityModel.Logging.dll",
- "lib/net451/Microsoft.IdentityModel.Logging.xml",
- "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
- "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
- "microsoft.identitymodel.logging.1.1.4.nupkg.sha512",
- "microsoft.identitymodel.logging.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Protocols/2.1.4": {
- "sha512": "9aefRN9sL8XZo90Aix88IHHpAvfBl6UOiYpcKHiXbCYE2nB+zA3B8dZdNMOUH4pqXdnpYrHRDQZ2k7A4/CUgTQ==",
- "type": "package",
- "path": "microsoft.identitymodel.protocols/2.1.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Protocols.dll",
- "lib/net45/Microsoft.IdentityModel.Protocols.xml",
- "lib/net451/Microsoft.IdentityModel.Protocols.dll",
- "lib/net451/Microsoft.IdentityModel.Protocols.xml",
- "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll",
- "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml",
- "microsoft.identitymodel.protocols.2.1.4.nupkg.sha512",
- "microsoft.identitymodel.protocols.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.1.4": {
- "sha512": "LF8JcG9BqGRwVjhu/IebuZQer6TJGDv2uxNnmg2Zkzh/d+MIC1ShsC1U3U7pVaw03SKyXmCgYm+JG0WM0mcOUw==",
- "type": "package",
- "path": "microsoft.identitymodel.protocols.openidconnect/2.1.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
- "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
- "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
- "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
- "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
- "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
- "microsoft.identitymodel.protocols.openidconnect.2.1.4.nupkg.sha512",
- "microsoft.identitymodel.protocols.openidconnect.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Tokens/5.1.4": {
- "sha512": "SsJbZVPvjSlKFDAQmR2wpL6ZD/vCFlIsf0jxRlBJwyzKXZy3Wi/Xo+fE2MzAerLsJgG1UCdtplRwqDyq1euayw==",
- "type": "package",
- "path": "microsoft.identitymodel.tokens/5.1.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.IdentityModel.Tokens.dll",
- "lib/net45/Microsoft.IdentityModel.Tokens.xml",
- "lib/net451/Microsoft.IdentityModel.Tokens.dll",
- "lib/net451/Microsoft.IdentityModel.Tokens.xml",
- "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
- "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
- "microsoft.identitymodel.tokens.5.1.4.nupkg.sha512",
- "microsoft.identitymodel.tokens.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/2.0.0": {
- "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
- "type": "package",
- "path": "microsoft.netcore.platforms/2.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.2.0.0.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "type": "package",
- "path": "microsoft.netcore.targets/1.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "microsoft.netcore.targets.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.Rest.ClientRuntime/2.3.8": {
- "sha512": "Hj96LBoCwKY2VQKfSCVGGPV1sSumVjuYnrlpBwL4JSTnSK4b6ZxjLtXj8LgmKav8xJ2gps+UN7eI3hHVFKvBFw==",
- "type": "package",
- "path": "microsoft.rest.clientruntime/2.3.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net452/Microsoft.Rest.ClientRuntime.dll",
- "lib/net452/Microsoft.Rest.ClientRuntime.runtimeconfig.json",
- "lib/net452/Microsoft.Rest.ClientRuntime.xml",
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.dll",
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.runtimeconfig.json",
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.xml",
- "microsoft.rest.clientruntime.2.3.8.nupkg.sha512",
- "microsoft.rest.clientruntime.nuspec"
- ]
- },
- "Microsoft.Rest.ClientRuntime.Azure/3.3.7": {
- "sha512": "6u8JIuvrztse4tPOcvNzAJuzGBP0uY+Ijggk8ZYhp0siGEZ1XfZylf1vpNGUicvwcrhhoIgDW73Z1L6QGssr2g==",
- "type": "package",
- "path": "microsoft.rest.clientruntime.azure/3.3.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net452/Microsoft.Rest.ClientRuntime.Azure.dll",
- "lib/net452/Microsoft.Rest.ClientRuntime.Azure.runtimeconfig.json",
- "lib/net452/Microsoft.Rest.ClientRuntime.Azure.xml",
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.Azure.dll",
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.Azure.runtimeconfig.json",
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.Azure.xml",
- "microsoft.rest.clientruntime.azure.3.3.7.nupkg.sha512",
- "microsoft.rest.clientruntime.azure.nuspec"
- ]
- },
- "Microsoft.VisualStudio.Web.BrowserLink/2.0.2": {
- "sha512": "ZS/yWRNbOseQefHnPewOqSuh9lvwVItikPNw6hhm0MKQRFkaTHw7NSb+SqDYM4LBzgx5uvkz3f3kHLZg9AgMFw==",
- "type": "package",
- "path": "microsoft.visualstudio.web.browserlink/2.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.VisualStudio.Web.BrowserLink.dll",
- "lib/netstandard2.0/Microsoft.VisualStudio.Web.BrowserLink.xml",
- "microsoft.visualstudio.web.browserlink.2.0.2.nupkg.sha512",
- "microsoft.visualstudio.web.browserlink.nuspec"
- ]
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
- "type": "package",
- "path": "microsoft.win32.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/Microsoft.Win32.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "microsoft.win32.primitives.4.3.0.nupkg.sha512",
- "microsoft.win32.primitives.nuspec",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/Microsoft.Win32.Primitives.dll",
- "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
- "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
- "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "Microsoft.Win32.Registry/4.4.0": {
- "sha512": "dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
- "type": "package",
- "path": "microsoft.win32.registry/4.4.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/netstandard1.3/Microsoft.Win32.Registry.dll",
- "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
- "microsoft.win32.registry.4.4.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/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/netcoreapp2.0/Microsoft.Win32.Registry.dll",
- "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
- "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
- "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll",
- "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "NETStandard.Library/1.6.1": {
- "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
- "type": "package",
- "path": "netstandard.library/1.6.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "netstandard.library.1.6.1.nupkg.sha512",
- "netstandard.library.nuspec"
- ]
- },
- "Newtonsoft.Json/10.0.1": {
- "sha512": "ebWzW9j2nwxQeBo59As2TYn7nYr9BHicqqCwHOD1Vdo+50HBtLPuqdiCYJcLdTRknpYis/DSEOQz5KmZxwrIAg==",
- "type": "package",
- "path": "newtonsoft.json/10.0.1",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "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/netstandard1.0/Newtonsoft.Json.dll",
- "lib/netstandard1.0/Newtonsoft.Json.xml",
- "lib/netstandard1.3/Newtonsoft.Json.dll",
- "lib/netstandard1.3/Newtonsoft.Json.xml",
- "lib/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.dll",
- "lib/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.xml",
- "newtonsoft.json.10.0.1.nupkg.sha512",
- "newtonsoft.json.nuspec",
- "tools/install.ps1"
- ]
- },
- "Newtonsoft.Json.Bson/1.0.1": {
- "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
- "type": "package",
- "path": "newtonsoft.json.bson/1.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Newtonsoft.Json.Bson.dll",
- "lib/net45/Newtonsoft.Json.Bson.xml",
- "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
- "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
- "newtonsoft.json.bson.1.0.1.nupkg.sha512",
- "newtonsoft.json.bson.nuspec"
- ]
- },
- "Remotion.Linq/2.1.1": {
- "sha512": "IJn0BqkvwEDpP+2qjvci7n4/a9f7DhKESLWb2/uG4xQh3rTkGTBUz69bI4IivCoKkTFAqjXxYDZw2K/npohjsw==",
- "type": "package",
- "path": "remotion.linq/2.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net35/Remotion.Linq.XML",
- "lib/net35/Remotion.Linq.dll",
- "lib/net40/Remotion.Linq.XML",
- "lib/net40/Remotion.Linq.dll",
- "lib/net45/Remotion.Linq.XML",
- "lib/net45/Remotion.Linq.dll",
- "lib/netstandard1.0/Remotion.Linq.dll",
- "lib/netstandard1.0/Remotion.Linq.xml",
- "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll",
- "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml",
- "remotion.linq.2.1.1.nupkg.sha512",
- "remotion.linq.nuspec"
- ]
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
- "type": "package",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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.0": {
- "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
- "type": "package",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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.0": {
- "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
- "type": "package",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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.4.0": {
- "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
- "type": "package",
- "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
- "runtime.native.system.data.sqlclient.sni.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
- "type": "package",
- "path": "runtime.native.system.io.compression/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
- "runtime.native.system.io.compression.nuspec"
- ]
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "type": "package",
- "path": "runtime.native.system.net.http/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.net.http.4.3.0.nupkg.sha512",
- "runtime.native.system.net.http.nuspec"
- ]
- },
- "runtime.native.System.Net.Security/4.3.0": {
- "sha512": "M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
- "type": "package",
- "path": "runtime.native.system.net.security/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.net.security.4.3.0.nupkg.sha512",
- "runtime.native.system.net.security.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.0": {
- "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
- "type": "package",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "runtime.native.system.security.cryptography.openssl.nuspec"
- ]
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
- "type": "package",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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.0": {
- "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
- "type": "package",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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.0": {
- "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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.0": {
- "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
- "type": "package",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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.0": {
- "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
- "type": "package",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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.0": {
- "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
- "type": "package",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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.0": {
- "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
- "type": "package",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.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"
- ]
- },
- "SQLitePCLRaw.bundle_green/1.1.7": {
- "sha512": "Kw+n4CUhQ8S4YAPmpRUldO8S7c4LU7HHukJF0v5Sfggf8Ia9YVdIh0dYkMvKvS+DTX+OBORSMqPM0CGfAzFtVA==",
- "type": "package",
- "path": "sqlitepclraw.bundle_green/1.1.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "build/wp8/SQLitePCLRaw.bundle_green.targets",
- "build/wp80/arm/SQLitePCLRaw.batteries_green.dll",
- "build/wp80/arm/SQLitePCLRaw.batteries_v2.dll",
- "build/wp80/x86/SQLitePCLRaw.batteries_green.dll",
- "build/wp80/x86/SQLitePCLRaw.batteries_v2.dll",
- "lib/MonoAndroid/SQLitePCLRaw.batteries_green.dll",
- "lib/MonoAndroid/SQLitePCLRaw.batteries_v2.dll",
- "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_green.dll",
- "lib/Xamarin.Mac20/SQLitePCLRaw.batteries_v2.dll",
- "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
- "lib/Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
- "lib/net35/SQLitePCLRaw.batteries_green.dll",
- "lib/net35/SQLitePCLRaw.batteries_v2.dll",
- "lib/net40/SQLitePCLRaw.batteries_green.dll",
- "lib/net40/SQLitePCLRaw.batteries_v2.dll",
- "lib/net45/SQLitePCLRaw.batteries_green.dll",
- "lib/net45/SQLitePCLRaw.batteries_v2.dll",
- "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll",
- "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll",
- "lib/netstandard1.1/SQLitePCLRaw.batteries_green.dll",
- "lib/netstandard1.1/SQLitePCLRaw.batteries_v2.dll",
- "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
- "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
- "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
- "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
- "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_green.dll",
- "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.batteries_v2.dll",
- "lib/uap10.0/SQLitePCLRaw.batteries_green.dll",
- "lib/uap10.0/SQLitePCLRaw.batteries_v2.dll",
- "lib/win8/SQLitePCLRaw.batteries_green.dll",
- "lib/win8/SQLitePCLRaw.batteries_v2.dll",
- "lib/win81/SQLitePCLRaw.batteries_green.dll",
- "lib/win81/SQLitePCLRaw.batteries_v2.dll",
- "lib/wp8/_._",
- "lib/wpa81/SQLitePCLRaw.batteries_green.dll",
- "lib/wpa81/SQLitePCLRaw.batteries_v2.dll",
- "sqlitepclraw.bundle_green.1.1.7.nupkg.sha512",
- "sqlitepclraw.bundle_green.nuspec"
- ]
- },
- "SQLitePCLRaw.core/1.1.7": {
- "sha512": "u9k9ZFkyTU6CVyXWpRuuXOvKi/cy/xt1oGKVSW8aUKcTL4RdH34yFNtVykEeiR68ojIEvmoZfL51h/xx2IQk5g==",
- "type": "package",
- "path": "sqlitepclraw.core/1.1.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/MonoAndroid/SQLitePCLRaw.core.dll",
- "lib/Xamarin.Mac20/SQLitePCLRaw.core.dll",
- "lib/Xamarin.iOS10/SQLitePCLRaw.core.dll",
- "lib/net35/SQLitePCLRaw.core.dll",
- "lib/net40/SQLitePCLRaw.core.dll",
- "lib/net45/SQLitePCLRaw.core.dll",
- "lib/netstandard1.0/SQLitePCLRaw.core.dll",
- "lib/netstandard1.1/SQLitePCLRaw.core.dll",
- "lib/portable-net40+sl5+netcore45+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
- "lib/portable-net45+netcore45+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
- "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid10+MonoTouch10+Xamarin.iOS10/SQLitePCLRaw.core.dll",
- "lib/uap10.0/SQLitePCLRaw.core.dll",
- "lib/win8/SQLitePCLRaw.core.dll",
- "lib/win81/SQLitePCLRaw.core.dll",
- "lib/wpa81/SQLitePCLRaw.core.dll",
- "sqlitepclraw.core.1.1.7.nupkg.sha512",
- "sqlitepclraw.core.nuspec"
- ]
- },
- "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.7": {
- "sha512": "KRqMd1qLwJ4pzPybj8q95s+wV6jby5F0O/rp0vw3wa2Z2wHxRm0VqxS2Sejlr7Ctz+LxSr8DpNg1l1u6n/PAPA==",
- "type": "package",
- "path": "sqlitepclraw.lib.e_sqlite3.linux/1.1.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "build/net35/SQLitePCLRaw.lib.e_sqlite3.linux.targets",
- "lib/net35/_._",
- "lib/netstandard1.0/_._",
- "lib/netstandard2.0/_._",
- "runtimes/linux-x64/native/libe_sqlite3.so",
- "runtimes/linux-x86/native/libe_sqlite3.so",
- "sqlitepclraw.lib.e_sqlite3.linux.1.1.7.nupkg.sha512",
- "sqlitepclraw.lib.e_sqlite3.linux.nuspec"
- ]
- },
- "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.7": {
- "sha512": "hdZx1DKHbDi4li6abmJ+A29mxY8D6BcM0s8VMT8p4MWEyrj54CZFUm402jTV6OgZCsFGkbRFnuFdBXf4vSDO7g==",
- "type": "package",
- "path": "sqlitepclraw.lib.e_sqlite3.osx/1.1.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "build/net35/SQLitePCLRaw.lib.e_sqlite3.osx.targets",
- "lib/net35/_._",
- "lib/netstandard1.0/_._",
- "lib/netstandard2.0/_._",
- "runtimes/osx-x64/native/libe_sqlite3.dylib",
- "sqlitepclraw.lib.e_sqlite3.osx.1.1.7.nupkg.sha512",
- "sqlitepclraw.lib.e_sqlite3.osx.nuspec"
- ]
- },
- "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.7": {
- "sha512": "roIdTH4a4iFa08HOwTWnzj2QYBIpSZRYfLSvHjtbH67I4DSWregrd4jkSnoOuwC5GHG08FNahBfEx3HAsVqW+g==",
- "type": "package",
- "path": "sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "build/net35/SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets",
- "lib/net35/_._",
- "lib/netstandard1.0/_._",
- "lib/netstandard2.0/_._",
- "runtimes/win7-x64/native/e_sqlite3.dll",
- "runtimes/win7-x86/native/e_sqlite3.dll",
- "sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.7.nupkg.sha512",
- "sqlitepclraw.lib.e_sqlite3.v110_xp.nuspec"
- ]
- },
- "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.7": {
- "sha512": "Zdug2wETm6847337EtD8MoCAtOdwM6prEXL/UsJ97Zxvoeyk/gUpdtuFNBxgJzceuty0jymjxm5yur5QajdApg==",
- "type": "package",
- "path": "sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll",
- "sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.7.nupkg.sha512",
- "sqlitepclraw.provider.e_sqlite3.netstandard11.nuspec"
- ]
- },
- "StackExchange.Redis.StrongName/1.2.4": {
- "sha512": "qrfSB1BnmM17V20A4yvvNA0HNiDgnBd/CcjaeMKMA4qtup1uuBUMyhl20oj31fRVo71E/fXTbmQCuM9ytBJs6w==",
- "type": "package",
- "path": "stackexchange.redis.strongname/1.2.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/StackExchange.Redis.StrongName.dll",
- "lib/net45/StackExchange.Redis.StrongName.xml",
- "lib/net46/StackExchange.Redis.StrongName.dll",
- "lib/net46/StackExchange.Redis.StrongName.xml",
- "lib/netstandard1.5/StackExchange.Redis.StrongName.dll",
- "lib/netstandard1.5/StackExchange.Redis.StrongName.xml",
- "stackexchange.redis.strongname.1.2.4.nupkg.sha512",
- "stackexchange.redis.strongname.nuspec"
- ]
- },
- "System.AppContext/4.3.0": {
- "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
- "type": "package",
- "path": "system.appcontext/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.AppContext.dll",
- "lib/net463/System.AppContext.dll",
- "lib/netcore50/System.AppContext.dll",
- "lib/netstandard1.6/System.AppContext.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.AppContext.dll",
- "ref/net463/System.AppContext.dll",
- "ref/netstandard/_._",
- "ref/netstandard1.3/System.AppContext.dll",
- "ref/netstandard1.3/System.AppContext.xml",
- "ref/netstandard1.3/de/System.AppContext.xml",
- "ref/netstandard1.3/es/System.AppContext.xml",
- "ref/netstandard1.3/fr/System.AppContext.xml",
- "ref/netstandard1.3/it/System.AppContext.xml",
- "ref/netstandard1.3/ja/System.AppContext.xml",
- "ref/netstandard1.3/ko/System.AppContext.xml",
- "ref/netstandard1.3/ru/System.AppContext.xml",
- "ref/netstandard1.3/zh-hans/System.AppContext.xml",
- "ref/netstandard1.3/zh-hant/System.AppContext.xml",
- "ref/netstandard1.6/System.AppContext.dll",
- "ref/netstandard1.6/System.AppContext.xml",
- "ref/netstandard1.6/de/System.AppContext.xml",
- "ref/netstandard1.6/es/System.AppContext.xml",
- "ref/netstandard1.6/fr/System.AppContext.xml",
- "ref/netstandard1.6/it/System.AppContext.xml",
- "ref/netstandard1.6/ja/System.AppContext.xml",
- "ref/netstandard1.6/ko/System.AppContext.xml",
- "ref/netstandard1.6/ru/System.AppContext.xml",
- "ref/netstandard1.6/zh-hans/System.AppContext.xml",
- "ref/netstandard1.6/zh-hant/System.AppContext.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.AppContext.dll",
- "system.appcontext.4.3.0.nupkg.sha512",
- "system.appcontext.nuspec"
- ]
- },
- "System.Buffers/4.4.0": {
- "sha512": "AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==",
- "type": "package",
- "path": "system.buffers/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "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",
- "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",
- "system.buffers.4.4.0.nupkg.sha512",
- "system.buffers.nuspec",
- "useSharedDesignerContext.txt",
- "version.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/1.4.0": {
- "sha512": "71hw5RUJRu5+q/geUY69gpXD8Upd12cH+F3MwpXV2zle7Bqqkrmc1JblOTuvUcgmdnUtQvBlV5e1d6RH+H2lvA==",
- "type": "package",
- "path": "system.collections.immutable/1.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.0/System.Collections.Immutable.dll",
- "lib/netstandard1.0/System.Collections.Immutable.xml",
- "lib/netstandard2.0/System.Collections.Immutable.dll",
- "lib/netstandard2.0/System.Collections.Immutable.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
- "ref/netcoreapp2.0/_._",
- "system.collections.immutable.1.4.0.nupkg.sha512",
- "system.collections.immutable.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Collections.NonGeneric/4.3.0": {
- "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
- "type": "package",
- "path": "system.collections.nongeneric/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Collections.NonGeneric.dll",
- "lib/netstandard1.3/System.Collections.NonGeneric.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Collections.NonGeneric.dll",
- "ref/netstandard1.3/System.Collections.NonGeneric.dll",
- "ref/netstandard1.3/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.collections.nongeneric.4.3.0.nupkg.sha512",
- "system.collections.nongeneric.nuspec"
- ]
- },
- "System.Collections.Specialized/4.3.0": {
- "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
- "type": "package",
- "path": "system.collections.specialized/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Collections.Specialized.dll",
- "lib/netstandard1.3/System.Collections.Specialized.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Collections.Specialized.dll",
- "ref/netstandard1.3/System.Collections.Specialized.dll",
- "ref/netstandard1.3/System.Collections.Specialized.xml",
- "ref/netstandard1.3/de/System.Collections.Specialized.xml",
- "ref/netstandard1.3/es/System.Collections.Specialized.xml",
- "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
- "ref/netstandard1.3/it/System.Collections.Specialized.xml",
- "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
- "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
- "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.collections.specialized.4.3.0.nupkg.sha512",
- "system.collections.specialized.nuspec"
- ]
- },
- "System.ComponentModel/4.3.0": {
- "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
- "type": "package",
- "path": "system.componentmodel/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.ComponentModel.dll",
- "lib/netstandard1.3/System.ComponentModel.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.ComponentModel.dll",
- "ref/netcore50/System.ComponentModel.xml",
- "ref/netcore50/de/System.ComponentModel.xml",
- "ref/netcore50/es/System.ComponentModel.xml",
- "ref/netcore50/fr/System.ComponentModel.xml",
- "ref/netcore50/it/System.ComponentModel.xml",
- "ref/netcore50/ja/System.ComponentModel.xml",
- "ref/netcore50/ko/System.ComponentModel.xml",
- "ref/netcore50/ru/System.ComponentModel.xml",
- "ref/netcore50/zh-hans/System.ComponentModel.xml",
- "ref/netcore50/zh-hant/System.ComponentModel.xml",
- "ref/netstandard1.0/System.ComponentModel.dll",
- "ref/netstandard1.0/System.ComponentModel.xml",
- "ref/netstandard1.0/de/System.ComponentModel.xml",
- "ref/netstandard1.0/es/System.ComponentModel.xml",
- "ref/netstandard1.0/fr/System.ComponentModel.xml",
- "ref/netstandard1.0/it/System.ComponentModel.xml",
- "ref/netstandard1.0/ja/System.ComponentModel.xml",
- "ref/netstandard1.0/ko/System.ComponentModel.xml",
- "ref/netstandard1.0/ru/System.ComponentModel.xml",
- "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
- "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.componentmodel.4.3.0.nupkg.sha512",
- "system.componentmodel.nuspec"
- ]
- },
- "System.ComponentModel.Annotations/4.4.0": {
- "sha512": "29K3DQ+IGU7LBaMjTo7SI7T7X/tsMtLvz1p56LJ556Iu0Dw3pKZw5g8yCYCWMRxrOF0Hr0FU0FwW0o42y2sb3A==",
- "type": "package",
- "path": "system.componentmodel.annotations/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "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/netcoreapp2.0/_._",
- "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
- "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
- "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/netcoreapp2.0/_._",
- "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/portable-net45+win8/_._",
- "ref/win8/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.componentmodel.annotations.4.4.0.nupkg.sha512",
- "system.componentmodel.annotations.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.ComponentModel.Primitives/4.3.0": {
- "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
- "type": "package",
- "path": "system.componentmodel.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/System.ComponentModel.Primitives.dll",
- "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/System.ComponentModel.Primitives.dll",
- "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
- "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
- "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
- "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
- "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
- "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
- "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
- "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
- "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.componentmodel.primitives.4.3.0.nupkg.sha512",
- "system.componentmodel.primitives.nuspec"
- ]
- },
- "System.ComponentModel.TypeConverter/4.3.0": {
- "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
- "type": "package",
- "path": "system.componentmodel.typeconverter/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/System.ComponentModel.TypeConverter.dll",
- "lib/net462/System.ComponentModel.TypeConverter.dll",
- "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
- "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/System.ComponentModel.TypeConverter.dll",
- "ref/net462/System.ComponentModel.TypeConverter.dll",
- "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
- "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
- "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
- "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
- "system.componentmodel.typeconverter.nuspec"
- ]
- },
- "System.Console/4.3.0": {
- "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
- "type": "package",
- "path": "system.console/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Console.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Console.dll",
- "ref/netstandard1.3/System.Console.dll",
- "ref/netstandard1.3/System.Console.xml",
- "ref/netstandard1.3/de/System.Console.xml",
- "ref/netstandard1.3/es/System.Console.xml",
- "ref/netstandard1.3/fr/System.Console.xml",
- "ref/netstandard1.3/it/System.Console.xml",
- "ref/netstandard1.3/ja/System.Console.xml",
- "ref/netstandard1.3/ko/System.Console.xml",
- "ref/netstandard1.3/ru/System.Console.xml",
- "ref/netstandard1.3/zh-hans/System.Console.xml",
- "ref/netstandard1.3/zh-hant/System.Console.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.console.4.3.0.nupkg.sha512",
- "system.console.nuspec"
- ]
- },
- "System.Data.SqlClient/4.4.3": {
- "sha512": "D1hEOS1oPLJ6WcGCzpTWe8SauWVxnDoDTUWhv5XCNdRm/QeSUk4BQ3ZDe7BH+zNVHDBkPYjVzpVjnCl43eOSGg==",
- "type": "package",
- "path": "system.data.sqlclient/4.4.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "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/netstandard1.2/System.Data.SqlClient.dll",
- "lib/netstandard1.3/System.Data.SqlClient.dll",
- "lib/netstandard2.0/System.Data.SqlClient.dll",
- "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/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/netstandard1.3/System.Data.SqlClient.dll",
- "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
- "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/netstandard1.3/System.Data.SqlClient.dll",
- "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
- "system.data.sqlclient.4.4.3.nupkg.sha512",
- "system.data.sqlclient.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Diagnostics.Contracts/4.3.0": {
- "sha512": "eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==",
- "type": "package",
- "path": "system.diagnostics.contracts/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Diagnostics.Contracts.dll",
- "lib/netstandard1.0/System.Diagnostics.Contracts.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.Diagnostics.Contracts.dll",
- "ref/netcore50/System.Diagnostics.Contracts.xml",
- "ref/netcore50/de/System.Diagnostics.Contracts.xml",
- "ref/netcore50/es/System.Diagnostics.Contracts.xml",
- "ref/netcore50/fr/System.Diagnostics.Contracts.xml",
- "ref/netcore50/it/System.Diagnostics.Contracts.xml",
- "ref/netcore50/ja/System.Diagnostics.Contracts.xml",
- "ref/netcore50/ko/System.Diagnostics.Contracts.xml",
- "ref/netcore50/ru/System.Diagnostics.Contracts.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml",
- "ref/netstandard1.0/System.Diagnostics.Contracts.dll",
- "ref/netstandard1.0/System.Diagnostics.Contracts.xml",
- "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml",
- "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml",
- "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml",
- "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml",
- "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml",
- "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml",
- "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml",
- "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml",
- "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.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.Diagnostics.Contracts.dll",
- "system.diagnostics.contracts.4.3.0.nupkg.sha512",
- "system.diagnostics.contracts.nuspec"
- ]
- },
- "System.Diagnostics.Debug/4.3.0": {
- "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "type": "package",
- "path": "system.diagnostics.debug/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Debug.dll",
- "ref/netcore50/System.Diagnostics.Debug.xml",
- "ref/netcore50/de/System.Diagnostics.Debug.xml",
- "ref/netcore50/es/System.Diagnostics.Debug.xml",
- "ref/netcore50/fr/System.Diagnostics.Debug.xml",
- "ref/netcore50/it/System.Diagnostics.Debug.xml",
- "ref/netcore50/ja/System.Diagnostics.Debug.xml",
- "ref/netcore50/ko/System.Diagnostics.Debug.xml",
- "ref/netcore50/ru/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/System.Diagnostics.Debug.dll",
- "ref/netstandard1.0/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/System.Diagnostics.Debug.dll",
- "ref/netstandard1.3/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.debug.4.3.0.nupkg.sha512",
- "system.diagnostics.debug.nuspec"
- ]
- },
- "System.Diagnostics.DiagnosticSource/4.4.1": {
- "sha512": "U/KcC19fyLsPN1GLmeU2zQq15MMVcPwMOYPADVo1+WIoJpvMHxrzvl+BLLZwTEZSneGwaPFZ0aWr0nJ7B7LSdA==",
- "type": "package",
- "path": "system.diagnostics.diagnosticsource/4.4.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net45/System.Diagnostics.DiagnosticSource.dll",
- "lib/net45/System.Diagnostics.DiagnosticSource.xml",
- "lib/net46/System.Diagnostics.DiagnosticSource.dll",
- "lib/net46/System.Diagnostics.DiagnosticSource.xml",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
- "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
- "ref/netcoreapp2.0/_._",
- "system.diagnostics.diagnosticsource.4.4.1.nupkg.sha512",
- "system.diagnostics.diagnosticsource.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Diagnostics.FileVersionInfo/4.3.0": {
- "sha512": "omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==",
- "type": "package",
- "path": "system.diagnostics.fileversioninfo/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Diagnostics.FileVersionInfo.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Diagnostics.FileVersionInfo.dll",
- "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
- "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml",
- "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml",
- "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml",
- "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
- "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll",
- "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll",
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
- "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512",
- "system.diagnostics.fileversioninfo.nuspec"
- ]
- },
- "System.Diagnostics.StackTrace/4.3.0": {
- "sha512": "BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
- "type": "package",
- "path": "system.diagnostics.stacktrace/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Diagnostics.StackTrace.dll",
- "lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Diagnostics.StackTrace.dll",
- "ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
- "ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
- "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
- "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
- "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll",
- "system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
- "system.diagnostics.stacktrace.nuspec"
- ]
- },
- "System.Diagnostics.Tools/4.3.0": {
- "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
- "type": "package",
- "path": "system.diagnostics.tools/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Tools.dll",
- "ref/netcore50/System.Diagnostics.Tools.xml",
- "ref/netcore50/de/System.Diagnostics.Tools.xml",
- "ref/netcore50/es/System.Diagnostics.Tools.xml",
- "ref/netcore50/fr/System.Diagnostics.Tools.xml",
- "ref/netcore50/it/System.Diagnostics.Tools.xml",
- "ref/netcore50/ja/System.Diagnostics.Tools.xml",
- "ref/netcore50/ko/System.Diagnostics.Tools.xml",
- "ref/netcore50/ru/System.Diagnostics.Tools.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/System.Diagnostics.Tools.dll",
- "ref/netstandard1.0/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
- "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.tools.4.3.0.nupkg.sha512",
- "system.diagnostics.tools.nuspec"
- ]
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "type": "package",
- "path": "system.diagnostics.tracing/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Diagnostics.Tracing.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Diagnostics.Tracing.dll",
- "ref/netcore50/System.Diagnostics.Tracing.dll",
- "ref/netcore50/System.Diagnostics.Tracing.xml",
- "ref/netcore50/de/System.Diagnostics.Tracing.xml",
- "ref/netcore50/es/System.Diagnostics.Tracing.xml",
- "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
- "ref/netcore50/it/System.Diagnostics.Tracing.xml",
- "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
- "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
- "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.tracing.4.3.0.nupkg.sha512",
- "system.diagnostics.tracing.nuspec"
- ]
- },
- "System.Dynamic.Runtime/4.3.0": {
- "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
- "type": "package",
- "path": "system.dynamic.runtime/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Dynamic.Runtime.dll",
- "lib/netstandard1.3/System.Dynamic.Runtime.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.Dynamic.Runtime.dll",
- "ref/netcore50/System.Dynamic.Runtime.xml",
- "ref/netcore50/de/System.Dynamic.Runtime.xml",
- "ref/netcore50/es/System.Dynamic.Runtime.xml",
- "ref/netcore50/fr/System.Dynamic.Runtime.xml",
- "ref/netcore50/it/System.Dynamic.Runtime.xml",
- "ref/netcore50/ja/System.Dynamic.Runtime.xml",
- "ref/netcore50/ko/System.Dynamic.Runtime.xml",
- "ref/netcore50/ru/System.Dynamic.Runtime.xml",
- "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
- "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/System.Dynamic.Runtime.dll",
- "ref/netstandard1.0/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/System.Dynamic.Runtime.dll",
- "ref/netstandard1.3/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.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.Dynamic.Runtime.dll",
- "system.dynamic.runtime.4.3.0.nupkg.sha512",
- "system.dynamic.runtime.nuspec"
- ]
- },
- "System.Globalization/4.3.0": {
- "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "type": "package",
- "path": "system.globalization/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Globalization.dll",
- "ref/netcore50/System.Globalization.xml",
- "ref/netcore50/de/System.Globalization.xml",
- "ref/netcore50/es/System.Globalization.xml",
- "ref/netcore50/fr/System.Globalization.xml",
- "ref/netcore50/it/System.Globalization.xml",
- "ref/netcore50/ja/System.Globalization.xml",
- "ref/netcore50/ko/System.Globalization.xml",
- "ref/netcore50/ru/System.Globalization.xml",
- "ref/netcore50/zh-hans/System.Globalization.xml",
- "ref/netcore50/zh-hant/System.Globalization.xml",
- "ref/netstandard1.0/System.Globalization.dll",
- "ref/netstandard1.0/System.Globalization.xml",
- "ref/netstandard1.0/de/System.Globalization.xml",
- "ref/netstandard1.0/es/System.Globalization.xml",
- "ref/netstandard1.0/fr/System.Globalization.xml",
- "ref/netstandard1.0/it/System.Globalization.xml",
- "ref/netstandard1.0/ja/System.Globalization.xml",
- "ref/netstandard1.0/ko/System.Globalization.xml",
- "ref/netstandard1.0/ru/System.Globalization.xml",
- "ref/netstandard1.0/zh-hans/System.Globalization.xml",
- "ref/netstandard1.0/zh-hant/System.Globalization.xml",
- "ref/netstandard1.3/System.Globalization.dll",
- "ref/netstandard1.3/System.Globalization.xml",
- "ref/netstandard1.3/de/System.Globalization.xml",
- "ref/netstandard1.3/es/System.Globalization.xml",
- "ref/netstandard1.3/fr/System.Globalization.xml",
- "ref/netstandard1.3/it/System.Globalization.xml",
- "ref/netstandard1.3/ja/System.Globalization.xml",
- "ref/netstandard1.3/ko/System.Globalization.xml",
- "ref/netstandard1.3/ru/System.Globalization.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.globalization.4.3.0.nupkg.sha512",
- "system.globalization.nuspec"
- ]
- },
- "System.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/5.1.4": {
- "sha512": "hLUU1N99aL9uyxiTraBnCKlpUKsbP/+5ygD7cswspH9/+M7fAAL0hRzt2aA4w7VEQlSSiu8j+xWFk3NRcqhfQQ==",
- "type": "package",
- "path": "system.identitymodel.tokens.jwt/5.1.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
- "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
- "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
- "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
- "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
- "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
- "system.identitymodel.tokens.jwt.5.1.4.nupkg.sha512",
- "system.identitymodel.tokens.jwt.nuspec"
- ]
- },
- "System.Interactive.Async/3.1.1": {
- "sha512": "hZccYiIE5RS1/J9Tb/BNtosAGVggdlsJm4Ojdu+gDV0p4AIi+LUfUogMKkRacljQEJd2AG6vYzvcjhQFkqoZmw==",
- "type": "package",
- "path": "system.interactive.async/3.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/System.Interactive.Async.dll",
- "lib/net45/System.Interactive.Async.xml",
- "lib/net46/System.Interactive.Async.dll",
- "lib/net46/System.Interactive.Async.xml",
- "lib/netstandard1.0/System.Interactive.Async.dll",
- "lib/netstandard1.0/System.Interactive.Async.xml",
- "lib/netstandard1.3/System.Interactive.Async.dll",
- "lib/netstandard1.3/System.Interactive.Async.xml",
- "system.interactive.async.3.1.1.nupkg.sha512",
- "system.interactive.async.nuspec"
- ]
- },
- "System.IO/4.3.0": {
- "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "type": "package",
- "path": "system.io/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.IO.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.IO.dll",
- "ref/netcore50/System.IO.dll",
- "ref/netcore50/System.IO.xml",
- "ref/netcore50/de/System.IO.xml",
- "ref/netcore50/es/System.IO.xml",
- "ref/netcore50/fr/System.IO.xml",
- "ref/netcore50/it/System.IO.xml",
- "ref/netcore50/ja/System.IO.xml",
- "ref/netcore50/ko/System.IO.xml",
- "ref/netcore50/ru/System.IO.xml",
- "ref/netcore50/zh-hans/System.IO.xml",
- "ref/netcore50/zh-hant/System.IO.xml",
- "ref/netstandard1.0/System.IO.dll",
- "ref/netstandard1.0/System.IO.xml",
- "ref/netstandard1.0/de/System.IO.xml",
- "ref/netstandard1.0/es/System.IO.xml",
- "ref/netstandard1.0/fr/System.IO.xml",
- "ref/netstandard1.0/it/System.IO.xml",
- "ref/netstandard1.0/ja/System.IO.xml",
- "ref/netstandard1.0/ko/System.IO.xml",
- "ref/netstandard1.0/ru/System.IO.xml",
- "ref/netstandard1.0/zh-hans/System.IO.xml",
- "ref/netstandard1.0/zh-hant/System.IO.xml",
- "ref/netstandard1.3/System.IO.dll",
- "ref/netstandard1.3/System.IO.xml",
- "ref/netstandard1.3/de/System.IO.xml",
- "ref/netstandard1.3/es/System.IO.xml",
- "ref/netstandard1.3/fr/System.IO.xml",
- "ref/netstandard1.3/it/System.IO.xml",
- "ref/netstandard1.3/ja/System.IO.xml",
- "ref/netstandard1.3/ko/System.IO.xml",
- "ref/netstandard1.3/ru/System.IO.xml",
- "ref/netstandard1.3/zh-hans/System.IO.xml",
- "ref/netstandard1.3/zh-hant/System.IO.xml",
- "ref/netstandard1.5/System.IO.dll",
- "ref/netstandard1.5/System.IO.xml",
- "ref/netstandard1.5/de/System.IO.xml",
- "ref/netstandard1.5/es/System.IO.xml",
- "ref/netstandard1.5/fr/System.IO.xml",
- "ref/netstandard1.5/it/System.IO.xml",
- "ref/netstandard1.5/ja/System.IO.xml",
- "ref/netstandard1.5/ko/System.IO.xml",
- "ref/netstandard1.5/ru/System.IO.xml",
- "ref/netstandard1.5/zh-hans/System.IO.xml",
- "ref/netstandard1.5/zh-hant/System.IO.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.4.3.0.nupkg.sha512",
- "system.io.nuspec"
- ]
- },
- "System.IO.Compression/4.3.0": {
- "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
- "type": "package",
- "path": "system.io.compression/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.IO.Compression.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net46/System.IO.Compression.dll",
- "ref/netcore50/System.IO.Compression.dll",
- "ref/netcore50/System.IO.Compression.xml",
- "ref/netcore50/de/System.IO.Compression.xml",
- "ref/netcore50/es/System.IO.Compression.xml",
- "ref/netcore50/fr/System.IO.Compression.xml",
- "ref/netcore50/it/System.IO.Compression.xml",
- "ref/netcore50/ja/System.IO.Compression.xml",
- "ref/netcore50/ko/System.IO.Compression.xml",
- "ref/netcore50/ru/System.IO.Compression.xml",
- "ref/netcore50/zh-hans/System.IO.Compression.xml",
- "ref/netcore50/zh-hant/System.IO.Compression.xml",
- "ref/netstandard1.1/System.IO.Compression.dll",
- "ref/netstandard1.1/System.IO.Compression.xml",
- "ref/netstandard1.1/de/System.IO.Compression.xml",
- "ref/netstandard1.1/es/System.IO.Compression.xml",
- "ref/netstandard1.1/fr/System.IO.Compression.xml",
- "ref/netstandard1.1/it/System.IO.Compression.xml",
- "ref/netstandard1.1/ja/System.IO.Compression.xml",
- "ref/netstandard1.1/ko/System.IO.Compression.xml",
- "ref/netstandard1.1/ru/System.IO.Compression.xml",
- "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
- "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
- "ref/netstandard1.3/System.IO.Compression.dll",
- "ref/netstandard1.3/System.IO.Compression.xml",
- "ref/netstandard1.3/de/System.IO.Compression.xml",
- "ref/netstandard1.3/es/System.IO.Compression.xml",
- "ref/netstandard1.3/fr/System.IO.Compression.xml",
- "ref/netstandard1.3/it/System.IO.Compression.xml",
- "ref/netstandard1.3/ja/System.IO.Compression.xml",
- "ref/netstandard1.3/ko/System.IO.Compression.xml",
- "ref/netstandard1.3/ru/System.IO.Compression.xml",
- "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
- "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
- "runtimes/win/lib/net46/System.IO.Compression.dll",
- "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
- "system.io.compression.4.3.0.nupkg.sha512",
- "system.io.compression.nuspec"
- ]
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
- "type": "package",
- "path": "system.io.compression.zipfile/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.Compression.ZipFile.dll",
- "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.Compression.ZipFile.dll",
- "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
- "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
- "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.compression.zipfile.4.3.0.nupkg.sha512",
- "system.io.compression.zipfile.nuspec"
- ]
- },
- "System.IO.FileSystem/4.3.0": {
- "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "type": "package",
- "path": "system.io.filesystem/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.FileSystem.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.FileSystem.dll",
- "ref/netstandard1.3/System.IO.FileSystem.dll",
- "ref/netstandard1.3/System.IO.FileSystem.xml",
- "ref/netstandard1.3/de/System.IO.FileSystem.xml",
- "ref/netstandard1.3/es/System.IO.FileSystem.xml",
- "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
- "ref/netstandard1.3/it/System.IO.FileSystem.xml",
- "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
- "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
- "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
- "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
- "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.filesystem.4.3.0.nupkg.sha512",
- "system.io.filesystem.nuspec"
- ]
- },
- "System.IO.FileSystem.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.Linq/4.3.0": {
- "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "type": "package",
- "path": "system.linq/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.dll",
- "lib/netcore50/System.Linq.dll",
- "lib/netstandard1.6/System.Linq.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.dll",
- "ref/netcore50/System.Linq.dll",
- "ref/netcore50/System.Linq.xml",
- "ref/netcore50/de/System.Linq.xml",
- "ref/netcore50/es/System.Linq.xml",
- "ref/netcore50/fr/System.Linq.xml",
- "ref/netcore50/it/System.Linq.xml",
- "ref/netcore50/ja/System.Linq.xml",
- "ref/netcore50/ko/System.Linq.xml",
- "ref/netcore50/ru/System.Linq.xml",
- "ref/netcore50/zh-hans/System.Linq.xml",
- "ref/netcore50/zh-hant/System.Linq.xml",
- "ref/netstandard1.0/System.Linq.dll",
- "ref/netstandard1.0/System.Linq.xml",
- "ref/netstandard1.0/de/System.Linq.xml",
- "ref/netstandard1.0/es/System.Linq.xml",
- "ref/netstandard1.0/fr/System.Linq.xml",
- "ref/netstandard1.0/it/System.Linq.xml",
- "ref/netstandard1.0/ja/System.Linq.xml",
- "ref/netstandard1.0/ko/System.Linq.xml",
- "ref/netstandard1.0/ru/System.Linq.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.xml",
- "ref/netstandard1.6/System.Linq.dll",
- "ref/netstandard1.6/System.Linq.xml",
- "ref/netstandard1.6/de/System.Linq.xml",
- "ref/netstandard1.6/es/System.Linq.xml",
- "ref/netstandard1.6/fr/System.Linq.xml",
- "ref/netstandard1.6/it/System.Linq.xml",
- "ref/netstandard1.6/ja/System.Linq.xml",
- "ref/netstandard1.6/ko/System.Linq.xml",
- "ref/netstandard1.6/ru/System.Linq.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.linq.4.3.0.nupkg.sha512",
- "system.linq.nuspec"
- ]
- },
- "System.Linq.Expressions/4.3.0": {
- "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "type": "package",
- "path": "system.linq.expressions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.Expressions.dll",
- "lib/netcore50/System.Linq.Expressions.dll",
- "lib/netstandard1.6/System.Linq.Expressions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.Expressions.dll",
- "ref/netcore50/System.Linq.Expressions.dll",
- "ref/netcore50/System.Linq.Expressions.xml",
- "ref/netcore50/de/System.Linq.Expressions.xml",
- "ref/netcore50/es/System.Linq.Expressions.xml",
- "ref/netcore50/fr/System.Linq.Expressions.xml",
- "ref/netcore50/it/System.Linq.Expressions.xml",
- "ref/netcore50/ja/System.Linq.Expressions.xml",
- "ref/netcore50/ko/System.Linq.Expressions.xml",
- "ref/netcore50/ru/System.Linq.Expressions.xml",
- "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
- "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.0/System.Linq.Expressions.dll",
- "ref/netstandard1.0/System.Linq.Expressions.xml",
- "ref/netstandard1.0/de/System.Linq.Expressions.xml",
- "ref/netstandard1.0/es/System.Linq.Expressions.xml",
- "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.0/it/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.3/System.Linq.Expressions.dll",
- "ref/netstandard1.3/System.Linq.Expressions.xml",
- "ref/netstandard1.3/de/System.Linq.Expressions.xml",
- "ref/netstandard1.3/es/System.Linq.Expressions.xml",
- "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.3/it/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.6/System.Linq.Expressions.dll",
- "ref/netstandard1.6/System.Linq.Expressions.xml",
- "ref/netstandard1.6/de/System.Linq.Expressions.xml",
- "ref/netstandard1.6/es/System.Linq.Expressions.xml",
- "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.6/it/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
- "system.linq.expressions.4.3.0.nupkg.sha512",
- "system.linq.expressions.nuspec"
- ]
- },
- "System.Linq.Queryable/4.0.1": {
- "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
- "type": "package",
- "path": "system.linq.queryable/4.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/monoandroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Linq.Queryable.dll",
- "lib/netstandard1.3/System.Linq.Queryable.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.Linq.Queryable.dll",
- "ref/netcore50/System.Linq.Queryable.xml",
- "ref/netcore50/de/System.Linq.Queryable.xml",
- "ref/netcore50/es/System.Linq.Queryable.xml",
- "ref/netcore50/fr/System.Linq.Queryable.xml",
- "ref/netcore50/it/System.Linq.Queryable.xml",
- "ref/netcore50/ja/System.Linq.Queryable.xml",
- "ref/netcore50/ko/System.Linq.Queryable.xml",
- "ref/netcore50/ru/System.Linq.Queryable.xml",
- "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
- "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
- "ref/netstandard1.0/System.Linq.Queryable.dll",
- "ref/netstandard1.0/System.Linq.Queryable.xml",
- "ref/netstandard1.0/de/System.Linq.Queryable.xml",
- "ref/netstandard1.0/es/System.Linq.Queryable.xml",
- "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
- "ref/netstandard1.0/it/System.Linq.Queryable.xml",
- "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
- "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
- "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.linq.queryable.4.0.1.nupkg.sha512",
- "system.linq.queryable.nuspec"
- ]
- },
- "System.Net.Http/4.3.0": {
- "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
- "type": "package",
- "path": "system.net.http/4.3.0",
- "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/net46/System.Net.Http.xml",
- "ref/net46/de/System.Net.Http.xml",
- "ref/net46/es/System.Net.Http.xml",
- "ref/net46/fr/System.Net.Http.xml",
- "ref/net46/it/System.Net.Http.xml",
- "ref/net46/ja/System.Net.Http.xml",
- "ref/net46/ko/System.Net.Http.xml",
- "ref/net46/ru/System.Net.Http.xml",
- "ref/net46/zh-hans/System.Net.Http.xml",
- "ref/net46/zh-hant/System.Net.Http.xml",
- "ref/netcore50/System.Net.Http.dll",
- "ref/netcore50/System.Net.Http.xml",
- "ref/netcore50/de/System.Net.Http.xml",
- "ref/netcore50/es/System.Net.Http.xml",
- "ref/netcore50/fr/System.Net.Http.xml",
- "ref/netcore50/it/System.Net.Http.xml",
- "ref/netcore50/ja/System.Net.Http.xml",
- "ref/netcore50/ko/System.Net.Http.xml",
- "ref/netcore50/ru/System.Net.Http.xml",
- "ref/netcore50/zh-hans/System.Net.Http.xml",
- "ref/netcore50/zh-hant/System.Net.Http.xml",
- "ref/netstandard1.1/System.Net.Http.dll",
- "ref/netstandard1.1/System.Net.Http.xml",
- "ref/netstandard1.1/de/System.Net.Http.xml",
- "ref/netstandard1.1/es/System.Net.Http.xml",
- "ref/netstandard1.1/fr/System.Net.Http.xml",
- "ref/netstandard1.1/it/System.Net.Http.xml",
- "ref/netstandard1.1/ja/System.Net.Http.xml",
- "ref/netstandard1.1/ko/System.Net.Http.xml",
- "ref/netstandard1.1/ru/System.Net.Http.xml",
- "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
- "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
- "ref/netstandard1.3/System.Net.Http.dll",
- "ref/netstandard1.3/System.Net.Http.xml",
- "ref/netstandard1.3/de/System.Net.Http.xml",
- "ref/netstandard1.3/es/System.Net.Http.xml",
- "ref/netstandard1.3/fr/System.Net.Http.xml",
- "ref/netstandard1.3/it/System.Net.Http.xml",
- "ref/netstandard1.3/ja/System.Net.Http.xml",
- "ref/netstandard1.3/ko/System.Net.Http.xml",
- "ref/netstandard1.3/ru/System.Net.Http.xml",
- "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
- "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
- "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.0.nupkg.sha512",
- "system.net.http.nuspec"
- ]
- },
- "System.Net.NameResolution/4.3.0": {
- "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
- "type": "package",
- "path": "system.net.nameresolution/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Net.NameResolution.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Net.NameResolution.dll",
- "ref/netstandard1.3/System.Net.NameResolution.dll",
- "ref/netstandard1.3/System.Net.NameResolution.xml",
- "ref/netstandard1.3/de/System.Net.NameResolution.xml",
- "ref/netstandard1.3/es/System.Net.NameResolution.xml",
- "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
- "ref/netstandard1.3/it/System.Net.NameResolution.xml",
- "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
- "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
- "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
- "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
- "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
- "runtimes/win/lib/net46/System.Net.NameResolution.dll",
- "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
- "system.net.nameresolution.4.3.0.nupkg.sha512",
- "system.net.nameresolution.nuspec"
- ]
- },
- "System.Net.Primitives/4.3.0": {
- "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "type": "package",
- "path": "system.net.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Net.Primitives.dll",
- "ref/netcore50/System.Net.Primitives.xml",
- "ref/netcore50/de/System.Net.Primitives.xml",
- "ref/netcore50/es/System.Net.Primitives.xml",
- "ref/netcore50/fr/System.Net.Primitives.xml",
- "ref/netcore50/it/System.Net.Primitives.xml",
- "ref/netcore50/ja/System.Net.Primitives.xml",
- "ref/netcore50/ko/System.Net.Primitives.xml",
- "ref/netcore50/ru/System.Net.Primitives.xml",
- "ref/netcore50/zh-hans/System.Net.Primitives.xml",
- "ref/netcore50/zh-hant/System.Net.Primitives.xml",
- "ref/netstandard1.0/System.Net.Primitives.dll",
- "ref/netstandard1.0/System.Net.Primitives.xml",
- "ref/netstandard1.0/de/System.Net.Primitives.xml",
- "ref/netstandard1.0/es/System.Net.Primitives.xml",
- "ref/netstandard1.0/fr/System.Net.Primitives.xml",
- "ref/netstandard1.0/it/System.Net.Primitives.xml",
- "ref/netstandard1.0/ja/System.Net.Primitives.xml",
- "ref/netstandard1.0/ko/System.Net.Primitives.xml",
- "ref/netstandard1.0/ru/System.Net.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
- "ref/netstandard1.1/System.Net.Primitives.dll",
- "ref/netstandard1.1/System.Net.Primitives.xml",
- "ref/netstandard1.1/de/System.Net.Primitives.xml",
- "ref/netstandard1.1/es/System.Net.Primitives.xml",
- "ref/netstandard1.1/fr/System.Net.Primitives.xml",
- "ref/netstandard1.1/it/System.Net.Primitives.xml",
- "ref/netstandard1.1/ja/System.Net.Primitives.xml",
- "ref/netstandard1.1/ko/System.Net.Primitives.xml",
- "ref/netstandard1.1/ru/System.Net.Primitives.xml",
- "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
- "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
- "ref/netstandard1.3/System.Net.Primitives.dll",
- "ref/netstandard1.3/System.Net.Primitives.xml",
- "ref/netstandard1.3/de/System.Net.Primitives.xml",
- "ref/netstandard1.3/es/System.Net.Primitives.xml",
- "ref/netstandard1.3/fr/System.Net.Primitives.xml",
- "ref/netstandard1.3/it/System.Net.Primitives.xml",
- "ref/netstandard1.3/ja/System.Net.Primitives.xml",
- "ref/netstandard1.3/ko/System.Net.Primitives.xml",
- "ref/netstandard1.3/ru/System.Net.Primitives.xml",
- "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
- "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.net.primitives.4.3.0.nupkg.sha512",
- "system.net.primitives.nuspec"
- ]
- },
- "System.Net.Security/4.3.0": {
- "sha512": "IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
- "type": "package",
- "path": "system.net.security/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Net.Security.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Net.Security.dll",
- "ref/netstandard1.3/System.Net.Security.dll",
- "ref/netstandard1.3/System.Net.Security.xml",
- "ref/netstandard1.3/de/System.Net.Security.xml",
- "ref/netstandard1.3/es/System.Net.Security.xml",
- "ref/netstandard1.3/fr/System.Net.Security.xml",
- "ref/netstandard1.3/it/System.Net.Security.xml",
- "ref/netstandard1.3/ja/System.Net.Security.xml",
- "ref/netstandard1.3/ko/System.Net.Security.xml",
- "ref/netstandard1.3/ru/System.Net.Security.xml",
- "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
- "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
- "runtimes/win/lib/net46/System.Net.Security.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
- "runtimes/win7/lib/netcore50/_._",
- "system.net.security.4.3.0.nupkg.sha512",
- "system.net.security.nuspec"
- ]
- },
- "System.Net.Sockets/4.3.0": {
- "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
- "type": "package",
- "path": "system.net.sockets/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Net.Sockets.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Net.Sockets.dll",
- "ref/netstandard1.3/System.Net.Sockets.dll",
- "ref/netstandard1.3/System.Net.Sockets.xml",
- "ref/netstandard1.3/de/System.Net.Sockets.xml",
- "ref/netstandard1.3/es/System.Net.Sockets.xml",
- "ref/netstandard1.3/fr/System.Net.Sockets.xml",
- "ref/netstandard1.3/it/System.Net.Sockets.xml",
- "ref/netstandard1.3/ja/System.Net.Sockets.xml",
- "ref/netstandard1.3/ko/System.Net.Sockets.xml",
- "ref/netstandard1.3/ru/System.Net.Sockets.xml",
- "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
- "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.net.sockets.4.3.0.nupkg.sha512",
- "system.net.sockets.nuspec"
- ]
- },
- "System.Numerics.Vectors/4.4.0": {
- "sha512": "UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ==",
- "type": "package",
- "path": "system.numerics.vectors/4.4.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/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "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/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.numerics.vectors.4.4.0.nupkg.sha512",
- "system.numerics.vectors.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.ObjectModel/4.3.0": {
- "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "type": "package",
- "path": "system.objectmodel/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.ObjectModel.dll",
- "lib/netstandard1.3/System.ObjectModel.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.ObjectModel.dll",
- "ref/netcore50/System.ObjectModel.xml",
- "ref/netcore50/de/System.ObjectModel.xml",
- "ref/netcore50/es/System.ObjectModel.xml",
- "ref/netcore50/fr/System.ObjectModel.xml",
- "ref/netcore50/it/System.ObjectModel.xml",
- "ref/netcore50/ja/System.ObjectModel.xml",
- "ref/netcore50/ko/System.ObjectModel.xml",
- "ref/netcore50/ru/System.ObjectModel.xml",
- "ref/netcore50/zh-hans/System.ObjectModel.xml",
- "ref/netcore50/zh-hant/System.ObjectModel.xml",
- "ref/netstandard1.0/System.ObjectModel.dll",
- "ref/netstandard1.0/System.ObjectModel.xml",
- "ref/netstandard1.0/de/System.ObjectModel.xml",
- "ref/netstandard1.0/es/System.ObjectModel.xml",
- "ref/netstandard1.0/fr/System.ObjectModel.xml",
- "ref/netstandard1.0/it/System.ObjectModel.xml",
- "ref/netstandard1.0/ja/System.ObjectModel.xml",
- "ref/netstandard1.0/ko/System.ObjectModel.xml",
- "ref/netstandard1.0/ru/System.ObjectModel.xml",
- "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
- "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
- "ref/netstandard1.3/System.ObjectModel.dll",
- "ref/netstandard1.3/System.ObjectModel.xml",
- "ref/netstandard1.3/de/System.ObjectModel.xml",
- "ref/netstandard1.3/es/System.ObjectModel.xml",
- "ref/netstandard1.3/fr/System.ObjectModel.xml",
- "ref/netstandard1.3/it/System.ObjectModel.xml",
- "ref/netstandard1.3/ja/System.ObjectModel.xml",
- "ref/netstandard1.3/ko/System.ObjectModel.xml",
- "ref/netstandard1.3/ru/System.ObjectModel.xml",
- "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
- "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.objectmodel.4.3.0.nupkg.sha512",
- "system.objectmodel.nuspec"
- ]
- },
- "System.Private.DataContractSerialization/4.1.1": {
- "sha512": "lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
- "type": "package",
- "path": "system.private.datacontractserialization/4.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.3/System.Private.DataContractSerialization.dll",
- "ref/netstandard/_._",
- "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll",
- "system.private.datacontractserialization.4.1.1.nupkg.sha512",
- "system.private.datacontractserialization.nuspec"
- ]
- },
- "System.Reflection/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "system.reflection/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Reflection.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Reflection.dll",
- "ref/netcore50/System.Reflection.dll",
- "ref/netcore50/System.Reflection.xml",
- "ref/netcore50/de/System.Reflection.xml",
- "ref/netcore50/es/System.Reflection.xml",
- "ref/netcore50/fr/System.Reflection.xml",
- "ref/netcore50/it/System.Reflection.xml",
- "ref/netcore50/ja/System.Reflection.xml",
- "ref/netcore50/ko/System.Reflection.xml",
- "ref/netcore50/ru/System.Reflection.xml",
- "ref/netcore50/zh-hans/System.Reflection.xml",
- "ref/netcore50/zh-hant/System.Reflection.xml",
- "ref/netstandard1.0/System.Reflection.dll",
- "ref/netstandard1.0/System.Reflection.xml",
- "ref/netstandard1.0/de/System.Reflection.xml",
- "ref/netstandard1.0/es/System.Reflection.xml",
- "ref/netstandard1.0/fr/System.Reflection.xml",
- "ref/netstandard1.0/it/System.Reflection.xml",
- "ref/netstandard1.0/ja/System.Reflection.xml",
- "ref/netstandard1.0/ko/System.Reflection.xml",
- "ref/netstandard1.0/ru/System.Reflection.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.xml",
- "ref/netstandard1.3/System.Reflection.dll",
- "ref/netstandard1.3/System.Reflection.xml",
- "ref/netstandard1.3/de/System.Reflection.xml",
- "ref/netstandard1.3/es/System.Reflection.xml",
- "ref/netstandard1.3/fr/System.Reflection.xml",
- "ref/netstandard1.3/it/System.Reflection.xml",
- "ref/netstandard1.3/ja/System.Reflection.xml",
- "ref/netstandard1.3/ko/System.Reflection.xml",
- "ref/netstandard1.3/ru/System.Reflection.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.xml",
- "ref/netstandard1.5/System.Reflection.dll",
- "ref/netstandard1.5/System.Reflection.xml",
- "ref/netstandard1.5/de/System.Reflection.xml",
- "ref/netstandard1.5/es/System.Reflection.xml",
- "ref/netstandard1.5/fr/System.Reflection.xml",
- "ref/netstandard1.5/it/System.Reflection.xml",
- "ref/netstandard1.5/ja/System.Reflection.xml",
- "ref/netstandard1.5/ko/System.Reflection.xml",
- "ref/netstandard1.5/ru/System.Reflection.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.4.3.0.nupkg.sha512",
- "system.reflection.nuspec"
- ]
- },
- "System.Reflection.Emit/4.3.0": {
- "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "type": "package",
- "path": "system.reflection.emit/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.dll",
- "lib/netstandard1.3/System.Reflection.Emit.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/net45/_._",
- "ref/netstandard1.1/System.Reflection.Emit.dll",
- "ref/netstandard1.1/System.Reflection.Emit.xml",
- "ref/netstandard1.1/de/System.Reflection.Emit.xml",
- "ref/netstandard1.1/es/System.Reflection.Emit.xml",
- "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
- "ref/netstandard1.1/it/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
- "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
- "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
- "ref/xamarinmac20/_._",
- "system.reflection.emit.4.3.0.nupkg.sha512",
- "system.reflection.emit.nuspec"
- ]
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "type": "package",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
- "lib/portable-net45+wp8/_._",
- "lib/wp80/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
- "ref/portable-net45+wp8/_._",
- "ref/wp80/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/_._",
- "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
- "system.reflection.emit.ilgeneration.nuspec"
- ]
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "type": "package",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
- "lib/portable-net45+wp8/_._",
- "lib/wp80/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
- "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
- "ref/portable-net45+wp8/_._",
- "ref/wp80/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/_._",
- "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
- "system.reflection.emit.lightweight.nuspec"
- ]
- },
- "System.Reflection.Extensions/4.3.0": {
- "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "type": "package",
- "path": "system.reflection.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Extensions.dll",
- "ref/netcore50/System.Reflection.Extensions.xml",
- "ref/netcore50/de/System.Reflection.Extensions.xml",
- "ref/netcore50/es/System.Reflection.Extensions.xml",
- "ref/netcore50/fr/System.Reflection.Extensions.xml",
- "ref/netcore50/it/System.Reflection.Extensions.xml",
- "ref/netcore50/ja/System.Reflection.Extensions.xml",
- "ref/netcore50/ko/System.Reflection.Extensions.xml",
- "ref/netcore50/ru/System.Reflection.Extensions.xml",
- "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
- "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/System.Reflection.Extensions.dll",
- "ref/netstandard1.0/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.extensions.4.3.0.nupkg.sha512",
- "system.reflection.extensions.nuspec"
- ]
- },
- "System.Reflection.Metadata/1.5.0": {
- "sha512": "423hF/x1/1/aBT6hjgrp8RH2zdKOd1iTujlHisSesTW/cgv1ixUitfk23ZknVzItMm6jnwp9CBwI2P3r9jpitw==",
- "type": "package",
- "path": "system.reflection.metadata/1.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.1/System.Reflection.Metadata.dll",
- "lib/netstandard1.1/System.Reflection.Metadata.xml",
- "lib/netstandard2.0/System.Reflection.Metadata.dll",
- "lib/netstandard2.0/System.Reflection.Metadata.xml",
- "lib/portable-net45+win8/System.Reflection.Metadata.dll",
- "lib/portable-net45+win8/System.Reflection.Metadata.xml",
- "ref/netcoreapp2.0/_._",
- "system.reflection.metadata.1.5.0.nupkg.sha512",
- "system.reflection.metadata.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Reflection.Primitives/4.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "system.reflection.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Primitives.dll",
- "ref/netcore50/System.Reflection.Primitives.xml",
- "ref/netcore50/de/System.Reflection.Primitives.xml",
- "ref/netcore50/es/System.Reflection.Primitives.xml",
- "ref/netcore50/fr/System.Reflection.Primitives.xml",
- "ref/netcore50/it/System.Reflection.Primitives.xml",
- "ref/netcore50/ja/System.Reflection.Primitives.xml",
- "ref/netcore50/ko/System.Reflection.Primitives.xml",
- "ref/netcore50/ru/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/System.Reflection.Primitives.dll",
- "ref/netstandard1.0/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.primitives.4.3.0.nupkg.sha512",
- "system.reflection.primitives.nuspec"
- ]
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "type": "package",
- "path": "system.reflection.typeextensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Reflection.TypeExtensions.dll",
- "lib/net462/System.Reflection.TypeExtensions.dll",
- "lib/netcore50/System.Reflection.TypeExtensions.dll",
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Reflection.TypeExtensions.dll",
- "ref/net462/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
- "system.reflection.typeextensions.4.3.0.nupkg.sha512",
- "system.reflection.typeextensions.nuspec"
- ]
- },
- "System.Resources.ResourceManager/4.3.0": {
- "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "type": "package",
- "path": "system.resources.resourcemanager/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Resources.ResourceManager.dll",
- "ref/netcore50/System.Resources.ResourceManager.xml",
- "ref/netcore50/de/System.Resources.ResourceManager.xml",
- "ref/netcore50/es/System.Resources.ResourceManager.xml",
- "ref/netcore50/fr/System.Resources.ResourceManager.xml",
- "ref/netcore50/it/System.Resources.ResourceManager.xml",
- "ref/netcore50/ja/System.Resources.ResourceManager.xml",
- "ref/netcore50/ko/System.Resources.ResourceManager.xml",
- "ref/netcore50/ru/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/System.Resources.ResourceManager.dll",
- "ref/netstandard1.0/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "system.resources.resourcemanager.nuspec"
- ]
- },
- "System.Runtime/4.3.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.CompilerServices.Unsafe/4.4.0": {
- "sha512": "9dLLuBxr5GNmOfl2jSMcsHuteEg32BEfUotmmUkmZjpR3RpVHE8YQwt0ow3p6prwA1ME8WqDVZqrr8z6H8G+Kw==",
- "type": "package",
- "path": "system.runtime.compilerservices.unsafe/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
- "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512",
- "system.runtime.compilerservices.unsafe.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Runtime.Extensions/4.3.0": {
- "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "type": "package",
- "path": "system.runtime.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.xml",
- "ref/netcore50/de/System.Runtime.Extensions.xml",
- "ref/netcore50/es/System.Runtime.Extensions.xml",
- "ref/netcore50/fr/System.Runtime.Extensions.xml",
- "ref/netcore50/it/System.Runtime.Extensions.xml",
- "ref/netcore50/ja/System.Runtime.Extensions.xml",
- "ref/netcore50/ko/System.Runtime.Extensions.xml",
- "ref/netcore50/ru/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/System.Runtime.Extensions.dll",
- "ref/netstandard1.0/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/System.Runtime.Extensions.dll",
- "ref/netstandard1.3/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/System.Runtime.Extensions.dll",
- "ref/netstandard1.5/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.extensions.4.3.0.nupkg.sha512",
- "system.runtime.extensions.nuspec"
- ]
- },
- "System.Runtime.Handles/4.3.0": {
- "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "type": "package",
- "path": "system.runtime.handles/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/netstandard1.3/System.Runtime.Handles.dll",
- "ref/netstandard1.3/System.Runtime.Handles.xml",
- "ref/netstandard1.3/de/System.Runtime.Handles.xml",
- "ref/netstandard1.3/es/System.Runtime.Handles.xml",
- "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
- "ref/netstandard1.3/it/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.handles.4.3.0.nupkg.sha512",
- "system.runtime.handles.nuspec"
- ]
- },
- "System.Runtime.InteropServices/4.3.0": {
- "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "type": "package",
- "path": "system.runtime.interopservices/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.InteropServices.dll",
- "lib/net463/System.Runtime.InteropServices.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.InteropServices.dll",
- "ref/net463/System.Runtime.InteropServices.dll",
- "ref/netcore50/System.Runtime.InteropServices.dll",
- "ref/netcore50/System.Runtime.InteropServices.xml",
- "ref/netcore50/de/System.Runtime.InteropServices.xml",
- "ref/netcore50/es/System.Runtime.InteropServices.xml",
- "ref/netcore50/fr/System.Runtime.InteropServices.xml",
- "ref/netcore50/it/System.Runtime.InteropServices.xml",
- "ref/netcore50/ja/System.Runtime.InteropServices.xml",
- "ref/netcore50/ko/System.Runtime.InteropServices.xml",
- "ref/netcore50/ru/System.Runtime.InteropServices.xml",
- "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
- "ref/netstandard1.1/System.Runtime.InteropServices.dll",
- "ref/netstandard1.1/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/System.Runtime.InteropServices.dll",
- "ref/netstandard1.2/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/System.Runtime.InteropServices.dll",
- "ref/netstandard1.3/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/System.Runtime.InteropServices.dll",
- "ref/netstandard1.5/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.interopservices.4.3.0.nupkg.sha512",
- "system.runtime.interopservices.nuspec"
- ]
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
- "type": "package",
- "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
- "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
- "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
- "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
- "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
- "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
- "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
- "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
- "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
- "system.runtime.interopservices.runtimeinformation.nuspec"
- ]
- },
- "System.Runtime.Numerics/4.3.0": {
- "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "type": "package",
- "path": "system.runtime.numerics/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Runtime.Numerics.dll",
- "lib/netstandard1.3/System.Runtime.Numerics.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Runtime.Numerics.dll",
- "ref/netcore50/System.Runtime.Numerics.xml",
- "ref/netcore50/de/System.Runtime.Numerics.xml",
- "ref/netcore50/es/System.Runtime.Numerics.xml",
- "ref/netcore50/fr/System.Runtime.Numerics.xml",
- "ref/netcore50/it/System.Runtime.Numerics.xml",
- "ref/netcore50/ja/System.Runtime.Numerics.xml",
- "ref/netcore50/ko/System.Runtime.Numerics.xml",
- "ref/netcore50/ru/System.Runtime.Numerics.xml",
- "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
- "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/System.Runtime.Numerics.dll",
- "ref/netstandard1.1/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.numerics.4.3.0.nupkg.sha512",
- "system.runtime.numerics.nuspec"
- ]
- },
- "System.Runtime.Serialization.Formatters/4.3.0": {
- "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
- "type": "package",
- "path": "system.runtime.serialization.formatters/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Runtime.Serialization.Formatters.dll",
- "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Runtime.Serialization.Formatters.dll",
- "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
- "system.runtime.serialization.formatters.nuspec"
- ]
- },
- "System.Runtime.Serialization.Json/4.0.2": {
- "sha512": "+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==",
- "type": "package",
- "path": "system.runtime.serialization.json/4.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Runtime.Serialization.Json.dll",
- "lib/netstandard1.3/System.Runtime.Serialization.Json.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.Runtime.Serialization.Json.dll",
- "ref/netcore50/System.Runtime.Serialization.Json.xml",
- "ref/netcore50/de/System.Runtime.Serialization.Json.xml",
- "ref/netcore50/es/System.Runtime.Serialization.Json.xml",
- "ref/netcore50/fr/System.Runtime.Serialization.Json.xml",
- "ref/netcore50/it/System.Runtime.Serialization.Json.xml",
- "ref/netcore50/ja/System.Runtime.Serialization.Json.xml",
- "ref/netcore50/ko/System.Runtime.Serialization.Json.xml",
- "ref/netcore50/ru/System.Runtime.Serialization.Json.xml",
- "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml",
- "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml",
- "ref/netstandard1.0/System.Runtime.Serialization.Json.dll",
- "ref/netstandard1.0/System.Runtime.Serialization.Json.xml",
- "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml",
- "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml",
- "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml",
- "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml",
- "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml",
- "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml",
- "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.serialization.json.4.0.2.nupkg.sha512",
- "system.runtime.serialization.json.nuspec"
- ]
- },
- "System.Runtime.Serialization.Primitives/4.3.0": {
- "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
- "type": "package",
- "path": "system.runtime.serialization.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.Runtime.Serialization.Primitives.dll",
- "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
- "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net46/System.Runtime.Serialization.Primitives.dll",
- "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
- "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
- "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
- "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
- "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
- "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
- "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
- "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
- "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
- "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
- "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
- "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
- "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.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.Runtime.Serialization.Primitives.dll",
- "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
- "system.runtime.serialization.primitives.nuspec"
- ]
- },
- "System.Security.AccessControl/4.4.0": {
- "sha512": "2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==",
- "type": "package",
- "path": "system.security.accesscontrol/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net46/System.Security.AccessControl.dll",
- "lib/net461/System.Security.AccessControl.dll",
- "lib/netstandard1.3/System.Security.AccessControl.dll",
- "lib/netstandard2.0/System.Security.AccessControl.dll",
- "ref/net46/System.Security.AccessControl.dll",
- "ref/net461/System.Security.AccessControl.dll",
- "ref/net461/System.Security.AccessControl.xml",
- "ref/netstandard1.3/System.Security.AccessControl.dll",
- "ref/netstandard1.3/System.Security.AccessControl.xml",
- "ref/netstandard1.3/de/System.Security.AccessControl.xml",
- "ref/netstandard1.3/es/System.Security.AccessControl.xml",
- "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
- "ref/netstandard1.3/it/System.Security.AccessControl.xml",
- "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
- "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
- "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
- "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
- "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
- "ref/netstandard2.0/System.Security.AccessControl.dll",
- "ref/netstandard2.0/System.Security.AccessControl.xml",
- "runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll",
- "runtimes/win/lib/net46/System.Security.AccessControl.dll",
- "runtimes/win/lib/net461/System.Security.AccessControl.dll",
- "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
- "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
- "system.security.accesscontrol.4.4.0.nupkg.sha512",
- "system.security.accesscontrol.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Security.Claims/4.3.0": {
- "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
- "type": "package",
- "path": "system.security.claims/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Claims.dll",
- "lib/netstandard1.3/System.Security.Claims.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Claims.dll",
- "ref/netstandard1.3/System.Security.Claims.dll",
- "ref/netstandard1.3/System.Security.Claims.xml",
- "ref/netstandard1.3/de/System.Security.Claims.xml",
- "ref/netstandard1.3/es/System.Security.Claims.xml",
- "ref/netstandard1.3/fr/System.Security.Claims.xml",
- "ref/netstandard1.3/it/System.Security.Claims.xml",
- "ref/netstandard1.3/ja/System.Security.Claims.xml",
- "ref/netstandard1.3/ko/System.Security.Claims.xml",
- "ref/netstandard1.3/ru/System.Security.Claims.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.security.claims.4.3.0.nupkg.sha512",
- "system.security.claims.nuspec"
- ]
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "type": "package",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Algorithms.dll",
- "lib/net461/System.Security.Cryptography.Algorithms.dll",
- "lib/net463/System.Security.Cryptography.Algorithms.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Algorithms.dll",
- "ref/net461/System.Security.Cryptography.Algorithms.dll",
- "ref/net463/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
- "system.security.cryptography.algorithms.nuspec"
- ]
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
- "type": "package",
- "path": "system.security.cryptography.cng/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Security.Cryptography.Cng.dll",
- "lib/net461/System.Security.Cryptography.Cng.dll",
- "lib/net463/System.Security.Cryptography.Cng.dll",
- "ref/net46/System.Security.Cryptography.Cng.dll",
- "ref/net461/System.Security.Cryptography.Cng.dll",
- "ref/net463/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "system.security.cryptography.cng.4.3.0.nupkg.sha512",
- "system.security.cryptography.cng.nuspec"
- ]
- },
- "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.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.X509Certificates/4.3.0": {
- "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "type": "package",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.X509Certificates.dll",
- "lib/net461/System.Security.Cryptography.X509Certificates.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.X509Certificates.dll",
- "ref/net461/System.Security.Cryptography.X509Certificates.dll",
- "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
- "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
- "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
- "system.security.cryptography.x509certificates.nuspec"
- ]
- },
- "System.Security.Cryptography.Xml/4.4.0": {
- "sha512": "1Xubvo4i+K+DO6YzVh6vBKmCl5xx/cAoiJEze6VQ+XwVQU25KQC9pPrmniz2EbbJnmoQ5Rm2FFjHsfQAi0Rs+Q==",
- "type": "package",
- "path": "system.security.cryptography.xml/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Security.Cryptography.Xml.dll",
- "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
- "ref/net461/System.Security.Cryptography.Xml.dll",
- "ref/net461/System.Security.Cryptography.Xml.xml",
- "ref/netstandard2.0/System.Security.Cryptography.Xml.dll",
- "ref/netstandard2.0/System.Security.Cryptography.Xml.xml",
- "system.security.cryptography.xml.4.4.0.nupkg.sha512",
- "system.security.cryptography.xml.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Security.Principal/4.3.0": {
- "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
- "type": "package",
- "path": "system.security.principal/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Security.Principal.dll",
- "lib/netstandard1.0/System.Security.Principal.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.Security.Principal.dll",
- "ref/netcore50/System.Security.Principal.xml",
- "ref/netcore50/de/System.Security.Principal.xml",
- "ref/netcore50/es/System.Security.Principal.xml",
- "ref/netcore50/fr/System.Security.Principal.xml",
- "ref/netcore50/it/System.Security.Principal.xml",
- "ref/netcore50/ja/System.Security.Principal.xml",
- "ref/netcore50/ko/System.Security.Principal.xml",
- "ref/netcore50/ru/System.Security.Principal.xml",
- "ref/netcore50/zh-hans/System.Security.Principal.xml",
- "ref/netcore50/zh-hant/System.Security.Principal.xml",
- "ref/netstandard1.0/System.Security.Principal.dll",
- "ref/netstandard1.0/System.Security.Principal.xml",
- "ref/netstandard1.0/de/System.Security.Principal.xml",
- "ref/netstandard1.0/es/System.Security.Principal.xml",
- "ref/netstandard1.0/fr/System.Security.Principal.xml",
- "ref/netstandard1.0/it/System.Security.Principal.xml",
- "ref/netstandard1.0/ja/System.Security.Principal.xml",
- "ref/netstandard1.0/ko/System.Security.Principal.xml",
- "ref/netstandard1.0/ru/System.Security.Principal.xml",
- "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
- "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.security.principal.4.3.0.nupkg.sha512",
- "system.security.principal.nuspec"
- ]
- },
- "System.Security.Principal.Windows/4.4.0": {
- "sha512": "pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==",
- "type": "package",
- "path": "system.security.principal.windows/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net46/System.Security.Principal.Windows.dll",
- "lib/net461/System.Security.Principal.Windows.dll",
- "lib/netstandard1.3/System.Security.Principal.Windows.dll",
- "lib/netstandard2.0/System.Security.Principal.Windows.dll",
- "ref/net46/System.Security.Principal.Windows.dll",
- "ref/net461/System.Security.Principal.Windows.dll",
- "ref/net461/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",
- "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
- "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
- "system.security.principal.windows.4.4.0.nupkg.sha512",
- "system.security.principal.windows.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Spatial/5.8.2": {
- "sha512": "0RfZZJ8RlrfjoBPAF6pczX4Nd2kyLM8EX1PCP5Rqs/jOhJBUPYhpXjIsVAYN7kocj9IJ9XoJWAxWgXIDtJY2Ag==",
- "type": "package",
- "path": "system.spatial/5.8.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net40/System.Spatial.dll",
- "lib/net40/System.Spatial.xml",
- "lib/net40/de/System.Spatial.resources.dll",
- "lib/net40/es/System.Spatial.resources.dll",
- "lib/net40/fr/System.Spatial.resources.dll",
- "lib/net40/it/System.Spatial.resources.dll",
- "lib/net40/ja/System.Spatial.resources.dll",
- "lib/net40/ko/System.Spatial.resources.dll",
- "lib/net40/ru/System.Spatial.resources.dll",
- "lib/net40/zh-Hans/System.Spatial.resources.dll",
- "lib/net40/zh-Hant/System.Spatial.resources.dll",
- "lib/netstandard1.1/System.Spatial.dll",
- "lib/netstandard1.1/System.Spatial.xml",
- "lib/netstandard1.1/de/System.Spatial.resources.dll",
- "lib/netstandard1.1/es/System.Spatial.resources.dll",
- "lib/netstandard1.1/fr/System.Spatial.resources.dll",
- "lib/netstandard1.1/it/System.Spatial.resources.dll",
- "lib/netstandard1.1/ja/System.Spatial.resources.dll",
- "lib/netstandard1.1/ko/System.Spatial.resources.dll",
- "lib/netstandard1.1/ru/System.Spatial.resources.dll",
- "lib/netstandard1.1/zh-Hans/System.Spatial.resources.dll",
- "lib/netstandard1.1/zh-Hant/System.Spatial.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/System.Spatial.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/System.Spatial.xml",
- "lib/portable-net40+sl5+wp8+win8+wpa/de/System.Spatial.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/es/System.Spatial.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/fr/System.Spatial.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/it/System.Spatial.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/ja/System.Spatial.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/ko/System.Spatial.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/ru/System.Spatial.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll",
- "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll",
- "lib/portable-net45+wp8+win8+wpa/System.Spatial.xml",
- "lib/portable-net45+wp8+win8+wpa/de/System.Spatial.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/es/System.Spatial.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/fr/System.Spatial.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/it/System.Spatial.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/ja/System.Spatial.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/ko/System.Spatial.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/ru/System.Spatial.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll",
- "lib/portable-net45+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll",
- "lib/sl4/System.Spatial.dll",
- "lib/sl4/System.Spatial.xml",
- "lib/sl4/de/System.Spatial.resources.dll",
- "lib/sl4/es/System.Spatial.resources.dll",
- "lib/sl4/fr/System.Spatial.resources.dll",
- "lib/sl4/it/System.Spatial.resources.dll",
- "lib/sl4/ja/System.Spatial.resources.dll",
- "lib/sl4/ko/System.Spatial.resources.dll",
- "lib/sl4/ru/System.Spatial.resources.dll",
- "lib/sl4/zh-Hans/System.Spatial.resources.dll",
- "lib/sl4/zh-Hant/System.Spatial.resources.dll",
- "system.spatial.5.8.2.nupkg.sha512",
- "system.spatial.nuspec"
- ]
- },
- "System.Text.Encoding/4.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "system.text.encoding/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Text.Encoding.dll",
- "ref/netcore50/System.Text.Encoding.xml",
- "ref/netcore50/de/System.Text.Encoding.xml",
- "ref/netcore50/es/System.Text.Encoding.xml",
- "ref/netcore50/fr/System.Text.Encoding.xml",
- "ref/netcore50/it/System.Text.Encoding.xml",
- "ref/netcore50/ja/System.Text.Encoding.xml",
- "ref/netcore50/ko/System.Text.Encoding.xml",
- "ref/netcore50/ru/System.Text.Encoding.xml",
- "ref/netcore50/zh-hans/System.Text.Encoding.xml",
- "ref/netcore50/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.0/System.Text.Encoding.dll",
- "ref/netstandard1.0/System.Text.Encoding.xml",
- "ref/netstandard1.0/de/System.Text.Encoding.xml",
- "ref/netstandard1.0/es/System.Text.Encoding.xml",
- "ref/netstandard1.0/fr/System.Text.Encoding.xml",
- "ref/netstandard1.0/it/System.Text.Encoding.xml",
- "ref/netstandard1.0/ja/System.Text.Encoding.xml",
- "ref/netstandard1.0/ko/System.Text.Encoding.xml",
- "ref/netstandard1.0/ru/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.3/System.Text.Encoding.dll",
- "ref/netstandard1.3/System.Text.Encoding.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.encoding.4.3.0.nupkg.sha512",
- "system.text.encoding.nuspec"
- ]
- },
- "System.Text.Encoding.CodePages/4.4.0": {
- "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
- "type": "package",
- "path": "system.text.encoding.codepages/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Text.Encoding.CodePages.dll",
- "lib/net461/System.Text.Encoding.CodePages.dll",
- "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
- "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "system.text.encoding.codepages.4.4.0.nupkg.sha512",
- "system.text.encoding.codepages.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
- "type": "package",
- "path": "system.text.encoding.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Text.Encoding.Extensions.dll",
- "ref/netcore50/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
- "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
- "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
- "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.encoding.extensions.4.3.0.nupkg.sha512",
- "system.text.encoding.extensions.nuspec"
- ]
- },
- "System.Text.Encodings.Web/4.4.0": {
- "sha512": "l/tYeikqMHX2MD2jzrHDfR9ejrpTTF7wvAEbR51AMvzip1wSJgiURbDik4iv/w7ZgytmTD/hlwpplEhF9bmFNw==",
- "type": "package",
- "path": "system.text.encodings.web/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard1.0/System.Text.Encodings.Web.dll",
- "lib/netstandard1.0/System.Text.Encodings.Web.xml",
- "lib/netstandard2.0/System.Text.Encodings.Web.dll",
- "lib/netstandard2.0/System.Text.Encodings.Web.xml",
- "system.text.encodings.web.4.4.0.nupkg.sha512",
- "system.text.encodings.web.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Text.RegularExpressions/4.3.0": {
- "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
- "type": "package",
- "path": "system.text.regularexpressions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Text.RegularExpressions.dll",
- "lib/netcore50/System.Text.RegularExpressions.dll",
- "lib/netstandard1.6/System.Text.RegularExpressions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Text.RegularExpressions.dll",
- "ref/netcore50/System.Text.RegularExpressions.dll",
- "ref/netcore50/System.Text.RegularExpressions.xml",
- "ref/netcore50/de/System.Text.RegularExpressions.xml",
- "ref/netcore50/es/System.Text.RegularExpressions.xml",
- "ref/netcore50/fr/System.Text.RegularExpressions.xml",
- "ref/netcore50/it/System.Text.RegularExpressions.xml",
- "ref/netcore50/ja/System.Text.RegularExpressions.xml",
- "ref/netcore50/ko/System.Text.RegularExpressions.xml",
- "ref/netcore50/ru/System.Text.RegularExpressions.xml",
- "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
- "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
- "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
- "ref/netstandard1.0/System.Text.RegularExpressions.dll",
- "ref/netstandard1.0/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
- "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/System.Text.RegularExpressions.dll",
- "ref/netstandard1.3/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
- "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/System.Text.RegularExpressions.dll",
- "ref/netstandard1.6/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
- "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.regularexpressions.4.3.0.nupkg.sha512",
- "system.text.regularexpressions.nuspec"
- ]
- },
- "System.Threading/4.3.0": {
- "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "type": "package",
- "path": "system.threading/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Threading.dll",
- "lib/netstandard1.3/System.Threading.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.dll",
- "ref/netcore50/System.Threading.xml",
- "ref/netcore50/de/System.Threading.xml",
- "ref/netcore50/es/System.Threading.xml",
- "ref/netcore50/fr/System.Threading.xml",
- "ref/netcore50/it/System.Threading.xml",
- "ref/netcore50/ja/System.Threading.xml",
- "ref/netcore50/ko/System.Threading.xml",
- "ref/netcore50/ru/System.Threading.xml",
- "ref/netcore50/zh-hans/System.Threading.xml",
- "ref/netcore50/zh-hant/System.Threading.xml",
- "ref/netstandard1.0/System.Threading.dll",
- "ref/netstandard1.0/System.Threading.xml",
- "ref/netstandard1.0/de/System.Threading.xml",
- "ref/netstandard1.0/es/System.Threading.xml",
- "ref/netstandard1.0/fr/System.Threading.xml",
- "ref/netstandard1.0/it/System.Threading.xml",
- "ref/netstandard1.0/ja/System.Threading.xml",
- "ref/netstandard1.0/ko/System.Threading.xml",
- "ref/netstandard1.0/ru/System.Threading.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.xml",
- "ref/netstandard1.3/System.Threading.dll",
- "ref/netstandard1.3/System.Threading.xml",
- "ref/netstandard1.3/de/System.Threading.xml",
- "ref/netstandard1.3/es/System.Threading.xml",
- "ref/netstandard1.3/fr/System.Threading.xml",
- "ref/netstandard1.3/it/System.Threading.xml",
- "ref/netstandard1.3/ja/System.Threading.xml",
- "ref/netstandard1.3/ko/System.Threading.xml",
- "ref/netstandard1.3/ru/System.Threading.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Threading.dll",
- "system.threading.4.3.0.nupkg.sha512",
- "system.threading.nuspec"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "system.threading.tasks/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.Tasks.dll",
- "ref/netcore50/System.Threading.Tasks.xml",
- "ref/netcore50/de/System.Threading.Tasks.xml",
- "ref/netcore50/es/System.Threading.Tasks.xml",
- "ref/netcore50/fr/System.Threading.Tasks.xml",
- "ref/netcore50/it/System.Threading.Tasks.xml",
- "ref/netcore50/ja/System.Threading.Tasks.xml",
- "ref/netcore50/ko/System.Threading.Tasks.xml",
- "ref/netcore50/ru/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.0/System.Threading.Tasks.dll",
- "ref/netstandard1.0/System.Threading.Tasks.xml",
- "ref/netstandard1.0/de/System.Threading.Tasks.xml",
- "ref/netstandard1.0/es/System.Threading.Tasks.xml",
- "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.0/it/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.3/System.Threading.Tasks.dll",
- "ref/netstandard1.3/System.Threading.Tasks.xml",
- "ref/netstandard1.3/de/System.Threading.Tasks.xml",
- "ref/netstandard1.3/es/System.Threading.Tasks.xml",
- "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.3/it/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.4.3.0.nupkg.sha512",
- "system.threading.tasks.nuspec"
- ]
- },
- "System.Threading.Tasks.Extensions/4.4.0": {
- "sha512": "SPKfFGbpQsK5Srz2Kq3URgvC90yoOyBE8H1quDA2+MAJ2HAzFmV3biOgPv2Ck3mPAvdKngo3QHi2BNwUQDRVvA==",
- "type": "package",
- "path": "system.threading.tasks.extensions/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netcoreapp2.0/_._",
- "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",
- "ref/netcoreapp2.0/_._",
- "system.threading.tasks.extensions.4.4.0.nupkg.sha512",
- "system.threading.tasks.extensions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Threading.Tasks.Parallel/4.3.0": {
- "sha512": "cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
- "type": "package",
- "path": "system.threading.tasks.parallel/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Threading.Tasks.Parallel.dll",
- "lib/netstandard1.3/System.Threading.Tasks.Parallel.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.Threading.Tasks.Parallel.dll",
- "ref/netcore50/System.Threading.Tasks.Parallel.xml",
- "ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
- "ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
- "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
- "ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
- "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
- "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
- "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
- "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
- "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
- "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
- "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
- "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
- "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
- "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
- "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
- "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
- "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
- "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
- "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
- "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.parallel.4.3.0.nupkg.sha512",
- "system.threading.tasks.parallel.nuspec"
- ]
- },
- "System.Threading.Thread/4.3.0": {
- "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
- "type": "package",
- "path": "system.threading.thread/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Threading.Thread.dll",
- "lib/netcore50/_._",
- "lib/netstandard1.3/System.Threading.Thread.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Threading.Thread.dll",
- "ref/netstandard1.3/System.Threading.Thread.dll",
- "ref/netstandard1.3/System.Threading.Thread.xml",
- "ref/netstandard1.3/de/System.Threading.Thread.xml",
- "ref/netstandard1.3/es/System.Threading.Thread.xml",
- "ref/netstandard1.3/fr/System.Threading.Thread.xml",
- "ref/netstandard1.3/it/System.Threading.Thread.xml",
- "ref/netstandard1.3/ja/System.Threading.Thread.xml",
- "ref/netstandard1.3/ko/System.Threading.Thread.xml",
- "ref/netstandard1.3/ru/System.Threading.Thread.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.thread.4.3.0.nupkg.sha512",
- "system.threading.thread.nuspec"
- ]
- },
- "System.Threading.ThreadPool/4.3.0": {
- "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
- "type": "package",
- "path": "system.threading.threadpool/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Threading.ThreadPool.dll",
- "lib/netcore50/_._",
- "lib/netstandard1.3/System.Threading.ThreadPool.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Threading.ThreadPool.dll",
- "ref/netstandard1.3/System.Threading.ThreadPool.dll",
- "ref/netstandard1.3/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.threadpool.4.3.0.nupkg.sha512",
- "system.threading.threadpool.nuspec"
- ]
- },
- "System.Threading.Timer/4.3.0": {
- "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
- "type": "package",
- "path": "system.threading.timer/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net451/_._",
- "lib/portable-net451+win81+wpa81/_._",
- "lib/win81/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net451/_._",
- "ref/netcore50/System.Threading.Timer.dll",
- "ref/netcore50/System.Threading.Timer.xml",
- "ref/netcore50/de/System.Threading.Timer.xml",
- "ref/netcore50/es/System.Threading.Timer.xml",
- "ref/netcore50/fr/System.Threading.Timer.xml",
- "ref/netcore50/it/System.Threading.Timer.xml",
- "ref/netcore50/ja/System.Threading.Timer.xml",
- "ref/netcore50/ko/System.Threading.Timer.xml",
- "ref/netcore50/ru/System.Threading.Timer.xml",
- "ref/netcore50/zh-hans/System.Threading.Timer.xml",
- "ref/netcore50/zh-hant/System.Threading.Timer.xml",
- "ref/netstandard1.2/System.Threading.Timer.dll",
- "ref/netstandard1.2/System.Threading.Timer.xml",
- "ref/netstandard1.2/de/System.Threading.Timer.xml",
- "ref/netstandard1.2/es/System.Threading.Timer.xml",
- "ref/netstandard1.2/fr/System.Threading.Timer.xml",
- "ref/netstandard1.2/it/System.Threading.Timer.xml",
- "ref/netstandard1.2/ja/System.Threading.Timer.xml",
- "ref/netstandard1.2/ko/System.Threading.Timer.xml",
- "ref/netstandard1.2/ru/System.Threading.Timer.xml",
- "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
- "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
- "ref/portable-net451+win81+wpa81/_._",
- "ref/win81/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.timer.4.3.0.nupkg.sha512",
- "system.threading.timer.nuspec"
- ]
- },
- "System.ValueTuple/4.4.0": {
- "sha512": "BahUww/+mdP4ARCAh2RQhQTg13wYLVrBb9SYVgW8ZlrwjraGCXHGjo0oIiUfZ34LUZkMMR+RAzR7dEY4S1HeQQ==",
- "type": "package",
- "path": "system.valuetuple/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.ValueTuple.dll",
- "lib/net461/System.ValueTuple.xml",
- "lib/net47/System.ValueTuple.dll",
- "lib/net47/System.ValueTuple.xml",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.0/System.ValueTuple.dll",
- "lib/netstandard1.0/System.ValueTuple.xml",
- "lib/netstandard2.0/_._",
- "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
- "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net461/System.ValueTuple.dll",
- "ref/net461/System.ValueTuple.xml",
- "ref/net47/System.ValueTuple.dll",
- "ref/net47/System.ValueTuple.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard2.0/_._",
- "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll",
- "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.valuetuple.4.4.0.nupkg.sha512",
- "system.valuetuple.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
- "type": "package",
- "path": "system.xml.readerwriter/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.Xml.ReaderWriter.dll",
- "lib/netcore50/System.Xml.ReaderWriter.dll",
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net46/System.Xml.ReaderWriter.dll",
- "ref/netcore50/System.Xml.ReaderWriter.dll",
- "ref/netcore50/System.Xml.ReaderWriter.xml",
- "ref/netcore50/de/System.Xml.ReaderWriter.xml",
- "ref/netcore50/es/System.Xml.ReaderWriter.xml",
- "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
- "ref/netcore50/it/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
- "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
- "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
- "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
- "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.xml.readerwriter.4.3.0.nupkg.sha512",
- "system.xml.readerwriter.nuspec"
- ]
- },
- "System.Xml.XDocument/4.3.0": {
- "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
- "type": "package",
- "path": "system.xml.xdocument/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Xml.XDocument.dll",
- "lib/netstandard1.3/System.Xml.XDocument.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Xml.XDocument.dll",
- "ref/netcore50/System.Xml.XDocument.xml",
- "ref/netcore50/de/System.Xml.XDocument.xml",
- "ref/netcore50/es/System.Xml.XDocument.xml",
- "ref/netcore50/fr/System.Xml.XDocument.xml",
- "ref/netcore50/it/System.Xml.XDocument.xml",
- "ref/netcore50/ja/System.Xml.XDocument.xml",
- "ref/netcore50/ko/System.Xml.XDocument.xml",
- "ref/netcore50/ru/System.Xml.XDocument.xml",
- "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
- "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
- "ref/netstandard1.0/System.Xml.XDocument.dll",
- "ref/netstandard1.0/System.Xml.XDocument.xml",
- "ref/netstandard1.0/de/System.Xml.XDocument.xml",
- "ref/netstandard1.0/es/System.Xml.XDocument.xml",
- "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
- "ref/netstandard1.0/it/System.Xml.XDocument.xml",
- "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
- "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
- "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
- "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
- "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
- "ref/netstandard1.3/System.Xml.XDocument.dll",
- "ref/netstandard1.3/System.Xml.XDocument.xml",
- "ref/netstandard1.3/de/System.Xml.XDocument.xml",
- "ref/netstandard1.3/es/System.Xml.XDocument.xml",
- "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
- "ref/netstandard1.3/it/System.Xml.XDocument.xml",
- "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
- "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
- "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.xml.xdocument.4.3.0.nupkg.sha512",
- "system.xml.xdocument.nuspec"
- ]
- },
- "System.Xml.XmlDocument/4.3.0": {
- "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
- "type": "package",
- "path": "system.xml.xmldocument/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Xml.XmlDocument.dll",
- "lib/netstandard1.3/System.Xml.XmlDocument.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Xml.XmlDocument.dll",
- "ref/netstandard1.3/System.Xml.XmlDocument.dll",
- "ref/netstandard1.3/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.xml.xmldocument.4.3.0.nupkg.sha512",
- "system.xml.xmldocument.nuspec"
- ]
- },
- "System.Xml.XmlSerializer/4.0.11": {
- "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
- "type": "package",
- "path": "system.xml.xmlserializer/4.0.11",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Xml.XmlSerializer.dll",
- "lib/netstandard1.3/System.Xml.XmlSerializer.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Xml.XmlSerializer.dll",
- "ref/netcore50/System.Xml.XmlSerializer.xml",
- "ref/netcore50/de/System.Xml.XmlSerializer.xml",
- "ref/netcore50/es/System.Xml.XmlSerializer.xml",
- "ref/netcore50/fr/System.Xml.XmlSerializer.xml",
- "ref/netcore50/it/System.Xml.XmlSerializer.xml",
- "ref/netcore50/ja/System.Xml.XmlSerializer.xml",
- "ref/netcore50/ko/System.Xml.XmlSerializer.xml",
- "ref/netcore50/ru/System.Xml.XmlSerializer.xml",
- "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml",
- "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.0/System.Xml.XmlSerializer.dll",
- "ref/netstandard1.0/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.3/System.Xml.XmlSerializer.dll",
- "ref/netstandard1.3/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.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.Xml.XmlSerializer.dll",
- "system.xml.xmlserializer.4.0.11.nupkg.sha512",
- "system.xml.xmlserializer.nuspec"
- ]
- },
- "System.Xml.XPath/4.3.0": {
- "sha512": "v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
- "type": "package",
- "path": "system.xml.xpath/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Xml.XPath.dll",
- "lib/netstandard1.3/System.Xml.XPath.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Xml.XPath.dll",
- "ref/netstandard1.3/System.Xml.XPath.dll",
- "ref/netstandard1.3/System.Xml.XPath.xml",
- "ref/netstandard1.3/de/System.Xml.XPath.xml",
- "ref/netstandard1.3/es/System.Xml.XPath.xml",
- "ref/netstandard1.3/fr/System.Xml.XPath.xml",
- "ref/netstandard1.3/it/System.Xml.XPath.xml",
- "ref/netstandard1.3/ja/System.Xml.XPath.xml",
- "ref/netstandard1.3/ko/System.Xml.XPath.xml",
- "ref/netstandard1.3/ru/System.Xml.XPath.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.xml.xpath.4.3.0.nupkg.sha512",
- "system.xml.xpath.nuspec"
- ]
- },
- "System.Xml.XPath.XDocument/4.3.0": {
- "sha512": "jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==",
- "type": "package",
- "path": "system.xml.xpath.xdocument/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Xml.XPath.XDocument.dll",
- "lib/netstandard1.3/System.Xml.XPath.XDocument.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Xml.XPath.XDocument.dll",
- "ref/netstandard1.3/System.Xml.XPath.XDocument.dll",
- "ref/netstandard1.3/System.Xml.XPath.XDocument.xml",
- "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml",
- "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml",
- "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml",
- "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml",
- "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml",
- "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml",
- "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml",
- "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml",
- "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.xml.xpath.xdocument.4.3.0.nupkg.sha512",
- "system.xml.xpath.xdocument.nuspec"
- ]
- },
- "webhookSharp/1.0.0": {
- "sha512": "13BokBv/Zp6c1UBuEZPtehyOhzGWVhQ/PsqQTjn3oBZObX7dfdIPJDEoMCxdGKjpT15OnneyeWRHzR5ytxKCvQ==",
- "type": "package",
- "path": "webhooksharp/1.0.0",
- "files": [
- ".nupkg.metadata",
- "lib/net6.0/webhook#.dll",
- "webhooksharp.1.0.0.nupkg.sha512",
- "webhooksharp.nuspec"
- ]
- },
- "WindowsAzure.Storage/8.1.4": {
- "sha512": "W6ZZ0/o7+3Qb77mRAQyLjPudHG3OMeeQ4p9yY13PUdJArmRCx2cLMm5F4tpIjJXxzHC0ew0oK7DMDGILMdfCnw==",
- "type": "package",
- "path": "windowsazure.storage/8.1.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net45/Microsoft.WindowsAzure.Storage.dll",
- "lib/net45/Microsoft.WindowsAzure.Storage.pdb",
- "lib/net45/Microsoft.WindowsAzure.Storage.xml",
- "lib/netstandard1.0/Microsoft.WindowsAzure.Storage.dll",
- "lib/netstandard1.0/Microsoft.WindowsAzure.Storage.pdb",
- "lib/netstandard1.3/Microsoft.WindowsAzure.Storage.dll",
- "lib/netstandard1.3/Microsoft.WindowsAzure.Storage.pdb",
- "lib/win8/Microsoft.WindowsAzure.Storage.dll",
- "lib/win8/Microsoft.WindowsAzure.Storage.pdb",
- "lib/wp8/Microsoft.WindowsAzure.Storage.dll",
- "lib/wp8/Microsoft.WindowsAzure.Storage.pdb",
- "lib/wpa/Microsoft.WindowsAzure.Storage.dll",
- "lib/wpa/Microsoft.WindowsAzure.Storage.pdb",
- "windowsazure.storage.8.1.4.nupkg.sha512",
- "windowsazure.storage.nuspec"
- ]
- },
"Entidades/1.0.0": {
"type": "project",
"path": "../Entidades/Entidades.csproj",
@@ -13463,10 +41,8 @@
},
"projectFileDependencyGroups": {
"net6.0": [
- "Emailer >= 1.0.0",
"Entidades >= 1.0.0",
- "Modelo >= 1.0.0",
- "webhookSharp >= 1.0.0"
+ "Modelo >= 1.0.0"
]
},
"packageFolders": {
@@ -13481,6 +57,7 @@
"restore": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"projectUniqueName": "/home/fede/proyectos/Final_OOP/Controladora/Controladora.csproj",
"projectName": "Controladora",
@@ -13506,10 +83,13 @@
"/home/fede/.nuget/NuGet/NuGet.Config"
=======
"projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj",
+=======
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj",
+>>>>>>> c493033 (cosas que faltaban)
"projectName": "Controladora",
- "projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj",
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj",
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Controladora\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
@@ -13533,6 +113,7 @@
"projectReferences": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"/home/fede/proyectos/Final_OOP/Entidades/Entidades.csproj": {
"projectPath": "/home/fede/proyectos/Final_OOP/Entidades/Entidades.csproj"
@@ -13560,6 +141,13 @@
"C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj": {
"projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj"
>>>>>>> 9b0bde2 (fix: arreglado nivel de acceso para las controladoras)
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj"
+ },
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj"
+>>>>>>> c493033 (cosas que faltaban)
}
}
}
@@ -13573,16 +161,6 @@
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
- "dependencies": {
- "Emailer": {
- "target": "Package",
- "version": "[1.0.0, )"
- },
- "webhookSharp": {
- "target": "Package",
- "version": "[1.0.0, )"
- }
- },
"imports": [
"net461",
"net462",
diff --git a/Controladora/obj/project.nuget.cache b/Controladora/obj/project.nuget.cache
index b6c81a4..2c9fe97 100644
--- a/Controladora/obj/project.nuget.cache
+++ b/Controladora/obj/project.nuget.cache
@@ -2,6 +2,7 @@
"version": 2,
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"dgSpecHash": "Vs+HTdq8Gqw56GHRk+ivU0JJ/5n6ghHJP2CKgIV+gDHL9rO3WgHHPoz0OWJjyozNRvnYskqZVibjHcSALkg9JQ==",
"success": true,
@@ -608,5 +609,11 @@
"C:\\Users\\fedpo\\.nuget\\packages\\windowsazure.storage\\8.1.4\\windowsazure.storage.8.1.4.nupkg.sha512"
>>>>>>> 9b0bde2 (fix: arreglado nivel de acceso para las controladoras)
],
+=======
+ "dgSpecHash": "7p6sil6BdpeseYcwxc5SCaMq8T52JX3Gb+/veDRUiSWMCYx7lYCBfkail6lsPgISGkw+p3jfoipb6TSmLcP1ZA==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj",
+ "expectedPackageFiles": [],
+>>>>>>> c493033 (cosas que faltaban)
"logs": []
}
\ No newline at end of file
diff --git a/Entidades/Cliente.cs b/Entidades/Cliente.cs
index 0f2072e..9f5016c 100644
--- a/Entidades/Cliente.cs
+++ b/Entidades/Cliente.cs
@@ -1,5 +1,4 @@
-
-using System.ComponentModel;
+using System.ComponentModel;
namespace Entidades
{
@@ -10,8 +9,19 @@ namespace Entidades
public string Apellido { get; set; }
public string Direccion { get; set; }
public string Correo { get; set; }
-
+
[Browsable(false)]
public bool Habilitado { get; set; }
+
+ public string NombreCompleto
+ {
+ get { return $"{Nombre} {Apellido}"; }
+ }
+
+ // Sobreescribir ToString() para mostrar el nombre completo
+ public override string ToString()
+ {
+ return NombreCompleto;
+ }
}
-}
\ No newline at end of file
+}
diff --git a/Entidades/DetallePedido.cs b/Entidades/DetallePedido.cs
index d1dcf26..adad54d 100644
--- a/Entidades/DetallePedido.cs
+++ b/Entidades/DetallePedido.cs
@@ -4,5 +4,7 @@ namespace Entidades
public class DetallePedido : Detalle
{
public int IdPedido { get; set; }
+ public int CantidadPedido { get; set; }
+ public List Productos { get; set; } = new List();
}
}
diff --git a/Entidades/Producto.cs b/Entidades/Producto.cs
index 4eb262c..946d5f3 100644
--- a/Entidades/Producto.cs
+++ b/Entidades/Producto.cs
@@ -8,6 +8,7 @@ namespace Entidades
public string Nombre { get; set; }
public double Precio { get; set; }
public bool Habilitado { get; set; }
+ public Categoria Categoria { get; set; }
private List categorias = new List();
public void AñadirCategoria(Categoria cat) {
diff --git a/Entidades/ProductoNoPercedero.cs b/Entidades/ProductoNoPercedero.cs
deleted file mode 100644
index e685ba4..0000000
--- a/Entidades/ProductoNoPercedero.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-
-namespace Entidades
-{
- public class ProductoNoPercedero: Producto
- {
- public EnvaseTipo TipoDeEnvase { get; set; }
- }
-}
diff --git a/Entidades/ProductoPercedero.cs b/Entidades/ProductoPercedero.cs
deleted file mode 100644
index 4e237db..0000000
--- a/Entidades/ProductoPercedero.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-
-namespace Entidades
-{
- public class ProductoPercedero: Producto
- {
- public int MesesHastaConsumoPreferente { get; set; }
- public int MesesHastaVencimiento { get; set; }
- }
-}
diff --git a/Entidades/Remito.cs b/Entidades/Remito.cs
index 4444975..259b0b6 100644
--- a/Entidades/Remito.cs
+++ b/Entidades/Remito.cs
@@ -1,4 +1,4 @@
-using System.Collections.ObjectModel;
+ using System.Collections.ObjectModel;
namespace Entidades
{
diff --git a/Entidades/obj/Debug/net6.0/Entidades.GeneratedMSBuildEditorConfig.editorconfig b/Entidades/obj/Debug/net6.0/Entidades.GeneratedMSBuildEditorConfig.editorconfig
index 600dd9c..5afacc0 100644
--- a/Entidades/obj/Debug/net6.0/Entidades.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Entidades/obj/Debug/net6.0/Entidades.GeneratedMSBuildEditorConfig.editorconfig
@@ -11,6 +11,7 @@ build_property.RootNamespace = Entidades
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
build_property.ProjectDir = /home/fede/proyectos/Final_OOP/Entidades/
=======
build_property.ProjectDir = C:\Users\Nacho\source\repos\Final\Entidades\
@@ -23,3 +24,6 @@ build_property.EnableGeneratedComInterfaceComImportInterop =
=======
build_property.ProjectDir = C:\Users\fedpo\source\repos\Final_OOP\Entidades\
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+build_property.ProjectDir = C:\Users\fedpo\Downloads\Final\Final\Entidades\
+>>>>>>> c493033 (cosas que faltaban)
diff --git a/Entidades/obj/Entidades.csproj.nuget.dgspec.json b/Entidades/obj/Entidades.csproj.nuget.dgspec.json
index b959f57..f4512a9 100644
--- a/Entidades/obj/Entidades.csproj.nuget.dgspec.json
+++ b/Entidades/obj/Entidades.csproj.nuget.dgspec.json
@@ -3,6 +3,7 @@
"restore": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"/home/fede/proyectos/Final_OOP/Entidades/Entidades.csproj": {}
},
@@ -23,13 +24,17 @@
=======
"C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj": {}
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {}
+>>>>>>> c493033 (cosas que faltaban)
},
"projects": {
- "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj": {
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj",
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj",
"projectName": "Entidades",
+<<<<<<< HEAD
<<<<<<< HEAD
"projectPath": "C:\\Users\\Nacho\\Source\\Repos\\Final_OOP\\Entidades\\Entidades.csproj",
"packagesPath": "C:\\Users\\Nacho\\.nuget\\packages\\",
@@ -44,8 +49,11 @@
"/home/fede/.nuget/NuGet/NuGet.Config"
=======
"projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj",
+=======
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj",
+>>>>>>> c493033 (cosas que faltaban)
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
diff --git a/Entidades/obj/project.assets.json b/Entidades/obj/project.assets.json
index 6f9b9f0..42228d8 100644
--- a/Entidades/obj/project.assets.json
+++ b/Entidades/obj/project.assets.json
@@ -19,6 +19,7 @@
"restore": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"projectUniqueName": "/home/fede/proyectos/Final_OOP/Entidades/Entidades.csproj",
"projectName": "Entidades",
@@ -44,10 +45,13 @@
"/home/fede/.nuget/NuGet/NuGet.Config"
=======
"projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj",
+=======
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj",
+>>>>>>> c493033 (cosas que faltaban)
"projectName": "Entidades",
- "projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj",
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj",
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
diff --git a/Entidades/obj/project.nuget.cache b/Entidades/obj/project.nuget.cache
index 8483c5d..ad81583 100644
--- a/Entidades/obj/project.nuget.cache
+++ b/Entidades/obj/project.nuget.cache
@@ -2,6 +2,7 @@
"version": 2,
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"dgSpecHash": "LSnXGupX+sIU3VjCECy137T1ThKtECGacQq+4Cfd3SDyYEpIcp26yf15qIysqN2+1Fwti7c13f3fBKmUt8i0Og==",
"success": true,
@@ -18,8 +19,11 @@
=======
"dgSpecHash": "HXGSmDVQyRmnk0PltQ/0YQ5GVlG0+k5yrwjE8AEym5VgLOBWNEQdRU3yZ7m5TuvHzpPyj4xzCWtK6uATLanIjg==",
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+ "dgSpecHash": "iQ0EifyjZh9oi0Mdt+E3sLhf14CzOUsLKHxZb9iRQ9RyPF+gexIoaaQb71/6xZGzSye9KUJ3V77rlL+eNkHOdw==",
+>>>>>>> c493033 (cosas que faltaban)
"success": true,
- "projectFilePath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj",
+ "projectFilePath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj",
"expectedPackageFiles": [],
>>>>>>> 8ad9dc6 (faltan controladoras)
"logs": []
diff --git a/Modelo/RepositorioClientes.cs b/Modelo/RepositorioClientes.cs
index b64bc04..297656b 100644
--- a/Modelo/RepositorioClientes.cs
+++ b/Modelo/RepositorioClientes.cs
@@ -4,10 +4,14 @@ namespace Modelo
{
public sealed class RepositorioClientes : RepositorioBase
{
- override public bool Add(Cliente t)
+ public override bool Add(Cliente t)
{
- bool ret = false;
+ if (ExistePorCuit(t.Cuit))
+ {
+ throw new InvalidOperationException($"El Cliente con el CUIT {t.Cuit} ya existe.");
+ }
+ bool ret = false;
try
{
almacen.Add(t);
@@ -20,6 +24,11 @@ namespace Modelo
return ret;
}
+ // Método para verificar si el CUIT ya existe
+ public bool ExistePorCuit(long cuit)
+ {
+ return almacen.Any(c => c.Cuit == cuit);
+ }
override public bool Mod(Cliente t)
{
diff --git a/Modelo/RepositorioFactura.cs b/Modelo/RepositorioFactura.cs
index ac1841a..0ab190b 100644
--- a/Modelo/RepositorioFactura.cs
+++ b/Modelo/RepositorioFactura.cs
@@ -7,22 +7,31 @@ namespace Modelo
{
override public bool Add(Factura t)
{
- bool ret = false;
-
+ if (ExistePorId(t.Id))
+ {
+ throw new InvalidOperationException($"La Factura con el ID {t.Id} ya existe.");
+ }
+ if (t.Cliente == null || t.Cliente.Cuit == 0)
+ {
+ throw new InvalidOperationException("Debe seleccionar un cliente antes de agregar la factura.");
+ }
try
{
almacen.Add(t);
- ret = true;
+ return true;
}
- catch (Exception)
+ catch (Exception ex)
{
- throw;
+ // Mejor manejo de excepciones, podrías registrar el error
+ throw new Exception("Error al agregar la factura.", ex);
}
-
- return ret;
}
- override public bool Mod(Factura t)
+ public bool ExistePorId(int id)
+ {
+ return almacen.Any(f => f.Id == id);
+ }
+ override public bool Mod(Factura t)
{
bool ret = false;
diff --git a/Modelo/RepositorioProveedor.cs b/Modelo/RepositorioProveedor.cs
index 5bd3553..655f220 100644
--- a/Modelo/RepositorioProveedor.cs
+++ b/Modelo/RepositorioProveedor.cs
@@ -6,19 +6,20 @@ namespace Modelo
{
override public bool Add(Proveedor t)
{
- bool ret = false;
+ if (ExistePorCuit(t.Cuit))
+ {
+ throw new InvalidOperationException($"El Proveedor con el CUIT {t.Cuit} ya existe.");
+ }
try
{
almacen.Add(t);
- ret = true;
+ return true;
}
catch (Exception)
{
throw;
}
-
- return ret;
}
override public bool Mod(Proveedor t)
@@ -45,7 +46,7 @@ namespace Modelo
override public bool Del(Proveedor t)
{
bool ret = false;
-
+
try
{
var proveedorAEliminar = almacen.Find(x => x.Cuit == t.Cuit);
@@ -62,5 +63,10 @@ namespace Modelo
return ret;
}
+
+ public bool ExistePorCuit(long cuit)
+ {
+ return almacen.Any(p => p.Cuit == cuit);
+ }
}
}
diff --git a/Modelo/obj/Debug/net6.0/Modelo.GeneratedMSBuildEditorConfig.editorconfig b/Modelo/obj/Debug/net6.0/Modelo.GeneratedMSBuildEditorConfig.editorconfig
index c3ee021..cd7e6bc 100644
--- a/Modelo/obj/Debug/net6.0/Modelo.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Modelo/obj/Debug/net6.0/Modelo.GeneratedMSBuildEditorConfig.editorconfig
@@ -11,6 +11,7 @@ build_property.RootNamespace = Modelo
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
build_property.ProjectDir = /home/fede/proyectos/Final_OOP/Modelo/
=======
build_property.ProjectDir = C:\Users\Nacho\source\repos\Final\Modelo\
@@ -23,3 +24,6 @@ build_property.EnableGeneratedComInterfaceComImportInterop =
=======
build_property.ProjectDir = C:\Users\fedpo\source\repos\Final_OOP\Modelo\
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+build_property.ProjectDir = C:\Users\fedpo\Downloads\Final\Final\Modelo\
+>>>>>>> c493033 (cosas que faltaban)
diff --git a/Modelo/obj/Modelo.csproj.nuget.dgspec.json b/Modelo/obj/Modelo.csproj.nuget.dgspec.json
index 137c7e3..88f0320 100644
--- a/Modelo/obj/Modelo.csproj.nuget.dgspec.json
+++ b/Modelo/obj/Modelo.csproj.nuget.dgspec.json
@@ -3,6 +3,7 @@
"restore": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"/home/fede/proyectos/Final_OOP/Modelo/Modelo.csproj": {}
},
@@ -23,13 +24,17 @@
=======
"C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj": {}
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj": {}
+>>>>>>> c493033 (cosas que faltaban)
},
"projects": {
- "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj": {
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj",
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj",
"projectName": "Entidades",
+<<<<<<< HEAD
<<<<<<< HEAD
"projectPath": "C:\\Users\\Nacho\\Source\\Repos\\Final_OOP\\Entidades\\Entidades.csproj",
"packagesPath": "C:\\Users\\Nacho\\.nuget\\packages\\",
@@ -44,8 +49,11 @@
"/home/fede/.nuget/NuGet/NuGet.Config"
=======
"projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj",
+=======
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj",
+>>>>>>> c493033 (cosas que faltaban)
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
@@ -129,12 +137,17 @@
}
}
},
+<<<<<<< HEAD
"C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj": {
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj": {
+>>>>>>> c493033 (cosas que faltaban)
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj",
"projectName": "Modelo",
+<<<<<<< HEAD
<<<<<<< HEAD
"projectPath": "C:\\Users\\Nacho\\Source\\Repos\\Final_OOP\\Modelo\\Modelo.csproj",
"packagesPath": "C:\\Users\\Nacho\\.nuget\\packages\\",
@@ -149,8 +162,11 @@
"/home/fede/.nuget/NuGet/NuGet.Config"
=======
"projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
+=======
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj",
+>>>>>>> c493033 (cosas que faltaban)
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
@@ -174,6 +190,7 @@
"projectReferences": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"/home/fede/proyectos/Final_OOP/Entidades/Entidades.csproj": {
"projectPath": "/home/fede/proyectos/Final_OOP/Entidades/Entidades.csproj"
@@ -189,6 +206,10 @@
"C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj": {
"projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj"
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj"
+>>>>>>> c493033 (cosas que faltaban)
}
}
}
diff --git a/Modelo/obj/project.assets.json b/Modelo/obj/project.assets.json
index cf47516..75aa2f4 100644
--- a/Modelo/obj/project.assets.json
+++ b/Modelo/obj/project.assets.json
@@ -38,6 +38,7 @@
"restore": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"projectUniqueName": "/home/fede/proyectos/Final_OOP/Modelo/Modelo.csproj",
"projectName": "Modelo",
@@ -63,10 +64,13 @@
"/home/fede/.nuget/NuGet/NuGet.Config"
=======
"projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
+=======
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj",
+>>>>>>> c493033 (cosas que faltaban)
"projectName": "Modelo",
- "projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj",
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
@@ -90,6 +94,7 @@
"projectReferences": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"/home/fede/proyectos/Final_OOP/Entidades/Entidades.csproj": {
"projectPath": "/home/fede/proyectos/Final_OOP/Entidades/Entidades.csproj"
@@ -105,6 +110,10 @@
"C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj": {
"projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj"
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj"
+>>>>>>> c493033 (cosas que faltaban)
}
}
}
diff --git a/Modelo/obj/project.nuget.cache b/Modelo/obj/project.nuget.cache
index d71b1ac..9fe0225 100644
--- a/Modelo/obj/project.nuget.cache
+++ b/Modelo/obj/project.nuget.cache
@@ -2,6 +2,7 @@
"version": 2,
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"dgSpecHash": "druJUlWKmOp0ZDp0BX75o9Fs1GyoqoIkTLLMStpqDmZBEy8hoSreNrR/4qjyFeX2PbXxwtpQp0hY2GY2ewsTOQ==",
"success": true,
@@ -18,8 +19,11 @@
=======
"dgSpecHash": "Lbp3ldB0Hrw5pXllkp+TBPvDxt/9rPRNHHKZTqTlG4g88ELwAzlQEuFOATRGWgN+sSkhjGassnHFTlqrUfwaQA==",
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+ "dgSpecHash": "pw7jedCv+5Z7cgVNhso+oycHNF67O1XyYT4HUnm6ukG4VUtgCv2G8NovbqYT02ZK0eONOKuhRbtsHdtFWeVAnw==",
+>>>>>>> c493033 (cosas que faltaban)
"success": true,
- "projectFilePath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
+ "projectFilePath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj",
"expectedPackageFiles": [],
>>>>>>> 8ad9dc6 (faltan controladoras)
"logs": []
diff --git a/Vista/AddProducto.Designer.cs b/Vista/AddProducto.Designer.cs
new file mode 100644
index 0000000..3fc0a32
--- /dev/null
+++ b/Vista/AddProducto.Designer.cs
@@ -0,0 +1,122 @@
+namespace Vista
+{
+ partial class AddProducto
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ comboBox1 = new ComboBox();
+ label1 = new Label();
+ label2 = new Label();
+ numericUpDown1 = new NumericUpDown();
+ button1 = new Button();
+ button2 = new Button();
+ ((System.ComponentModel.ISupportInitialize)numericUpDown1).BeginInit();
+ SuspendLayout();
+ //
+ // comboBox1
+ //
+ comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
+ comboBox1.FormattingEnabled = true;
+ comboBox1.Location = new Point(164, 36);
+ comboBox1.Name = "comboBox1";
+ comboBox1.Size = new Size(121, 23);
+ comboBox1.TabIndex = 0;
+ //
+ // label1
+ //
+ label1.AutoSize = true;
+ label1.Location = new Point(92, 39);
+ label1.Name = "label1";
+ label1.Size = new Size(56, 15);
+ label1.TabIndex = 1;
+ label1.Text = "Producto";
+ //
+ // label2
+ //
+ label2.AutoSize = true;
+ label2.Location = new Point(93, 85);
+ label2.Name = "label2";
+ label2.Size = new Size(55, 15);
+ label2.TabIndex = 2;
+ label2.Text = "Cantidad";
+ //
+ // numericUpDown1
+ //
+ numericUpDown1.Location = new Point(165, 77);
+ numericUpDown1.Maximum = new decimal(new int[] { 10000000, 0, 0, 0 });
+ numericUpDown1.Name = "numericUpDown1";
+ numericUpDown1.Size = new Size(120, 23);
+ numericUpDown1.TabIndex = 3;
+ //
+ // button1
+ //
+ button1.Location = new Point(12, 191);
+ button1.Name = "button1";
+ button1.Size = new Size(85, 42);
+ button1.TabIndex = 4;
+ button1.Text = "Guardar";
+ button1.UseVisualStyleBackColor = true;
+ button1.Click += button1_Click;
+ //
+ // button2
+ //
+ button2.Location = new Point(354, 191);
+ button2.Name = "button2";
+ button2.Size = new Size(85, 42);
+ button2.TabIndex = 5;
+ button2.Text = "Cancelar";
+ button2.UseVisualStyleBackColor = true;
+ button2.Click += button2_Click;
+ //
+ // AddProducto
+ //
+ AutoScaleDimensions = new SizeF(7F, 15F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(451, 245);
+ Controls.Add(button2);
+ Controls.Add(button1);
+ Controls.Add(numericUpDown1);
+ Controls.Add(label2);
+ Controls.Add(label1);
+ Controls.Add(comboBox1);
+ Name = "AddProducto";
+ Text = "Form1";
+ ((System.ComponentModel.ISupportInitialize)numericUpDown1).EndInit();
+ ResumeLayout(false);
+ PerformLayout();
+ }
+
+ #endregion
+
+ private ComboBox comboBox1;
+ private Label label1;
+ private Label label2;
+ private NumericUpDown numericUpDown1;
+ private Button button1;
+ private Button button2;
+ }
+}
\ No newline at end of file
diff --git a/Vista/AddProducto.cs b/Vista/AddProducto.cs
new file mode 100644
index 0000000..8477764
--- /dev/null
+++ b/Vista/AddProducto.cs
@@ -0,0 +1,30 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Vista
+{
+ public partial class AddProducto : Form
+ {
+ public AddProducto()
+ {
+ InitializeComponent();
+ }
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+ Close();
+ }
+
+ private void button2_Click(object sender, EventArgs e)
+ {
+ Close();
+ }
+ }
+}
diff --git a/Vista/AddProducto.resx b/Vista/AddProducto.resx
new file mode 100644
index 0000000..a395bff
--- /dev/null
+++ b/Vista/AddProducto.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Vista/CategoriaCreate.Designer.cs b/Vista/CategoriaCreate.Designer.cs
new file mode 100644
index 0000000..60fc3e8
--- /dev/null
+++ b/Vista/CategoriaCreate.Designer.cs
@@ -0,0 +1,119 @@
+namespace Vista
+{
+ partial class CategoriaCreate
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ button2 = new Button();
+ label1 = new Label();
+ label2 = new Label();
+ numericUpDown1 = new NumericUpDown();
+ textBox1 = new TextBox();
+ button1 = new Button();
+ ((System.ComponentModel.ISupportInitialize)numericUpDown1).BeginInit();
+ SuspendLayout();
+ //
+ // button2
+ //
+ button2.Location = new Point(146, 166);
+ button2.Name = "button2";
+ button2.Size = new Size(75, 23);
+ button2.TabIndex = 1;
+ button2.Text = "Cancelar";
+ button2.UseVisualStyleBackColor = true;
+ button2.Click += button2_Click;
+ //
+ // label1
+ //
+ label1.AutoSize = true;
+ label1.Location = new Point(12, 31);
+ label1.Name = "label1";
+ label1.Size = new Size(18, 15);
+ label1.TabIndex = 2;
+ label1.Text = "ID";
+ //
+ // label2
+ //
+ label2.AutoSize = true;
+ label2.Location = new Point(12, 67);
+ label2.Name = "label2";
+ label2.Size = new Size(69, 15);
+ label2.TabIndex = 3;
+ label2.Text = "Descripcion";
+ //
+ // numericUpDown1
+ //
+ numericUpDown1.Location = new Point(101, 23);
+ numericUpDown1.Maximum = new decimal(new int[] { 1215752191, 23, 0, 0 });
+ numericUpDown1.Name = "numericUpDown1";
+ numericUpDown1.Size = new Size(120, 23);
+ numericUpDown1.TabIndex = 4;
+ //
+ // textBox1
+ //
+ textBox1.Location = new Point(101, 59);
+ textBox1.Name = "textBox1";
+ textBox1.Size = new Size(120, 23);
+ textBox1.TabIndex = 5;
+ //
+ // button1
+ //
+ button1.Location = new Point(32, 166);
+ button1.Name = "button1";
+ button1.Size = new Size(75, 23);
+ button1.TabIndex = 6;
+ button1.Text = "Aceptar";
+ button1.UseVisualStyleBackColor = true;
+ button1.Click += button1_Click;
+ //
+ // CategoriaCreate
+ //
+ AutoScaleDimensions = new SizeF(7F, 15F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(517, 235);
+ Controls.Add(button1);
+ Controls.Add(textBox1);
+ Controls.Add(numericUpDown1);
+ Controls.Add(label2);
+ Controls.Add(label1);
+ Controls.Add(button2);
+ Name = "CategoriaCreate";
+ Text = "Form1";
+ ((System.ComponentModel.ISupportInitialize)numericUpDown1).EndInit();
+ ResumeLayout(false);
+ PerformLayout();
+ }
+
+ #endregion
+ private Button button2;
+ private Label label1;
+ private Label label2;
+ private NumericUpDown numericUpDown1;
+ private TextBox textBox1;
+ private Button button1;
+ }
+}
\ No newline at end of file
diff --git a/Vista/CategoriaCreate.cs b/Vista/CategoriaCreate.cs
new file mode 100644
index 0000000..52fefbb
--- /dev/null
+++ b/Vista/CategoriaCreate.cs
@@ -0,0 +1,92 @@
+using Controladora;
+using Entidades;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Vista
+{
+ public partial class CategoriaCreate : Form
+ {
+ private Categoria? categoria;
+ public CategoriaCreate()
+ {
+ InitializeComponent();
+ }
+
+ private void button2_Click(object sender, EventArgs e)
+ {
+ this.Close();
+
+ }
+ private void CargarDatos()
+ {
+ if (categoria != null)
+ {
+ textBox1.Text = categoria.Descripcion;
+ numericUpDown1.Value = categoria.Id;
+ }
+ }
+
+ private bool ValidarDatos()
+ {
+ string devolucion = "";
+
+ if (string.IsNullOrEmpty(textBox1.Text))
+ devolucion += "La descripción no puede ser nula o vacía\n";
+ else if (textBox1.Text.Length > 100) // Ajusta el límite según sea necesario
+ devolucion += "La descripción no puede superar los 100 caracteres\n";
+
+ // Validar unicidad del ID solo si es una nueva categoría
+ if (categoria == null && ControladoraCategorias.Instance.Listar().Any(c => c.Id == (int)numericUpDown1.Value))
+ {
+ devolucion += "Ya existe una categoría con el mismo ID\n";
+ }
+
+ if (devolucion == "")
+ {
+ return true;
+ }
+ else
+ {
+ MessageBox.Show(devolucion);
+ return false;
+ }
+ }
+
+
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+ string msg;
+ if (ValidarDatos())
+ {
+ if (categoria == null)
+ {
+ categoria = new Categoria
+ {
+ Id = (int)numericUpDown1.Value,
+ Descripcion = textBox1.Text
+ };
+
+ msg = ControladoraCategorias.Instance.Añadir(categoria);
+ }
+ else
+ {
+ categoria.Descripcion = textBox1.Text;
+ categoria.Id = (int)numericUpDown1.Value; // Solo si quieres permitir modificaciones del ID
+
+ msg = ControladoraCategorias.Instance.Modificar(categoria);
+ }
+ MessageBox.Show(msg, "Información", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ Close();
+ }
+ }
+ }
+}
diff --git a/Vista/CategoriaCreate.resx b/Vista/CategoriaCreate.resx
new file mode 100644
index 0000000..af32865
--- /dev/null
+++ b/Vista/CategoriaCreate.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Vista/FrmCliente.Designer.cs b/Vista/FrmCliente.Designer.cs
index 290cbe2..d6352a3 100644
--- a/Vista/FrmCliente.Designer.cs
+++ b/Vista/FrmCliente.Designer.cs
@@ -144,6 +144,7 @@ namespace Vista
numCuit.Name = "numCuit";
numCuit.Size = new Size(173, 23);
numCuit.TabIndex = 12;
+ numCuit.ValueChanged += numCuit_ValueChanged;
//
// FrmCliente
//
diff --git a/Vista/FrmCliente.cs b/Vista/FrmCliente.cs
index 7506c11..973ee36 100644
--- a/Vista/FrmCliente.cs
+++ b/Vista/FrmCliente.cs
@@ -49,6 +49,11 @@ namespace Vista
if (txtNombre.Text.Length > 50) devolucion += "El nombre no puede superar los 50 chars\n";
if (string.IsNullOrEmpty(txtApellido.Text)) devolucion += "El Apellido no puede ser nulo o vacio\n";
if (string.IsNullOrEmpty(txtCorreo.Text)) devolucion += "El Correo no puede ser nulo o vacio\n";
+ else if (!txtCorreo.Text.Contains("@"))
+ {
+ devolucion += "El correo debe contener '@'\n";
+ }
+
if (devolucion == "")
{
@@ -99,6 +104,11 @@ namespace Vista
}
+ }
+
+ private void numCuit_ValueChanged(object sender, EventArgs e)
+ {
+
}
}
}
diff --git a/Vista/FrmCliente.resx b/Vista/FrmCliente.resx
index a395bff..af32865 100644
--- a/Vista/FrmCliente.resx
+++ b/Vista/FrmCliente.resx
@@ -18,7 +18,7 @@
System.Resources.ResXResourceReader, System.Windows.Forms, ...
System.Resources.ResXResourceWriter, System.Windows.Forms, ...
this is my long stringthis is a comment
- Blue
+ Blue
[base64 mime encoded serialized .NET Framework object]
diff --git a/Vista/FrmClientes.Designer.cs b/Vista/FrmClientes.Designer.cs
index 4c62b3b..742721f 100644
--- a/Vista/FrmClientes.Designer.cs
+++ b/Vista/FrmClientes.Designer.cs
@@ -83,6 +83,7 @@
//
dataGridView1.AllowUserToAddRows = false;
dataGridView1.AllowUserToDeleteRows = false;
+ dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView1.Location = new Point(6, 22);
dataGridView1.MultiSelect = false;
@@ -90,7 +91,7 @@
dataGridView1.ReadOnly = true;
dataGridView1.RowTemplate.Height = 25;
dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
- dataGridView1.Size = new Size(550, 235);
+ dataGridView1.Size = new Size(737, 235);
dataGridView1.TabIndex = 3;
//
// FrmClientes
diff --git a/Vista/FrmClientes.cs b/Vista/FrmClientes.cs
index 0633a3a..fd5f607 100644
--- a/Vista/FrmClientes.cs
+++ b/Vista/FrmClientes.cs
@@ -62,5 +62,7 @@ namespace Vista
ActualizarGrilla();
}
}
- }
+
+
+}
}
diff --git a/Vista/FrmClientes.resx b/Vista/FrmClientes.resx
index a395bff..af32865 100644
--- a/Vista/FrmClientes.resx
+++ b/Vista/FrmClientes.resx
@@ -18,7 +18,7 @@
System.Resources.ResXResourceReader, System.Windows.Forms, ...
System.Resources.ResXResourceWriter, System.Windows.Forms, ...
this is my long stringthis is a comment
- Blue
+ Blue
[base64 mime encoded serialized .NET Framework object]
diff --git a/Vista/FrmFactura.Designer.cs b/Vista/FrmFactura.Designer.cs
index c87a827..ffdf756 100644
--- a/Vista/FrmFactura.Designer.cs
+++ b/Vista/FrmFactura.Designer.cs
@@ -28,19 +28,142 @@
///
private void InitializeComponent()
{
+ button1 = new Button();
+ button2 = new Button();
+ numericUpDown1 = new NumericUpDown();
+ label1 = new Label();
+ numericUpDown2 = new NumericUpDown();
+ label2 = new Label();
+ dateTimePicker1 = new DateTimePicker();
+ label3 = new Label();
+ label4 = new Label();
+ comboBox1 = new ComboBox();
+ ((System.ComponentModel.ISupportInitialize)numericUpDown1).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)numericUpDown2).BeginInit();
SuspendLayout();
//
- // FrmAddVentas
+ // button1
+ //
+ button1.Location = new Point(12, 213);
+ button1.Name = "button1";
+ button1.Size = new Size(75, 23);
+ button1.TabIndex = 0;
+ button1.Text = "Aceptar";
+ button1.UseVisualStyleBackColor = true;
+ button1.Click += button1_Click;
+ //
+ // button2
+ //
+ button2.Location = new Point(123, 213);
+ button2.Name = "button2";
+ button2.Size = new Size(75, 23);
+ button2.TabIndex = 1;
+ button2.Text = "Cancelar";
+ button2.UseVisualStyleBackColor = true;
+ button2.Click += button2_Click;
+ //
+ // numericUpDown1
+ //
+ numericUpDown1.Location = new Point(97, 26);
+ numericUpDown1.Maximum = new decimal(new int[] { 1215752191, 23, 0, 0 });
+ numericUpDown1.Name = "numericUpDown1";
+ numericUpDown1.Size = new Size(120, 23);
+ numericUpDown1.TabIndex = 2;
+ //
+ // label1
+ //
+ label1.AutoSize = true;
+ label1.Location = new Point(69, 34);
+ label1.Name = "label1";
+ label1.Size = new Size(18, 15);
+ label1.TabIndex = 3;
+ label1.Text = "ID";
+ //
+ // numericUpDown2
+ //
+ numericUpDown2.Location = new Point(97, 57);
+ numericUpDown2.Maximum = new decimal(new int[] { 1215752191, 23, 0, 0 });
+ numericUpDown2.Name = "numericUpDown2";
+ numericUpDown2.Size = new Size(120, 23);
+ numericUpDown2.TabIndex = 4;
+ //
+ // label2
+ //
+ label2.AutoSize = true;
+ label2.Location = new Point(59, 65);
+ label2.Name = "label2";
+ label2.Size = new Size(32, 15);
+ label2.TabIndex = 5;
+ label2.Text = "Total";
+ //
+ // dateTimePicker1
+ //
+ dateTimePicker1.Location = new Point(97, 88);
+ dateTimePicker1.Name = "dateTimePicker1";
+ dateTimePicker1.Size = new Size(120, 23);
+ dateTimePicker1.TabIndex = 6;
+ //
+ // label3
+ //
+ label3.AutoSize = true;
+ label3.Location = new Point(49, 94);
+ label3.Name = "label3";
+ label3.Size = new Size(38, 15);
+ label3.TabIndex = 7;
+ label3.Text = "Fecha";
+ //
+ // label4
+ //
+ label4.AutoSize = true;
+ label4.Location = new Point(49, 124);
+ label4.Name = "label4";
+ label4.Size = new Size(44, 15);
+ label4.TabIndex = 8;
+ label4.Text = "Cliente";
+ //
+ // comboBox1
+ //
+ comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
+ comboBox1.FormattingEnabled = true;
+ comboBox1.Location = new Point(99, 121);
+ comboBox1.Name = "comboBox1";
+ comboBox1.Size = new Size(121, 23);
+ comboBox1.TabIndex = 10;
+ //
+ // FrmFactura
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
- ClientSize = new Size(495, 229);
- Name = "FrmAddVentas";
+ ClientSize = new Size(458, 265);
+ Controls.Add(comboBox1);
+ Controls.Add(label4);
+ Controls.Add(label3);
+ Controls.Add(dateTimePicker1);
+ Controls.Add(label2);
+ Controls.Add(numericUpDown2);
+ Controls.Add(label1);
+ Controls.Add(numericUpDown1);
+ Controls.Add(button2);
+ Controls.Add(button1);
+ Name = "FrmFactura";
Text = "Form1";
-
+ ((System.ComponentModel.ISupportInitialize)numericUpDown1).EndInit();
+ ((System.ComponentModel.ISupportInitialize)numericUpDown2).EndInit();
ResumeLayout(false);
+ PerformLayout();
}
#endregion
+
+ private Button button1;
+ private Button button2;
+ private NumericUpDown numericUpDown1;
+ private Label label1;
+ private NumericUpDown numericUpDown2;
+ private Label label2;
+ private DateTimePicker dateTimePicker1;
+ private Label label3;
+ private Label label4;
+ private ComboBox comboBox1;
}
}
\ No newline at end of file
diff --git a/Vista/FrmFactura.cs b/Vista/FrmFactura.cs
index 94e07f9..f3690c4 100644
--- a/Vista/FrmFactura.cs
+++ b/Vista/FrmFactura.cs
@@ -1,5 +1,9 @@
-using System;
+using Controladora;
+using Entidades;
+using Modelo;
+using System;
using System.Collections.Generic;
+using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Data;
using System.Drawing;
@@ -12,9 +16,136 @@ namespace Vista
{
public partial class FrmFactura : Form
{
- public FrmFactura()
+ private Cliente clienteSeleccionado;
+ Factura factura;
+ public FrmFactura(Factura? factura = null)
{
InitializeComponent();
+ CargarClientes();
+ comboBox1.SelectedIndexChanged += comboBox1_SelectedIndexChanged;
+ // Para el primer control NumericUpDown
+ numericUpDown1.Maximum = int.MaxValue; // Esto permitirá IDs muy grandes
+
+ // Para el segundo control NumericUpDown
+ numericUpDown2.Maximum = decimal.MaxValue; // Esto permitirá totales muy grandes
+
+
+ if (factura != null)
+ {
+ this.factura = factura;
+ this.Text = "Modificar Factura";
+ CargarDatos();
+ }
+ else
+ {
+ this.Text = "Agregar Factura";
+ }
}
+
+ private void CargarClientes()
+ {
+ // Obtener la lista de clientes desde el repositorio
+ ReadOnlyCollection clientes = RepositorioClientes.Instance.Listar();
+
+ // Asignar la lista de clientes como origen de datos para el ComboBox
+ comboBox1.DataSource = clientes;
+
+ // Establecer la propiedad para mostrar el nombre del cliente en el ComboBox
+ comboBox1.DisplayMember = "NombreCompleto";
+ }
+
+ private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ clienteSeleccionado = (Cliente)comboBox1.SelectedItem;
+ }
+
+
+
+ private void CargarDatos()
+ {
+ numericUpDown1.Value = factura.Id;
+ numericUpDown2.Value = (decimal)factura.Total;
+ dateTimePicker1.Value = factura.Fecha;
+
+ // Asignar el cliente seleccionado en el ComboBox
+ if (factura.Cliente != null)
+ {
+ comboBox1.SelectedItem = factura.Cliente;
+ }
+ }
+
+
+ private bool ValidarDatos()
+ {
+ string devolucion = "";
+
+ if (string.IsNullOrEmpty(numericUpDown1.Text)) devolucion += "El ID no puede ser nulo o vacío\n";
+ if (numericUpDown2.Value <= 0) devolucion += "El total debe ser mayor que cero\n";
+ if (clienteSeleccionado == null) devolucion += "Debe seleccionar un cliente\n";
+
+ if (devolucion == "")
+ {
+ return true;
+ }
+ else
+ {
+ MessageBox.Show(devolucion, "Errores de Validación", MessageBoxButtons.OK, MessageBoxIcon.Warning);
+ return false;
+ }
+ }
+
+
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+ if (ValidarDatos())
+ {
+ try
+ {
+ if (factura == null)
+ {
+ // Crear una nueva factura con los datos proporcionados
+ factura = new Factura
+ {
+ Id = (int)numericUpDown1.Value,
+ Total = (double)numericUpDown2.Value,
+ Fecha = dateTimePicker1.Value,
+ Cliente = (Cliente)comboBox1.SelectedItem,
+ };
+ // Agregar la factura a la colección
+ ControladoraFacturas.Instance.Añadir(factura);
+ }
+ else
+ {
+ // Actualizar los datos de la factura existente
+ factura.Id = (int)numericUpDown1.Value;
+ factura.Total = (double)numericUpDown2.Value;
+ factura.Fecha = dateTimePicker1.Value;
+ factura.Cliente = (Cliente)comboBox1.SelectedItem;
+ // Modificar la factura en la colección
+ ControladoraFacturas.Instance.Modificar(factura);
+ }
+ MessageBox.Show("Operación realizada con éxito", "Información", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ Close();
+ }
+ catch (InvalidOperationException ex)
+ {
+ MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ catch (Exception ex)
+ {
+ // Captura cualquier otra excepción que pueda ocurrir
+ MessageBox.Show("Ocurrió un error inesperado: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ }
+ }
+ }
+
+
+ private void button2_Click(object sender, EventArgs e)
+ {
+ this.Close();
+ }
+
+
}
}
diff --git a/Vista/FrmFacturas.Designer.cs b/Vista/FrmFacturas.Designer.cs
index 5cbf770..3d38a23 100644
--- a/Vista/FrmFacturas.Designer.cs
+++ b/Vista/FrmFacturas.Designer.cs
@@ -47,12 +47,14 @@
//
// dataGridView1
//
+ dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView1.Location = new Point(6, 22);
dataGridView1.Name = "dataGridView1";
dataGridView1.RowTemplate.Height = 25;
- dataGridView1.Size = new Size(550, 235);
+ dataGridView1.Size = new Size(594, 235);
dataGridView1.TabIndex = 3;
+ dataGridView1.CellBorderStyleChanged += dataGridView1_CellBorderStyleChanged;
//
// BtnAdd
//
@@ -64,13 +66,13 @@
BtnAdd.UseVisualStyleBackColor = true;
BtnAdd.Click += BtnAdd_Click;
//
- // FrmVentas
+ // FrmFacturas
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(groupBox1);
- Name = "FrmVentas";
+ Name = "FrmFacturas";
Text = "Ventas";
WindowState = FormWindowState.Maximized;
groupBox1.ResumeLayout(false);
diff --git a/Vista/FrmFacturas.cs b/Vista/FrmFacturas.cs
index d72594f..027eaa5 100644
--- a/Vista/FrmFacturas.cs
+++ b/Vista/FrmFacturas.cs
@@ -4,6 +4,7 @@ namespace Vista
{
public partial class FrmFacturas : Form
{
+
public FrmFacturas()
{
InitializeComponent();
@@ -20,5 +21,10 @@ namespace Vista
form.ShowDialog();
ActualizarGrilla();
}
+
+ private void dataGridView1_CellBorderStyleChanged(object sender, EventArgs e)
+ {
+
+ }
}
}
diff --git a/Vista/FrmFacturas.resx b/Vista/FrmFacturas.resx
index a395bff..af32865 100644
--- a/Vista/FrmFacturas.resx
+++ b/Vista/FrmFacturas.resx
@@ -18,7 +18,7 @@
System.Resources.ResXResourceReader, System.Windows.Forms, ...
System.Resources.ResXResourceWriter, System.Windows.Forms, ...
this is my long stringthis is a comment
- Blue
+ Blue
[base64 mime encoded serialized .NET Framework object]
diff --git a/Vista/FrmOrdenDeCompra.Designer.cs b/Vista/FrmOrdenDeCompra.Designer.cs
index 5338ef3..f457d9c 100644
--- a/Vista/FrmOrdenDeCompra.Designer.cs
+++ b/Vista/FrmOrdenDeCompra.Designer.cs
@@ -32,7 +32,6 @@
dataGridView1 = new DataGridView();
BtnAdd = new Button();
BtnEliminar = new Button();
- BtnModificar = new Button();
groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
SuspendLayout();
@@ -42,7 +41,6 @@
groupBox1.Controls.Add(dataGridView1);
groupBox1.Controls.Add(BtnAdd);
groupBox1.Controls.Add(BtnEliminar);
- groupBox1.Controls.Add(BtnModificar);
groupBox1.Location = new Point(12, 3);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(776, 351);
@@ -51,6 +49,7 @@
//
// dataGridView1
//
+ dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.DisplayedCells;
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView1.Location = new Point(6, 22);
dataGridView1.Name = "dataGridView1";
@@ -77,15 +76,6 @@
BtnEliminar.Text = "Eliminar";
BtnEliminar.UseVisualStyleBackColor = true;
//
- // BtnModificar
- //
- BtnModificar.Location = new Point(108, 302);
- BtnModificar.Name = "BtnModificar";
- BtnModificar.Size = new Size(75, 23);
- BtnModificar.TabIndex = 1;
- BtnModificar.Text = "Modificar";
- BtnModificar.UseVisualStyleBackColor = true;
- //
// FrmOrdenDeCompra
//
AutoScaleDimensions = new SizeF(7F, 15F);
@@ -106,6 +96,5 @@
private DataGridView dataGridView1;
private Button BtnAdd;
private Button BtnEliminar;
- private Button BtnModificar;
}
}
\ No newline at end of file
diff --git a/Vista/FrmPedidosDePresupuestos.Designer.cs b/Vista/FrmPedidosDePresupuestos.Designer.cs
index d965f25..ab37ec0 100644
--- a/Vista/FrmPedidosDePresupuestos.Designer.cs
+++ b/Vista/FrmPedidosDePresupuestos.Designer.cs
@@ -32,30 +32,32 @@
dataGridView1 = new DataGridView();
BtnAdd = new Button();
BtnEliminar = new Button();
- BtnModificar = new Button();
+ dataGridView2 = new DataGridView();
groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)dataGridView2).BeginInit();
SuspendLayout();
//
// groupBox1
//
+ groupBox1.Controls.Add(dataGridView2);
groupBox1.Controls.Add(dataGridView1);
groupBox1.Controls.Add(BtnAdd);
groupBox1.Controls.Add(BtnEliminar);
- groupBox1.Controls.Add(BtnModificar);
groupBox1.Location = new Point(12, 2);
groupBox1.Name = "groupBox1";
- groupBox1.Size = new Size(776, 351);
+ groupBox1.Size = new Size(946, 377);
groupBox1.TabIndex = 4;
groupBox1.TabStop = false;
//
// dataGridView1
//
+ dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView1.Location = new Point(6, 22);
dataGridView1.Name = "dataGridView1";
dataGridView1.RowTemplate.Height = 25;
- dataGridView1.Size = new Size(550, 235);
+ dataGridView1.Size = new Size(284, 235);
dataGridView1.TabIndex = 3;
//
// BtnAdd
@@ -66,6 +68,7 @@
BtnAdd.TabIndex = 0;
BtnAdd.Text = "Añadir";
BtnAdd.UseVisualStyleBackColor = true;
+ BtnAdd.Click += BtnAdd_Click;
//
// BtnEliminar
//
@@ -76,26 +79,28 @@
BtnEliminar.Text = "Eliminar";
BtnEliminar.UseVisualStyleBackColor = true;
//
- // BtnModificar
+ // dataGridView2
//
- BtnModificar.Location = new Point(108, 302);
- BtnModificar.Name = "BtnModificar";
- BtnModificar.Size = new Size(75, 23);
- BtnModificar.TabIndex = 1;
- BtnModificar.Text = "Modificar";
- BtnModificar.UseVisualStyleBackColor = true;
+ dataGridView2.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
+ dataGridView2.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ dataGridView2.Location = new Point(355, 22);
+ dataGridView2.Name = "dataGridView2";
+ dataGridView2.RowTemplate.Height = 25;
+ dataGridView2.Size = new Size(585, 281);
+ dataGridView2.TabIndex = 4;
//
// FrmPedidosDePresupuestos
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
- ClientSize = new Size(800, 450);
+ ClientSize = new Size(970, 450);
Controls.Add(groupBox1);
Name = "FrmPedidosDePresupuestos";
Text = "PedidosDePresupuestos";
WindowState = FormWindowState.Maximized;
groupBox1.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
+ ((System.ComponentModel.ISupportInitialize)dataGridView2).EndInit();
ResumeLayout(false);
}
@@ -105,6 +110,6 @@
private DataGridView dataGridView1;
private Button BtnAdd;
private Button BtnEliminar;
- private Button BtnModificar;
+ private DataGridView dataGridView2;
}
}
\ No newline at end of file
diff --git a/Vista/FrmPedidosDePresupuestos.cs b/Vista/FrmPedidosDePresupuestos.cs
index ffbb217..ccba083 100644
--- a/Vista/FrmPedidosDePresupuestos.cs
+++ b/Vista/FrmPedidosDePresupuestos.cs
@@ -1,4 +1,5 @@
-using System;
+using Controladora;
+using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -16,5 +17,16 @@ namespace Vista
{
InitializeComponent();
}
+ private void ActualizarGrilla()
+ {
+ dataGridView1.DataSource = null;
+ dataGridView1.DataSource = ControladoraPedidoDePresupuestos.Instance.Listar();
+ }
+ private void BtnAdd_Click(object sender, EventArgs e)
+ {
+ var form = new FrmPresupuesto();
+ form.ShowDialog();
+ ActualizarGrilla();
+ }
}
}
diff --git a/Vista/FrmPresupuesto.Designer.cs b/Vista/FrmPresupuesto.Designer.cs
new file mode 100644
index 0000000..b5b57f8
--- /dev/null
+++ b/Vista/FrmPresupuesto.Designer.cs
@@ -0,0 +1,181 @@
+namespace Vista
+{
+ partial class FrmPresupuesto
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ dataGridView2 = new DataGridView();
+ ID = new Label();
+ label2 = new Label();
+ label3 = new Label();
+ dateTimePicker1 = new DateTimePicker();
+ comboBox1 = new ComboBox();
+ numericUpDown1 = new NumericUpDown();
+ button1 = new Button();
+ button2 = new Button();
+ button3 = new Button();
+ button4 = new Button();
+ ((System.ComponentModel.ISupportInitialize)dataGridView2).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)numericUpDown1).BeginInit();
+ //
+ // dataGridView2
+ //
+ dataGridView2.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ dataGridView2.Location = new Point(407, 12);
+ dataGridView2.Name = "dataGridView2";
+ dataGridView2.RowTemplate.Height = 25;
+ dataGridView2.Size = new Size(475, 413);
+ dataGridView2.TabIndex = 1;
+ //
+ // ID
+ //
+ ID.AutoSize = true;
+ ID.Location = new Point(34, 197);
+ ID.Name = "ID";
+ ID.Size = new Size(18, 15);
+ ID.TabIndex = 2;
+ ID.Text = "ID";
+ //
+ // label2
+ //
+ label2.AutoSize = true;
+ label2.Location = new Point(34, 234);
+ label2.Name = "label2";
+ label2.Size = new Size(55, 15);
+ label2.TabIndex = 3;
+ label2.Text = "Provedor";
+ //
+ // label3
+ //
+ label3.AutoSize = true;
+ label3.Location = new Point(34, 270);
+ label3.Name = "label3";
+ label3.Size = new Size(38, 15);
+ label3.TabIndex = 4;
+ label3.Text = "Fecha";
+ //
+ // dateTimePicker1
+ //
+ dateTimePicker1.Location = new Point(100, 264);
+ dateTimePicker1.Name = "dateTimePicker1";
+ dateTimePicker1.Size = new Size(121, 23);
+ dateTimePicker1.TabIndex = 6;
+ //
+ // comboBox1
+ //
+ comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
+ comboBox1.FormattingEnabled = true;
+ comboBox1.Location = new Point(100, 226);
+ comboBox1.Name = "comboBox1";
+ comboBox1.Size = new Size(121, 23);
+ comboBox1.TabIndex = 7;
+ //
+ // numericUpDown1
+ //
+ numericUpDown1.Location = new Point(101, 197);
+ numericUpDown1.Maximum = new decimal(new int[] { 1410065407, 2, 0, 0 });
+ numericUpDown1.Name = "numericUpDown1";
+ numericUpDown1.Size = new Size(120, 23);
+ numericUpDown1.TabIndex = 8;
+ //
+ // button1
+ //
+ button1.Location = new Point(34, 383);
+ button1.Name = "button1";
+ button1.Size = new Size(154, 42);
+ button1.TabIndex = 9;
+ button1.Text = "Guardar";
+ button1.UseVisualStyleBackColor = true;
+
+ //
+ // button2
+ //
+ button2.Location = new Point(247, 383);
+ button2.Name = "button2";
+ button2.Size = new Size(154, 42);
+ button2.TabIndex = 10;
+ button2.Text = "Cancelar";
+ button2.UseVisualStyleBackColor = true;
+
+ //
+ // button3
+ //
+ button3.Location = new Point(34, 42);
+ button3.Name = "button3";
+ button3.Size = new Size(128, 47);
+ button3.TabIndex = 11;
+ button3.Text = "Agregar Producto";
+ button3.UseVisualStyleBackColor = true;
+
+ //
+ // button4
+ //
+ button4.Location = new Point(34, 106);
+ button4.Name = "button4";
+ button4.Size = new Size(128, 47);
+ button4.TabIndex = 12;
+ button4.Text = "Eliminar Producto";
+ button4.UseVisualStyleBackColor = true;
+ //
+ // FrmPresupuesto
+ //
+ AutoScaleDimensions = new SizeF(7F, 15F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(925, 446);
+ Controls.Add(button4);
+ Controls.Add(button3);
+ Controls.Add(button2);
+ Controls.Add(button1);
+ Controls.Add(numericUpDown1);
+ Controls.Add(comboBox1);
+ Controls.Add(dateTimePicker1);
+ Controls.Add(label3);
+ Controls.Add(label2);
+ Controls.Add(ID);
+ Controls.Add(dataGridView2);
+ Name = "FrmPresupuesto";
+ Text = "Form1";
+ ((System.ComponentModel.ISupportInitialize)dataGridView2).EndInit();
+ ((System.ComponentModel.ISupportInitialize)numericUpDown1).EndInit();
+ ResumeLayout(false);
+ PerformLayout();
+ }
+
+ #endregion
+ private DataGridView dataGridView2;
+ private Label ID;
+ private Label label2;
+ private Label label3;
+ private DateTimePicker dateTimePicker1;
+ private ComboBox comboBox1;
+ private NumericUpDown numericUpDown1;
+ private Button button1;
+ private Button button2;
+ private Button button3;
+ private Button button4;
+ }
+}
\ No newline at end of file
diff --git a/Vista/FrmPresupuesto.cs b/Vista/FrmPresupuesto.cs
new file mode 100644
index 0000000..8a8571a
--- /dev/null
+++ b/Vista/FrmPresupuesto.cs
@@ -0,0 +1,37 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Vista
+{
+ public partial class FrmPresupuesto : Form
+ {
+ public FrmPresupuesto()
+ {
+ InitializeComponent();
+ }
+
+ private void button3_Click(object sender, EventArgs e)
+ {
+ var form = new AddProducto();
+ form.ShowDialog();
+ }
+
+ private void button2_Click(object sender, EventArgs e)
+ {
+ Close();
+ }
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+ //guardar
+ Close();
+ }
+ }
+}
diff --git a/Vista/FrmPresupuesto.resx b/Vista/FrmPresupuesto.resx
new file mode 100644
index 0000000..af32865
--- /dev/null
+++ b/Vista/FrmPresupuesto.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Vista/FrmProducto.Designer.cs b/Vista/FrmProducto.Designer.cs
new file mode 100644
index 0000000..9fecbaa
--- /dev/null
+++ b/Vista/FrmProducto.Designer.cs
@@ -0,0 +1,194 @@
+namespace Vista
+{
+ partial class FrmProducto
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ label1 = new Label();
+ label2 = new Label();
+ label3 = new Label();
+ label4 = new Label();
+ label5 = new Label();
+ numericUpDown1 = new NumericUpDown();
+ textBox1 = new TextBox();
+ numericUpDown2 = new NumericUpDown();
+ checkBox1 = new CheckBox();
+ comboBox1 = new ComboBox();
+ button1 = new Button();
+ button2 = new Button();
+ ((System.ComponentModel.ISupportInitialize)numericUpDown1).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)numericUpDown2).BeginInit();
+ SuspendLayout();
+ //
+ // label1
+ //
+ label1.AutoSize = true;
+ label1.Location = new Point(47, 44);
+ label1.Name = "label1";
+ label1.Size = new Size(18, 15);
+ label1.TabIndex = 0;
+ label1.Text = "ID";
+ //
+ // label2
+ //
+ label2.AutoSize = true;
+ label2.Location = new Point(14, 73);
+ label2.Name = "label2";
+ label2.Size = new Size(51, 15);
+ label2.TabIndex = 1;
+ label2.Text = "Nombre";
+ //
+ // label3
+ //
+ label3.AutoSize = true;
+ label3.Location = new Point(25, 105);
+ label3.Name = "label3";
+ label3.Size = new Size(40, 15);
+ label3.TabIndex = 2;
+ label3.Text = "Precio";
+ //
+ // label4
+ //
+ label4.AutoSize = true;
+ label4.Location = new Point(7, 136);
+ label4.Name = "label4";
+ label4.Size = new Size(62, 15);
+ label4.TabIndex = 3;
+ label4.Text = "Habilitado";
+ //
+ // label5
+ //
+ label5.AutoSize = true;
+ label5.Location = new Point(7, 167);
+ label5.Name = "label5";
+ label5.Size = new Size(58, 15);
+ label5.TabIndex = 4;
+ label5.Text = "Categoria";
+ //
+ // numericUpDown1
+ //
+ numericUpDown1.Location = new Point(71, 36);
+ numericUpDown1.Maximum = new decimal(new int[] { 1215752191, 23, 0, 0 });
+ numericUpDown1.Name = "numericUpDown1";
+ numericUpDown1.Size = new Size(120, 23);
+ numericUpDown1.TabIndex = 5;
+ //
+ // textBox1
+ //
+ textBox1.Location = new Point(71, 65);
+ textBox1.Name = "textBox1";
+ textBox1.Size = new Size(120, 23);
+ textBox1.TabIndex = 6;
+ //
+ // numericUpDown2
+ //
+ numericUpDown2.Location = new Point(71, 97);
+ numericUpDown2.Maximum = new decimal(new int[] { 100000000, 0, 0, 0 });
+ numericUpDown2.Name = "numericUpDown2";
+ numericUpDown2.Size = new Size(120, 23);
+ numericUpDown2.TabIndex = 7;
+ //
+ // checkBox1
+ //
+ checkBox1.AutoSize = true;
+ checkBox1.Location = new Point(71, 137);
+ checkBox1.Name = "checkBox1";
+ checkBox1.Size = new Size(15, 14);
+ checkBox1.TabIndex = 8;
+ checkBox1.UseVisualStyleBackColor = true;
+ //
+ // comboBox1
+ //
+ comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
+ comboBox1.FormattingEnabled = true;
+ comboBox1.Location = new Point(70, 159);
+ comboBox1.Name = "comboBox1";
+ comboBox1.Size = new Size(121, 23);
+ comboBox1.TabIndex = 9;
+ comboBox1.SelectedIndexChanged += comboBox1_SelectedIndexChanged;
+ //
+ // button1
+ //
+ button1.Location = new Point(14, 239);
+ button1.Name = "button1";
+ button1.Size = new Size(92, 35);
+ button1.TabIndex = 10;
+ button1.Text = "Aceptar";
+ button1.UseVisualStyleBackColor = true;
+ button1.Click += button1_Click;
+ //
+ // button2
+ //
+ button2.Location = new Point(154, 239);
+ button2.Name = "button2";
+ button2.Size = new Size(92, 35);
+ button2.TabIndex = 11;
+ button2.Text = "Cancelar";
+ button2.UseVisualStyleBackColor = true;
+ button2.Click += button2_Click;
+ //
+ // FrmProducto
+ //
+ AutoScaleDimensions = new SizeF(7F, 15F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(471, 313);
+ Controls.Add(button2);
+ Controls.Add(button1);
+ Controls.Add(comboBox1);
+ Controls.Add(checkBox1);
+ Controls.Add(numericUpDown2);
+ Controls.Add(textBox1);
+ Controls.Add(numericUpDown1);
+ Controls.Add(label5);
+ Controls.Add(label4);
+ Controls.Add(label3);
+ Controls.Add(label2);
+ Controls.Add(label1);
+ Name = "FrmProducto";
+ Text = "Producto";
+ ((System.ComponentModel.ISupportInitialize)numericUpDown1).EndInit();
+ ((System.ComponentModel.ISupportInitialize)numericUpDown2).EndInit();
+ ResumeLayout(false);
+ PerformLayout();
+ }
+
+ #endregion
+
+ private Label label1;
+ private Label label2;
+ private Label label3;
+ private Label label4;
+ private Label label5;
+ private NumericUpDown numericUpDown1;
+ private TextBox textBox1;
+ private NumericUpDown numericUpDown2;
+ private CheckBox checkBox1;
+ private ComboBox comboBox1;
+ private Button button1;
+ private Button button2;
+ }
+}
\ No newline at end of file
diff --git a/Vista/FrmProducto.cs b/Vista/FrmProducto.cs
new file mode 100644
index 0000000..ffdb1e7
--- /dev/null
+++ b/Vista/FrmProducto.cs
@@ -0,0 +1,113 @@
+using Controladora;
+using Entidades;
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using static System.Windows.Forms.VisualStyles.VisualStyleElement;
+
+namespace Vista
+{
+ public partial class FrmProducto : Form
+ {
+ public FrmProducto()
+ {
+ InitializeComponent();
+ CargarCategorias();
+ }
+
+ private void CargarCategorias()
+ {
+ // Obtener la lista de categorías desde la controladora
+ var categorias = ControladoraCategorias.Instance.Listar();
+
+ // Configurar el ComboBox para categorías
+ comboBox1.DisplayMember = "Descripcion"; // Mostrar la propiedad Descripcion
+ comboBox1.ValueMember = "Id"; // Usar la propiedad Id como valor
+
+ // Asignar la lista de categorías al ComboBox
+ comboBox1.DataSource = categorias;
+ }
+
+ private bool ValidarDatos()
+ {
+ string devolucion = "";
+
+ // Validar Nombre
+ if (string.IsNullOrEmpty(textBox1.Text))
+ {
+ devolucion += "El nombre del producto no puede estar vacío.\n";
+ }
+ else if (textBox1.Text.Length > 100) // Limite de caracteres
+ {
+ devolucion += "El nombre del producto no puede superar los 100 caracteres.\n";
+ }
+
+ // Validar Precio
+ if (numericUpDown2.Value <= 0)
+ {
+ devolucion += "El precio debe ser mayor a cero.\n";
+ }
+
+ // Validar ID (Si es necesario)
+ if (ControladoraProductos.Instance.Listar().Any(p => p.Id == (int)numericUpDown1.Value))
+ {
+ devolucion += "Ya existe un producto con el mismo ID.\n";
+ }
+
+ // Validar Categoría Seleccionada
+ if (comboBox1.SelectedItem == null)
+ {
+ devolucion += "Debe seleccionar una categoría.\n";
+ }
+
+ if (devolucion == "")
+ {
+ return true;
+ }
+ else
+ {
+ MessageBox.Show(devolucion, "Errores de Validación", MessageBoxButtons.OK, MessageBoxIcon.Error);
+ return false;
+ }
+ }
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+ if (ValidarDatos())
+ {
+ // Crear nuevo producto
+ var nuevoProducto = new Producto
+ {
+ Id = (int)numericUpDown1.Value,
+ Nombre = textBox1.Text,
+ Precio = (double)numericUpDown2.Value,
+ Habilitado = checkBox1.Checked,
+ Categoria = (Categoria)comboBox1.SelectedItem, // Asignar categoría seleccionada
+ };
+
+ // Agregar el producto usando la controladora
+ string mensaje = ControladoraProductos.Instance.Añadir(nuevoProducto);
+
+ MessageBox.Show(mensaje, "Información", MessageBoxButtons.OK, MessageBoxIcon.Information);
+ Close();
+ }
+ }
+
+ private void button2_Click(object sender, EventArgs e)
+ {
+ this.Close();
+ }
+
+ private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ // Puedes usar este método para manejar cambios en el ComboBox si es necesario
+ // No es necesario mantener una variable separada para la categoría seleccionada
+ }
+ }
+}
diff --git a/Vista/FrmProducto.resx b/Vista/FrmProducto.resx
new file mode 100644
index 0000000..af32865
--- /dev/null
+++ b/Vista/FrmProducto.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Vista/FrmProductos.Designer.cs b/Vista/FrmProductos.Designer.cs
index e615703..545a329 100644
--- a/Vista/FrmProductos.Designer.cs
+++ b/Vista/FrmProductos.Designer.cs
@@ -29,33 +29,49 @@
private void InitializeComponent()
{
groupBox1 = new GroupBox();
+ button1 = new Button();
dataGridView1 = new DataGridView();
BtnAdd = new Button();
BtnEliminar = new Button();
- BtnModificar = new Button();
+ dataGridView2 = new DataGridView();
+ label1 = new Label();
+ label2 = new Label();
groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)dataGridView2).BeginInit();
SuspendLayout();
//
// groupBox1
//
+ groupBox1.Controls.Add(label2);
groupBox1.Controls.Add(dataGridView1);
groupBox1.Controls.Add(BtnAdd);
groupBox1.Controls.Add(BtnEliminar);
- groupBox1.Controls.Add(BtnModificar);
groupBox1.Location = new Point(12, 0);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(776, 351);
groupBox1.TabIndex = 5;
groupBox1.TabStop = false;
//
+ // button1
+ //
+ button1.Location = new Point(794, 302);
+ button1.Name = "button1";
+ button1.Size = new Size(128, 23);
+ button1.TabIndex = 4;
+ button1.Text = "Crear Categoria";
+ button1.UseVisualStyleBackColor = true;
+ button1.Click += button1_Click;
+ //
// dataGridView1
//
+ dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView1.Location = new Point(6, 22);
dataGridView1.Name = "dataGridView1";
dataGridView1.RowTemplate.Height = 25;
- dataGridView1.Size = new Size(550, 235);
+ dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
+ dataGridView1.Size = new Size(690, 235);
dataGridView1.TabIndex = 3;
//
// BtnAdd
@@ -66,37 +82,64 @@
BtnAdd.TabIndex = 0;
BtnAdd.Text = "Añadir";
BtnAdd.UseVisualStyleBackColor = true;
+ BtnAdd.Click += BtnAdd_Click;
//
// BtnEliminar
//
- BtnEliminar.Location = new Point(215, 302);
+ BtnEliminar.Location = new Point(137, 302);
BtnEliminar.Name = "BtnEliminar";
BtnEliminar.Size = new Size(75, 23);
BtnEliminar.TabIndex = 2;
BtnEliminar.Text = "Eliminar";
BtnEliminar.UseVisualStyleBackColor = true;
+ BtnEliminar.Click += BtnEliminar_Click;
//
- // BtnModificar
+ // dataGridView2
//
- BtnModificar.Location = new Point(108, 302);
- BtnModificar.Name = "BtnModificar";
- BtnModificar.Size = new Size(75, 23);
- BtnModificar.TabIndex = 1;
- BtnModificar.Text = "Modificar";
- BtnModificar.UseVisualStyleBackColor = true;
+ dataGridView2.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
+ dataGridView2.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
+ dataGridView2.Location = new Point(794, 22);
+ dataGridView2.Name = "dataGridView2";
+ dataGridView2.RowTemplate.Height = 25;
+ dataGridView2.Size = new Size(250, 235);
+ dataGridView2.TabIndex = 6;
+ //
+ // label1
+ //
+ label1.AutoSize = true;
+ label1.Location = new Point(797, 4);
+ label1.Name = "label1";
+ label1.Size = new Size(63, 15);
+ label1.TabIndex = 7;
+ label1.Text = "Categorias";
+ //
+ // label2
+ //
+ label2.AutoSize = true;
+ label2.Location = new Point(6, 4);
+ label2.Name = "label2";
+ label2.Size = new Size(61, 15);
+ label2.TabIndex = 8;
+ label2.Text = "Productos";
//
// FrmProductos
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
- ClientSize = new Size(800, 450);
+ ClientSize = new Size(1071, 450);
+ Controls.Add(label1);
+ Controls.Add(button1);
+ Controls.Add(dataGridView2);
Controls.Add(groupBox1);
Name = "FrmProductos";
Text = "Productos";
WindowState = FormWindowState.Maximized;
groupBox1.ResumeLayout(false);
+ groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();
+ ((System.ComponentModel.ISupportInitialize)dataGridView2).EndInit();
ResumeLayout(false);
+ PerformLayout();
}
#endregion
@@ -105,6 +148,9 @@
private DataGridView dataGridView1;
private Button BtnAdd;
private Button BtnEliminar;
- private Button BtnModificar;
+ private Button button1;
+ private DataGridView dataGridView2;
+ private Label label2;
+ private Label label1;
}
}
\ No newline at end of file
diff --git a/Vista/FrmProductos.cs b/Vista/FrmProductos.cs
index 968b70b..686a134 100644
--- a/Vista/FrmProductos.cs
+++ b/Vista/FrmProductos.cs
@@ -1,4 +1,5 @@
-using System;
+using Controladora;
+using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -8,6 +9,12 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
+using System.Collections.ObjectModel;
+using System.Linq;
+using System.Windows.Forms;
+using Controladora;
+using Entidades;
+
namespace Vista
{
public partial class FrmProductos : Form
@@ -15,6 +22,139 @@ namespace Vista
public FrmProductos()
{
InitializeComponent();
+ ConfigurarDataGridView();
+ ActualizarGrilla();
}
+
+ private void ConfigurarDataGridView()
+ {
+ dataGridView1.AutoGenerateColumns = false;
+
+ // Crear una columna para el ID
+ var colId = new DataGridViewTextBoxColumn
+ {
+ DataPropertyName = "Id",
+ HeaderText = "ID",
+ Name = "colId"
+ };
+
+ // Crear una columna para el nombre
+ var colNombre = new DataGridViewTextBoxColumn
+ {
+ DataPropertyName = "Nombre",
+ HeaderText = "Nombre",
+ Name = "colNombre"
+ };
+
+ // Crear una columna para el precio
+ var colPrecio = new DataGridViewTextBoxColumn
+ {
+ DataPropertyName = "Precio",
+ HeaderText = "Precio",
+ Name = "colPrecio"
+ };
+ var colHabilitado = new DataGridViewTextBoxColumn
+ {
+ DataPropertyName = "Habilitado",
+ HeaderText = "Habilitado",
+ Name = "colHabilitado"
+ };
+ // Crear una columna para la categoría (mostrando la descripción)
+ var colCategoria = new DataGridViewTextBoxColumn
+ {
+ DataPropertyName = "CategoriaDescripcion",
+ HeaderText = "Categoría",
+ Name = "colCategoria"
+ };
+
+ // Agregar las columnas al DataGridView
+ dataGridView1.Columns.Add(colId);
+ dataGridView1.Columns.Add(colNombre);
+ dataGridView1.Columns.Add(colPrecio);
+ dataGridView1.Columns.Add(colHabilitado);
+ dataGridView1.Columns.Add(colCategoria);
+ }
+
+ private void ActualizarGrilla()
+ {
+ dataGridView1.DataSource = null;
+ dataGridView2.DataSource = null;
+ var categorias = ControladoraCategorias.Instance.Listar();
+ dataGridView2.DataSource = categorias;
+
+ // Obtener la lista de productos y proyectar los datos
+ var productos = ControladoraProductos.Instance.Listar()
+ .Select(p => new
+ {
+ p.Id,
+ p.Nombre,
+ p.Precio,
+ p.Habilitado,
+ CategoriaDescripcion = p.Categoria != null ? p.Categoria.Descripcion : string.Empty
+ })
+ .ToList();
+
+ dataGridView1.DataSource = productos;
+ }
+
+ private void BtnAdd_Click(object sender, EventArgs e)
+ {
+ var form = new FrmProducto();
+ form.ShowDialog();
+ ActualizarGrilla();
+ }
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+ var form = new CategoriaCreate();
+ form.ShowDialog();
+ ActualizarGrilla();
+ }
+
+
+
+ private void BtnEliminar_Click(object sender, EventArgs e)
+ {
+ if (dataGridView1.SelectedRows.Count == 0)
+ {
+ MessageBox.Show("Seleccione una línea para eliminar");
+ return;
+ }
+
+ // Recorre las filas seleccionadas
+ foreach (DataGridViewRow fila in dataGridView1.SelectedRows)
+ {
+ try
+ {
+ // Obtén el ID del producto desde la columna "colId"
+ int id = Convert.ToInt32(fila.Cells["colId"].Value);
+
+ // Busca el producto con el ID correspondiente
+ var producto = ControladoraProductos.Instance.Listar().FirstOrDefault(p => p.Id == id);
+
+ if (producto != null)
+ {
+ // Llama al método Eliminar pasando el objeto Producto
+ string devolucion = ControladoraProductos.Instance.Eliminar(producto);
+ MessageBox.Show(devolucion);
+ }
+ else
+ {
+ MessageBox.Show($"No se encontró el producto con el ID {id}");
+ }
+ }
+ catch (Exception ex)
+ {
+ MessageBox.Show($"Error al eliminar el producto: {ex.Message}");
+ }
+ }
+
+ // Actualiza la grilla después de eliminar
+ ActualizarGrilla();
+ }
+
+
+
}
}
+
diff --git a/Vista/FrmProveedores.Designer.cs b/Vista/FrmProveedores.Designer.cs
index 9d775d1..f034514 100644
--- a/Vista/FrmProveedores.Designer.cs
+++ b/Vista/FrmProveedores.Designer.cs
@@ -55,7 +55,7 @@
dataGridView1.AllowUserToDeleteRows = false;
dataGridView1.AllowUserToResizeColumns = false;
dataGridView1.AllowUserToResizeRows = false;
- dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
+ dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView1.Location = new Point(6, 22);
dataGridView1.Name = "dataGridView1";
diff --git a/Vista/FrmProveedores.resx b/Vista/FrmProveedores.resx
index a395bff..af32865 100644
--- a/Vista/FrmProveedores.resx
+++ b/Vista/FrmProveedores.resx
@@ -18,7 +18,7 @@
System.Resources.ResXResourceReader, System.Windows.Forms, ...
System.Resources.ResXResourceWriter, System.Windows.Forms, ...
this is my long stringthis is a comment
- Blue
+ Blue
[base64 mime encoded serialized .NET Framework object]
diff --git a/Vista/FrmRemitos.Designer.cs b/Vista/FrmRemitos.Designer.cs
index 3128121..7803b13 100644
--- a/Vista/FrmRemitos.Designer.cs
+++ b/Vista/FrmRemitos.Designer.cs
@@ -47,6 +47,7 @@
//
// dataGridView1
//
+ dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
dataGridView1.Location = new Point(6, 22);
dataGridView1.Name = "dataGridView1";
diff --git a/Vista/Vista.csproj.user b/Vista/Vista.csproj.user
index f27d0f0..9bbe310 100644
--- a/Vista/Vista.csproj.user
+++ b/Vista/Vista.csproj.user
@@ -1,6 +1,15 @@
+
+ Form
+
+
+ Form
+
+
+ Form
+
Form
@@ -13,6 +22,9 @@
Form
+
+ Form
+
Form
diff --git a/Vista/obj/Debug/net6.0-windows/Vista.GeneratedMSBuildEditorConfig.editorconfig b/Vista/obj/Debug/net6.0-windows/Vista.GeneratedMSBuildEditorConfig.editorconfig
index 9e8909e..ceaa92c 100644
--- a/Vista/obj/Debug/net6.0-windows/Vista.GeneratedMSBuildEditorConfig.editorconfig
+++ b/Vista/obj/Debug/net6.0-windows/Vista.GeneratedMSBuildEditorConfig.editorconfig
@@ -12,6 +12,7 @@ build_property.RootNamespace = Vista
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
build_property.ProjectDir = /home/fede/proyectos/Final_OOP/Vista/
=======
build_property.ProjectDir = C:\Users\Nacho\source\repos\Final\Vista\
@@ -27,3 +28,6 @@ build_property.ProjectDir = C:\Users\fedpo\Downloads\Final\Final\Vista\
=======
build_property.ProjectDir = C:\Users\fedpo\source\repos\Final_OOP\Vista\
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+build_property.ProjectDir = C:\Users\fedpo\Downloads\Final\Final\Vista\
+>>>>>>> c493033 (cosas que faltaban)
diff --git a/Vista/obj/Debug/net6.0-windows/Vista.designer.deps.json b/Vista/obj/Debug/net6.0-windows/Vista.designer.deps.json
index 53a3ba7..706cdfa 100644
--- a/Vista/obj/Debug/net6.0-windows/Vista.designer.deps.json
+++ b/Vista/obj/Debug/net6.0-windows/Vista.designer.deps.json
@@ -5,6247 +5,7 @@
},
"compilationOptions": {},
"targets": {
- ".NETCoreApp,Version=v6.0": {
- "Emailer/1.0.0": {
- "dependencies": {
- "Microsoft.AspNetCore.All": "2.0.7"
- },
- "runtime": {
- "lib/netcoreapp2.0/Emailer.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "Libuv/1.10.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0"
- },
- "runtimeTargets": {
- "runtimes/linux-arm/native/libuv.so": {
- "rid": "linux-arm",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-arm64/native/libuv.so": {
- "rid": "linux-arm64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-armel/native/libuv.so": {
- "rid": "linux-armel",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x64/native/libuv.so": {
- "rid": "linux-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx/native/libuv.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-arm/native/libuv.dll": {
- "rid": "win-arm",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x64/native/libuv.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win-x86/native/libuv.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "Microsoft.ApplicationInsights/2.4.0": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Diagnostics.StackTrace": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.ApplicationInsights.dll": {
- "assemblyVersion": "2.4.0.0",
- "fileVersion": "2.4.0.32153"
- }
- }
- },
- "Microsoft.ApplicationInsights.AspNetCore/2.1.1": {
- "dependencies": {
- "Microsoft.ApplicationInsights": "2.4.0",
- "Microsoft.ApplicationInsights.DependencyCollector": "2.4.1",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.DiagnosticAdapter": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "NETStandard.Library": "1.6.1",
- "System.Net.NameResolution": "4.3.0",
- "System.Text.Encodings.Web": "4.4.0"
- },
- "runtime": {
- "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll": {
- "assemblyVersion": "2.1.1.0",
- "fileVersion": "2.1.1.0"
- }
- }
- },
- "Microsoft.ApplicationInsights.DependencyCollector/2.4.1": {
- "dependencies": {
- "Microsoft.ApplicationInsights": "2.4.0",
- "Microsoft.Extensions.PlatformAbstractions": "1.1.0",
- "NETStandard.Library": "1.6.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Diagnostics.StackTrace": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.6/Microsoft.AI.DependencyCollector.dll": {
- "assemblyVersion": "2.4.1.0",
- "fileVersion": "2.4.1.1362"
- }
- }
- },
- "Microsoft.AspNetCore/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Diagnostics": "2.0.2",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Routing": "2.0.2",
- "Microsoft.AspNetCore.Server.IISIntegration": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Https": "2.0.2",
- "Microsoft.Extensions.Configuration.CommandLine": "2.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.Configuration.UserSecrets": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Logging.Configuration": "2.0.1",
- "Microsoft.Extensions.Logging.Console": "2.0.1",
- "Microsoft.Extensions.Logging.Debug": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.All/2.0.7": {
- "dependencies": {
- "Microsoft.AspNetCore": "2.0.2",
- "Microsoft.AspNetCore.Antiforgery": "2.0.2",
- "Microsoft.AspNetCore.ApplicationInsights.HostingStartup": "2.0.2",
- "Microsoft.AspNetCore.Authentication": "2.0.3",
- "Microsoft.AspNetCore.Authentication.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Authentication.Cookies": "2.0.3",
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.Authentication.Facebook": "2.0.3",
- "Microsoft.AspNetCore.Authentication.Google": "2.0.3",
- "Microsoft.AspNetCore.Authentication.JwtBearer": "2.0.3",
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount": "2.0.3",
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3",
- "Microsoft.AspNetCore.Authentication.OpenIdConnect": "2.0.3",
- "Microsoft.AspNetCore.Authentication.Twitter": "2.0.3",
- "Microsoft.AspNetCore.Authorization": "2.0.3",
- "Microsoft.AspNetCore.Authorization.Policy": "2.0.3",
- "Microsoft.AspNetCore.AzureAppServices.HostingStartup": "2.0.2",
- "Microsoft.AspNetCore.AzureAppServicesIntegration": "2.0.2",
- "Microsoft.AspNetCore.CookiePolicy": "2.0.3",
- "Microsoft.AspNetCore.Cors": "2.0.2",
- "Microsoft.AspNetCore.Cryptography.Internal": "2.0.2",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.0.2",
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.DataProtection.AzureStorage": "2.0.2",
- "Microsoft.AspNetCore.DataProtection.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Diagnostics": "2.0.2",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore": "2.0.2",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Html.Abstractions": "2.0.1",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Http.Features": "2.0.2",
- "Microsoft.AspNetCore.HttpOverrides": "2.0.2",
- "Microsoft.AspNetCore.Identity": "2.0.2",
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "2.0.2",
- "Microsoft.AspNetCore.JsonPatch": "2.0.0",
- "Microsoft.AspNetCore.Localization": "2.0.2",
- "Microsoft.AspNetCore.Localization.Routing": "2.0.2",
- "Microsoft.AspNetCore.MiddlewareAnalysis": "2.0.2",
- "Microsoft.AspNetCore.Mvc": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Abstractions": "2.0.3",
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Cors": "2.0.3",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Formatters.Xml": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Localization": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Razor": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation": "2.0.3",
- "Microsoft.AspNetCore.Mvc.RazorPages": "2.0.3",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "2.0.3",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.3",
- "Microsoft.AspNetCore.NodeServices": "2.0.3",
- "Microsoft.AspNetCore.Owin": "2.0.2",
- "Microsoft.AspNetCore.Razor": "2.0.2",
- "Microsoft.AspNetCore.Razor.Language": "2.0.2",
- "Microsoft.AspNetCore.Razor.Runtime": "2.0.2",
- "Microsoft.AspNetCore.ResponseCaching": "2.0.2",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.ResponseCompression": "2.0.2",
- "Microsoft.AspNetCore.Rewrite": "2.0.2",
- "Microsoft.AspNetCore.Routing": "2.0.2",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.HttpSys": "2.0.3",
- "Microsoft.AspNetCore.Server.IISIntegration": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Https": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv": "2.0.2",
- "Microsoft.AspNetCore.Session": "2.0.2",
- "Microsoft.AspNetCore.SpaServices": "2.0.3",
- "Microsoft.AspNetCore.StaticFiles": "2.0.2",
- "Microsoft.AspNetCore.WebSockets": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.CodeAnalysis.Razor": "2.0.2",
- "Microsoft.Data.Sqlite": "2.0.1",
- "Microsoft.Data.Sqlite.Core": "2.0.1",
- "Microsoft.EntityFrameworkCore": "2.0.2",
- "Microsoft.EntityFrameworkCore.Design": "2.0.2",
- "Microsoft.EntityFrameworkCore.InMemory": "2.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2",
- "Microsoft.EntityFrameworkCore.SqlServer": "2.0.2",
- "Microsoft.EntityFrameworkCore.Sqlite": "2.0.2",
- "Microsoft.EntityFrameworkCore.Sqlite.Core": "2.0.2",
- "Microsoft.EntityFrameworkCore.Tools": "2.0.2",
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.Caching.Redis": "2.0.1",
- "Microsoft.Extensions.Caching.SqlServer": "2.0.1",
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.Configuration.AzureKeyVault": "2.0.1",
- "Microsoft.Extensions.Configuration.Binder": "2.0.1",
- "Microsoft.Extensions.Configuration.CommandLine": "2.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Microsoft.Extensions.Configuration.Ini": "2.0.1",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.Configuration.UserSecrets": "2.0.1",
- "Microsoft.Extensions.Configuration.Xml": "2.0.1",
- "Microsoft.Extensions.DependencyInjection": "2.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.DiagnosticAdapter": "2.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.FileProviders.Composite": "2.0.1",
- "Microsoft.Extensions.FileProviders.Embedded": "2.0.1",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1",
- "Microsoft.Extensions.FileSystemGlobbing": "2.0.1",
- "Microsoft.Extensions.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.Identity.Core": "2.0.2",
- "Microsoft.Extensions.Identity.Stores": "2.0.2",
- "Microsoft.Extensions.Localization": "2.0.2",
- "Microsoft.Extensions.Localization.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.AzureAppServices": "2.0.1",
- "Microsoft.Extensions.Logging.Configuration": "2.0.1",
- "Microsoft.Extensions.Logging.Console": "2.0.1",
- "Microsoft.Extensions.Logging.Debug": "2.0.1",
- "Microsoft.Extensions.Logging.EventSource": "2.0.1",
- "Microsoft.Extensions.Logging.TraceSource": "2.0.1",
- "Microsoft.Extensions.ObjectPool": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.1",
- "Microsoft.Extensions.Primitives": "2.0.0",
- "Microsoft.Extensions.WebEncoders": "2.0.1",
- "Microsoft.Net.Http.Headers": "2.0.2",
- "Microsoft.VisualStudio.Web.BrowserLink": "2.0.2"
- }
- },
- "Microsoft.AspNetCore.Antiforgery/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Extensions.ObjectPool": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.ApplicationInsights.HostingStartup/2.0.2": {
- "dependencies": {
- "Microsoft.ApplicationInsights.AspNetCore": "2.1.1",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Razor.Runtime": "2.0.2",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.DiagnosticAdapter": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Logging.Configuration": "2.0.1"
- },
- "runtime": {
- "lib/netcoreapp2.0/Microsoft.AspNetCore.ApplicationInsights.HostingStartup.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Extensions.WebEncoders": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Cookies/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Core/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Facebook/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Facebook.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Google/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Google.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.JwtBearer/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication": "2.0.3",
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.1.4"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.MicrosoftAccount.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.OAuth/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication": "2.0.3",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OAuth.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3",
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "2.1.4"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authentication.Twitter/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.OAuth": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Twitter.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authorization/2.0.3": {
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Authorization.Policy/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Authorization": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.AzureAppServices.HostingStartup/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.AzureAppServicesIntegration": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2"
- },
- "runtime": {
- "lib/netcoreapp2.0/Microsoft.AspNetCore.AzureAppServices.HostingStartup.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.AzureAppServicesIntegration/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.Extensions.Logging.AzureAppServices": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.AzureAppServicesIntegration.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.CookiePolicy/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.CookiePolicy.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Cors/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Cors.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Cryptography.Internal/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.DataProtection/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "2.0.2",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Win32.Registry": "4.4.0",
- "System.Security.Cryptography.Xml": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.DataProtection.AzureStorage/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "WindowsAzure.Storage": "8.1.4"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.AzureStorage.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.Extensions.DependencyInjection": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Extensions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Diagnostics/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Reflection.Metadata": "1.5.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Hosting/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Microsoft.Extensions.DependencyInjection": "2.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Reflection.Metadata": "1.5.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Html.Abstractions/2.0.1": {
- "dependencies": {
- "System.Text.Encodings.Web": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Http/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Extensions.ObjectPool": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Net.Http.Headers": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.0.2",
- "System.Text.Encodings.Web": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Extensions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Net.Http.Headers": "2.0.2",
- "System.Buffers": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Features/2.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.HttpOverrides/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.HttpOverrides.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Identity/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "2.0.3",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.Identity.Core": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Identity": "2.0.2",
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2",
- "Microsoft.Extensions.Identity.Stores": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.JsonPatch/2.0.0": {
- "dependencies": {
- "Microsoft.CSharp": "4.4.0",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.0.17205"
- }
- }
- },
- "Microsoft.AspNetCore.Localization/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Localization.Abstractions": "2.0.2",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Localization.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Localization.Routing/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Localization": "2.0.2",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Localization.Routing.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.MiddlewareAnalysis/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "System.Diagnostics.DiagnosticSource": "4.4.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.MiddlewareAnalysis.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Cors": "2.0.3",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Localization": "2.0.3",
- "Microsoft.AspNetCore.Mvc.RazorPages": "2.0.3",
- "Microsoft.AspNetCore.Mvc.TagHelpers": "2.0.3",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.3",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.DependencyInjection": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2",
- "Microsoft.Net.Http.Headers": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Core/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.Authorization.Policy": "2.0.3",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Mvc.Abstractions": "2.0.3",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Routing": "2.0.2",
- "Microsoft.Extensions.DependencyModel": "2.0.3",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "System.Diagnostics.DiagnosticSource": "4.4.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Cors/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Cors": "2.0.2",
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Cors.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3",
- "Microsoft.Extensions.Localization": "2.0.2",
- "System.ComponentModel.Annotations": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.JsonPatch": "2.0.0",
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Localization/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Localization": "2.0.2",
- "Microsoft.AspNetCore.Mvc.Razor": "2.0.3",
- "Microsoft.Extensions.DependencyInjection": "2.0.0",
- "Microsoft.Extensions.Localization": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Localization.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Razor/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.3",
- "Microsoft.AspNetCore.Razor.Runtime": "2.0.2",
- "Microsoft.CodeAnalysis.CSharp": "2.3.1",
- "Microsoft.CodeAnalysis.Razor": "2.0.2",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.FileProviders.Composite": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "2.0.2",
- "Microsoft.CodeAnalysis.Razor": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Mvc.RazorPages": "2.0.3"
- }
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.RazorPages.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.Razor": "2.0.3",
- "Microsoft.AspNetCore.Razor.Runtime": "2.0.2",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.FileSystemGlobbing": "2.0.1",
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Antiforgery": "2.0.2",
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Html.Abstractions": "2.0.1",
- "Microsoft.AspNetCore.Mvc.Core": "2.0.3",
- "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.0.3",
- "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.0.3",
- "Microsoft.Extensions.WebEncoders": "2.0.1",
- "Newtonsoft.Json.Bson": "1.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.NodeServices/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Console": "2.0.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.NodeServices.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Owin/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Owin.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Razor/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Razor.Language/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Razor.Runtime/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Html.Abstractions": "2.0.1",
- "Microsoft.AspNetCore.Razor": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.ResponseCaching/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.0.2",
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.ResponseCompression/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCompression.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Rewrite/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Rewrite.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Routing/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.ObjectPool": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Routing.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.HttpSys/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.Net.Http.Headers": "2.0.2",
- "Microsoft.Win32.Registry": "4.4.0",
- "System.Security.Principal.Windows": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.HttpSys.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.IISIntegration/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.0.2",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.AspNetCore.HttpOverrides": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Security.Principal.Windows": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.IISIntegration.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.WebUtilities": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "Microsoft.Net.Http.Headers": "2.0.2",
- "System.Threading.Tasks.Extensions": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Https/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.0.2",
- "System.Buffers": "4.4.0",
- "System.Numerics.Vectors": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv/2.0.2": {
- "dependencies": {
- "Libuv": "1.10.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.Session/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.DataProtection": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Session.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.SpaServices/2.0.3": {
- "dependencies": {
- "Microsoft.AspNetCore.Mvc.TagHelpers": "2.0.3",
- "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.3",
- "Microsoft.AspNetCore.NodeServices": "2.0.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.SpaServices.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.18051"
- }
- }
- },
- "Microsoft.AspNetCore.StaticFiles/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.WebEncoders": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.StaticFiles.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.WebSockets/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Numerics.Vectors": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.WebSockets.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.AspNetCore.WebUtilities/2.0.2": {
- "dependencies": {
- "Microsoft.Net.Http.Headers": "2.0.2",
- "System.Text.Encodings.Web": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Azure.KeyVault/2.3.2": {
- "dependencies": {
- "Microsoft.Azure.KeyVault.WebKey": "2.0.7",
- "Microsoft.Rest.ClientRuntime": "2.3.8",
- "Microsoft.Rest.ClientRuntime.Azure": "3.3.7",
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1",
- "System.Net.Http": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.3.2.0"
- }
- }
- },
- "Microsoft.Azure.KeyVault.WebKey/2.0.7": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.Azure.KeyVault.WebKey.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.7.0"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/1.1.0": {},
- "Microsoft.CodeAnalysis.Common/2.3.1": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
- "System.AppContext": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Collections.Immutable": "1.4.0",
- "System.Console": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.FileVersionInfo": "4.3.0",
- "System.Diagnostics.StackTrace": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Metadata": "1.5.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.CodePages": "4.4.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Parallel": "4.3.0",
- "System.Threading.Thread": "4.3.0",
- "System.ValueTuple": "4.4.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0",
- "System.Xml.XPath.XDocument": "4.3.0",
- "System.Xml.XmlDocument": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {
- "assemblyVersion": "2.3.0.0",
- "fileVersion": "2.3.1.61919"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/2.3.1": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "2.3.1"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {
- "assemblyVersion": "2.3.0.0",
- "fileVersion": "2.3.1.61919"
- }
- }
- },
- "Microsoft.CodeAnalysis.Razor/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Razor.Language": "2.0.2",
- "Microsoft.CodeAnalysis.CSharp": "2.3.1",
- "Microsoft.CodeAnalysis.Common": "2.3.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.CSharp/4.4.0": {},
- "Microsoft.Data.Edm/5.8.2": {
- "runtime": {
- "lib/netstandard1.1/Microsoft.Data.Edm.dll": {
- "assemblyVersion": "5.8.1.0",
- "fileVersion": "5.8.1.62767"
- }
- },
- "resources": {
- "lib/netstandard1.1/de/Microsoft.Data.Edm.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.1/es/Microsoft.Data.Edm.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.1/fr/Microsoft.Data.Edm.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.1/it/Microsoft.Data.Edm.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.1/ja/Microsoft.Data.Edm.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.1/ko/Microsoft.Data.Edm.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.1/ru/Microsoft.Data.Edm.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.1/zh-Hans/Microsoft.Data.Edm.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.1/zh-Hant/Microsoft.Data.Edm.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Data.OData/5.8.2": {
- "dependencies": {
- "Microsoft.Data.Edm": "5.8.2",
- "System.Spatial": "5.8.2"
- },
- "runtime": {
- "lib/netstandard1.1/Microsoft.Data.OData.dll": {
- "assemblyVersion": "5.8.1.0",
- "fileVersion": "5.8.1.62767"
- }
- },
- "resources": {
- "lib/netstandard1.1/de/Microsoft.Data.OData.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.1/es/Microsoft.Data.OData.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.1/fr/Microsoft.Data.OData.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.1/it/Microsoft.Data.OData.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.1/ja/Microsoft.Data.OData.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.1/ko/Microsoft.Data.OData.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.1/ru/Microsoft.Data.OData.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.1/zh-Hans/Microsoft.Data.OData.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.1/zh-Hant/Microsoft.Data.OData.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Data.Sqlite/2.0.1": {
- "dependencies": {
- "Microsoft.Data.Sqlite.Core": "2.0.1",
- "SQLitePCLRaw.bundle_green": "1.1.7"
- }
- },
- "Microsoft.Data.Sqlite.Core/2.0.1": {
- "dependencies": {
- "SQLitePCLRaw.core": "1.1.7"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.DotNet.PlatformAbstractions/2.0.3": {
- "dependencies": {
- "System.AppContext": "4.3.0",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.0"
- }
- }
- },
- "Microsoft.EntityFrameworkCore/2.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Memory": "2.0.1",
- "Microsoft.Extensions.DependencyInjection": "2.0.0",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Remotion.Linq": "2.1.1",
- "System.Collections.Immutable": "1.4.0",
- "System.ComponentModel.Annotations": "4.4.0",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "System.Interactive.Async": "3.1.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Design/2.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.InMemory/2.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.InMemory.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Relational/2.0.2": {
- "dependencies": {
- "Microsoft.CSharp": "4.4.0",
- "Microsoft.EntityFrameworkCore": "2.0.2",
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Sqlite/2.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Sqlite.Core": "2.0.2",
- "SQLitePCLRaw.bundle_green": "1.1.7"
- }
- },
- "Microsoft.EntityFrameworkCore.Sqlite.Core/2.0.2": {
- "dependencies": {
- "Microsoft.Data.Sqlite.Core": "2.0.1",
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.SqlServer/2.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Relational": "2.0.2",
- "System.Data.SqlClient": "4.4.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Tools/2.0.2": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Design": "2.0.2"
- }
- },
- "Microsoft.Extensions.Caching.Abstractions/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Caching.Memory/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Caching.Redis/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "StackExchange.Redis.StrongName": "1.2.4"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Redis.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Caching.SqlServer/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Data.SqlClient": "4.4.3"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.SqlServer.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.AzureKeyVault/2.0.1": {
- "dependencies": {
- "Microsoft.Azure.KeyVault": "2.3.2",
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Microsoft.IdentityModel.Clients.ActiveDirectory": "3.14.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureKeyVault.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.CommandLine/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.FileExtensions/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Ini/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Ini.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Json/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.UserSecrets/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Json": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Xml/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.0.1",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.0.1",
- "System.Security.Cryptography.Xml": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Xml.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/2.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.0.17205"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.0.17205"
- }
- }
- },
- "Microsoft.Extensions.DependencyModel/2.0.3": {
- "dependencies": {
- "Microsoft.DotNet.PlatformAbstractions": "2.0.3",
- "Newtonsoft.Json": "10.0.1",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Linq": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {
- "assemblyVersion": "2.0.3.0",
- "fileVersion": "2.0.3.0"
- }
- }
- },
- "Microsoft.Extensions.DiagnosticAdapter/2.0.1": {
- "dependencies": {
- "System.Diagnostics.DiagnosticSource": "4.4.1"
- },
- "runtime": {
- "lib/netcoreapp2.0/Microsoft.Extensions.DiagnosticAdapter.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Composite/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Embedded/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Physical/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "2.0.1",
- "Microsoft.Extensions.FileSystemGlobbing": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.FileSystemGlobbing/2.0.1": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Extensions.Identity.Core/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "2.0.2",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.ComponentModel.Annotations": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Extensions.Identity.Stores/2.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Identity.Core": "2.0.2",
- "Microsoft.Extensions.Logging": "2.0.1",
- "System.ComponentModel.Annotations": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Extensions.Localization/2.0.2": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Localization.Abstractions": "2.0.2",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Extensions.Localization.Abstractions/2.0.2": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/2.0.1": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.AzureAppServices/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.0.1",
- "Microsoft.Extensions.Configuration.Json": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Logging.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging.Configuration": "2.0.1",
- "System.ValueTuple": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.AzureAppServices.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.Configuration/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "2.0.1",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.Console/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.Logging": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.Debug/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.EventSource/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "2.0.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Logging.TraceSource/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.TraceSource.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.ObjectPool/2.0.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.0.17205"
- }
- }
- },
- "Microsoft.Extensions.Options/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Primitives": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "2.0.1",
- "Microsoft.Extensions.Configuration.Binder": "2.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Reflection.TypeExtensions": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {
- "assemblyVersion": "1.1.0.0",
- "fileVersion": "1.1.0.21115"
- }
- }
- },
- "Microsoft.Extensions.Primitives/2.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.0.17205"
- }
- }
- },
- "Microsoft.Extensions.WebEncoders/2.0.1": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
- "Microsoft.Extensions.Options": "2.0.1",
- "System.Text.Encodings.Web": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
- "assemblyVersion": "2.0.1.0",
- "fileVersion": "2.0.1.18051"
- }
- }
- },
- "Microsoft.IdentityModel.Clients.ActiveDirectory/3.14.1": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Runtime.Serialization.Json": "4.0.2",
- "System.Runtime.Serialization.Primitives": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll": {
- "assemblyVersion": "3.14.1.10",
- "fileVersion": "3.14.40629.536"
- },
- "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll": {
- "assemblyVersion": "3.14.1.10",
- "fileVersion": "3.14.40629.536"
- }
- }
- },
- "Microsoft.IdentityModel.Logging/1.1.4": {
- "dependencies": {
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll": {
- "assemblyVersion": "1.1.4.0",
- "fileVersion": "1.1.4.216"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols/2.1.4": {
- "dependencies": {
- "System.Collections.Specialized": "4.3.0",
- "System.Diagnostics.Contracts": "4.3.0",
- "System.IdentityModel.Tokens.Jwt": "5.1.4",
- "System.Net.Http": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll": {
- "assemblyVersion": "2.1.4.0",
- "fileVersion": "2.1.4.216"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.1.4": {
- "dependencies": {
- "Microsoft.IdentityModel.Protocols": "2.1.4",
- "System.Dynamic.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
- "assemblyVersion": "2.1.4.0",
- "fileVersion": "2.1.4.216"
- }
- }
- },
- "Microsoft.IdentityModel.Tokens/5.1.4": {
- "dependencies": {
- "Microsoft.IdentityModel.Logging": "1.1.4",
- "Newtonsoft.Json": "10.0.1",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Security.Claims": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll": {
- "assemblyVersion": "5.1.4.0",
- "fileVersion": "5.1.4.216"
- }
- }
- },
- "Microsoft.Net.Http.Headers/2.0.2": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.0.0",
- "System.Buffers": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.NETCore.Platforms/2.0.0": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.Rest.ClientRuntime/2.3.8": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.3.8.0"
- }
- }
- },
- "Microsoft.Rest.ClientRuntime.Azure/3.3.7": {
- "dependencies": {
- "Microsoft.Rest.ClientRuntime": "2.3.8",
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard1.4/Microsoft.Rest.ClientRuntime.Azure.dll": {
- "assemblyVersion": "3.0.0.0",
- "fileVersion": "3.3.7.0"
- }
- }
- },
- "Microsoft.VisualStudio.Web.BrowserLink/2.0.2": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Abstractions": "2.0.2",
- "Microsoft.AspNetCore.Http.Extensions": "2.0.2",
- "Microsoft.Extensions.FileProviders.Physical": "2.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.VisualStudio.Web.BrowserLink.dll": {
- "assemblyVersion": "2.0.2.0",
- "fileVersion": "2.0.2.18051"
- }
- }
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "Microsoft.Win32.Registry/4.4.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Security.AccessControl": "4.4.0",
- "System.Security.Principal.Windows": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.25519.3"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.25519.3"
- },
- "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.Registry.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.25519.3"
- }
- }
- },
- "NETStandard.Library/1.6.1": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.AppContext": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Console": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.Compression.ZipFile": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Net.Http": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Net.Sockets": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Timer": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0"
- }
- },
- "Newtonsoft.Json/10.0.1": {
- "dependencies": {
- "Microsoft.CSharp": "4.4.0",
- "System.Collections": "4.3.0",
- "System.ComponentModel.TypeConverter": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Runtime.Serialization.Formatters": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0",
- "System.Xml.XmlDocument": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/Newtonsoft.Json.dll": {
- "assemblyVersion": "10.0.0.0",
- "fileVersion": "10.0.1.20720"
- }
- }
- },
- "Newtonsoft.Json.Bson/1.0.1": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1"
- },
- "runtime": {
- "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.1.20722"
- }
- }
- },
- "Remotion.Linq/2.1.1": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Linq.Queryable": "4.0.1",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.0/Remotion.Linq.dll": {
- "assemblyVersion": "2.1.0.0",
- "fileVersion": "2.1.1.30000"
- }
- }
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "rid": "debian.8-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "rid": "fedora.23-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "rid": "fedora.24-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "runtime.native.System/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "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.IO.Compression/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Net.Security/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "rid": "opensuse.13.2-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "rid": "opensuse.42.1-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
- "rid": "osx.10.10-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
- "rid": "osx.10.10-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "rid": "rhel.7-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "rid": "ubuntu.14.04-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "rid": "ubuntu.16.04-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "runtimeTargets": {
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "rid": "ubuntu.16.10-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "runtimeTargets": {
- "runtimes/win-arm64/native/sni.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "4.6.25512.1"
- }
- }
- },
- "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "runtimeTargets": {
- "runtimes/win-x64/native/sni.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "4.6.25512.1"
- }
- }
- },
- "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "runtimeTargets": {
- "runtimes/win-x86/native/sni.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "4.6.25512.1"
- }
- }
- },
- "SQLitePCLRaw.bundle_green/1.1.7": {
- "dependencies": {
- "SQLitePCLRaw.core": "1.1.7",
- "SQLitePCLRaw.lib.e_sqlite3.linux": "1.1.7",
- "SQLitePCLRaw.lib.e_sqlite3.osx": "1.1.7",
- "SQLitePCLRaw.lib.e_sqlite3.v110_xp": "1.1.7",
- "SQLitePCLRaw.provider.e_sqlite3.netstandard11": "1.1.7"
- },
- "runtime": {
- "lib/netcoreapp/SQLitePCLRaw.batteries_green.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- },
- "lib/netcoreapp/SQLitePCLRaw.batteries_v2.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.core/1.1.7": {
- "dependencies": {
- "NETStandard.Library": "1.6.1"
- },
- "runtime": {
- "lib/netstandard1.1/SQLitePCLRaw.core.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.7": {
- "runtimeTargets": {
- "runtimes/linux-x64/native/libe_sqlite3.so": {
- "rid": "linux-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux-x86/native/libe_sqlite3.so": {
- "rid": "linux-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.7": {
- "runtimeTargets": {
- "runtimes/osx-x64/native/libe_sqlite3.dylib": {
- "rid": "osx-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.7": {
- "runtimeTargets": {
- "runtimes/win7-x64/native/e_sqlite3.dll": {
- "rid": "win7-x64",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win7-x86/native/e_sqlite3.dll": {
- "rid": "win7-x86",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.7": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "SQLitePCLRaw.core": "1.1.7"
- },
- "runtime": {
- "lib/netstandard1.1/SQLitePCLRaw.provider.e_sqlite3.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "StackExchange.Redis.StrongName/1.2.4": {
- "dependencies": {
- "NETStandard.Library": "1.6.1",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Collections.NonGeneric": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Net.NameResolution": "4.3.0",
- "System.Net.Security": "4.3.0",
- "System.Net.Sockets": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Thread": "4.3.0",
- "System.Threading.ThreadPool": "4.3.0",
- "System.Threading.Timer": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.5/StackExchange.Redis.StrongName.dll": {
- "assemblyVersion": "1.2.4.0",
- "fileVersion": "1.2.4.0"
- }
- }
- },
- "System.AppContext/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.6/System.AppContext.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Buffers/4.4.0": {},
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Concurrent.dll": {
- "assemblyVersion": "4.0.13.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Collections.Immutable/1.4.0": {},
- "System.Collections.NonGeneric/4.3.0": {
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.NonGeneric.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Collections.Specialized/4.3.0": {
- "dependencies": {
- "System.Collections.NonGeneric": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Specialized.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.ComponentModel/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.ComponentModel.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.ComponentModel.Annotations/4.4.0": {},
- "System.ComponentModel.Primitives/4.3.0": {
- "dependencies": {
- "System.ComponentModel": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.ComponentModel.TypeConverter/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.NonGeneric": "4.3.0",
- "System.Collections.Specialized": "4.3.0",
- "System.ComponentModel": "4.3.0",
- "System.ComponentModel.Primitives": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Console/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- }
- },
- "System.Data.SqlClient/4.4.3": {
- "dependencies": {
- "Microsoft.Win32.Registry": "4.4.0",
- "System.Security.Principal.Windows": "4.4.0",
- "System.Text.Encoding.CodePages": "4.4.0",
- "runtime.native.System.Data.SqlClient.sni": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.Data.SqlClient.dll": {
- "assemblyVersion": "4.2.0.2",
- "fileVersion": "4.6.26212.1"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.2.0.2",
- "fileVersion": "4.6.26212.1"
- },
- "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.2.0.2",
- "fileVersion": "4.6.26212.1"
- }
- }
- },
- "System.Diagnostics.Contracts/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.DiagnosticSource/4.4.1": {},
- "System.Diagnostics.FileVersionInfo/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Reflection.Metadata": "1.5.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Diagnostics.StackTrace/4.3.0": {
- "dependencies": {
- "System.IO.FileSystem": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Metadata": "1.5.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {
- "assemblyVersion": "4.0.3.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Diagnostics.Tools/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Dynamic.Runtime/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Dynamic.Runtime.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.IdentityModel.Tokens.Jwt/5.1.4": {
- "dependencies": {
- "Microsoft.IdentityModel.Tokens": "5.1.4"
- },
- "runtime": {
- "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll": {
- "assemblyVersion": "5.1.4.0",
- "fileVersion": "5.1.4.216"
- }
- }
- },
- "System.Interactive.Async/3.1.1": {
- "dependencies": {
- "NETStandard.Library": "1.6.1"
- },
- "runtime": {
- "lib/netstandard1.3/System.Interactive.Async.dll": {
- "assemblyVersion": "3.0.3000.0",
- "fileVersion": "3.1.1.0"
- }
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.Compression/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Buffers": "4.4.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.IO.Compression": "4.3.0"
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "dependencies": {
- "System.Buffers": "4.4.0",
- "System.IO": "4.3.0",
- "System.IO.Compression": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.IO.FileSystem/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- }
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Linq/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.Expressions.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Linq.Queryable/4.0.1": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Linq.Queryable.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "1.0.24212.1"
- }
- }
- },
- "System.Net.Http/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.DiagnosticSource": "4.4.1",
- "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.0"
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Net.NameResolution/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Principal.Windows": "4.4.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0"
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Net.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Net.Security/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.Win32.Primitives": "4.3.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "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.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.Claims": "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.Security.Principal": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.ThreadPool": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Security": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Net.Sockets/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Numerics.Vectors/4.4.0": {},
- "System.ObjectModel/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.ObjectModel.dll": {
- "assemblyVersion": "4.0.13.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Private.DataContractSerialization/4.1.1": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XmlDocument": "4.3.0",
- "System.Xml.XmlSerializer": "4.0.11"
- },
- "runtime": {
- "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "1.0.24212.1"
- }
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Metadata/1.5.0": {},
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/4.4.0": {
- "runtime": {
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "assemblyVersion": "4.0.3.0",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- }
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Numerics.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Runtime.Serialization.Formatters/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Serialization.Primitives": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Runtime.Serialization.Json/4.0.2": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Private.DataContractSerialization": "4.1.1",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "1.0.24212.1"
- }
- }
- },
- "System.Runtime.Serialization.Primitives/4.3.0": {
- "dependencies": {
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
- "assemblyVersion": "4.1.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.AccessControl/4.4.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "System.Security.Principal.Windows": "4.4.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.Security.AccessControl.dll": {
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.25519.3"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.25519.3"
- },
- "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.25519.3"
- }
- }
- },
- "System.Security.Claims/4.3.0": {
- "dependencies": {
- "System.Collections": "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.Runtime.Extensions": "4.3.0",
- "System.Security.Principal": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Claims.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- },
- "runtimeTargets": {
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "rid": "osx",
- "assetType": "runtime",
- "assemblyVersion": "4.2.1.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.2.1.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.2.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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.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"
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.2.1.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.2.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "1.0.24212.1"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.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"
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Cryptography.Xml/4.4.0": {
- "runtime": {
- "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.6.25519.3"
- }
- }
- },
- "System.Security.Principal/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.0/System.Security.Principal.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Security.Principal.Windows/4.4.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.25519.3"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.25519.3"
- },
- "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.25519.3"
- }
- }
- },
- "System.Spatial/5.8.2": {
- "runtime": {
- "lib/netstandard1.1/System.Spatial.dll": {
- "assemblyVersion": "5.8.1.0",
- "fileVersion": "5.8.1.62767"
- }
- },
- "resources": {
- "lib/netstandard1.1/de/System.Spatial.resources.dll": {
- "locale": "de"
- },
- "lib/netstandard1.1/es/System.Spatial.resources.dll": {
- "locale": "es"
- },
- "lib/netstandard1.1/fr/System.Spatial.resources.dll": {
- "locale": "fr"
- },
- "lib/netstandard1.1/it/System.Spatial.resources.dll": {
- "locale": "it"
- },
- "lib/netstandard1.1/ja/System.Spatial.resources.dll": {
- "locale": "ja"
- },
- "lib/netstandard1.1/ko/System.Spatial.resources.dll": {
- "locale": "ko"
- },
- "lib/netstandard1.1/ru/System.Spatial.resources.dll": {
- "locale": "ru"
- },
- "lib/netstandard1.1/zh-Hans/System.Spatial.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netstandard1.1/zh-Hant/System.Spatial.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding.CodePages/4.4.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.25519.3"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.25519.3"
- }
- }
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- }
- },
- "System.Text.Encodings.Web/4.4.0": {
- "runtime": {
- "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.25519.3"
- }
- }
- },
- "System.Text.RegularExpressions/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.6/System.Text.RegularExpressions.dll": {
- "assemblyVersion": "4.1.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.4.0": {},
- "System.Threading.Tasks.Parallel/4.3.0": {
- "dependencies": {
- "System.Collections.Concurrent": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "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"
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Threading.Thread/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.Thread.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Threading.ThreadPool/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.ThreadPool.dll": {
- "assemblyVersion": "4.0.11.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Threading.Timer/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.ValueTuple/4.4.0": {},
- "System.Xml.ReaderWriter/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Text.Encoding.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "System.Threading.Tasks.Extensions": "4.4.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {
- "assemblyVersion": "4.1.0.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Xml.XDocument/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tools": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XDocument.dll": {
- "assemblyVersion": "4.0.12.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Xml.XmlDocument/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "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.Runtime.Extensions": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XmlDocument.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Xml.XmlSerializer/4.0.11": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XmlDocument": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {
- "assemblyVersion": "4.0.11.0",
- "fileVersion": "1.0.24212.1"
- }
- }
- },
- "System.Xml.XPath/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "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.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XPath.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "System.Xml.XPath.XDocument/4.3.0": {
- "dependencies": {
- "System.Diagnostics.Debug": "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.Threading": "4.3.0",
- "System.Xml.ReaderWriter": "4.3.0",
- "System.Xml.XDocument": "4.3.0",
- "System.Xml.XPath": "4.3.0"
- },
- "runtime": {
- "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.6.24705.1"
- }
- }
- },
- "webhookSharp/1.0.0": {
- "runtime": {
- "lib/net6.0/webhook#.dll": {
- "assemblyVersion": "0.0.0.0",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "WindowsAzure.Storage/8.1.4": {
- "dependencies": {
- "Microsoft.Data.OData": "5.8.2",
- "NETStandard.Library": "1.6.1",
- "Newtonsoft.Json": "10.0.1",
- "System.Spatial": "5.8.2"
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.WindowsAzure.Storage.dll": {
- "assemblyVersion": "8.1.4.0",
- "fileVersion": "8.1.4.0"
- }
- }
- }
- }
+ ".NETCoreApp,Version=v6.0": {}
},
- "libraries": {
- "Emailer/1.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MKz/p7Nq4omeANwvqEm0RJRX2VRTkFwn0dmGHkxt5/TeWilN/rBEUMiGTX2ySHqh/QbQviPXnwfZQFaTK6JbGA==",
- "path": "emailer/1.0.0",
- "hashPath": "emailer.1.0.0.nupkg.sha512"
- },
- "Libuv/1.10.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GsCf4q+eyaI49rCPlgYxdxa1SQCysXFFdSJWdstrwxytg4+VPYLYrXD4AT2rjHVJ+UF7SSWX9CapWEYaU4ejVQ==",
- "path": "libuv/1.10.0",
- "hashPath": "libuv.1.10.0.nupkg.sha512"
- },
- "Microsoft.ApplicationInsights/2.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4dX/zu3Psz9oM3ErU64xfOHuSxOwMxN6q5RabSkeYbX42Yn6dR/kDToqjs+txCRjrfHUxyYjfeJHu+MbCfvAsg==",
- "path": "microsoft.applicationinsights/2.4.0",
- "hashPath": "microsoft.applicationinsights.2.4.0.nupkg.sha512"
- },
- "Microsoft.ApplicationInsights.AspNetCore/2.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kiGmzl9Cav34dF7AHVMoJxdJJQEeLB8KZGNwX1LjImG9iem5hGk4DkHpW7/m9Nh3DrL8IKSL3mqQo+IPqWfMRQ==",
- "path": "microsoft.applicationinsights.aspnetcore/2.1.1",
- "hashPath": "microsoft.applicationinsights.aspnetcore.2.1.1.nupkg.sha512"
- },
- "Microsoft.ApplicationInsights.DependencyCollector/2.4.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RWxdX90MY6tNF8S5lwRvJcHiBMIWwVLCxd4TGIEl3X0yAKaolY2vs4zTCvyCIVkEAMs1aInTgWkYwOjzYvAHWw==",
- "path": "microsoft.applicationinsights.dependencycollector/2.4.1",
- "hashPath": "microsoft.applicationinsights.dependencycollector.2.4.1.nupkg.sha512"
- },
- "Microsoft.AspNetCore/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-M1kweIFWsyqHnY4W8Jqwz/tuVKF7Ff1mokn9+jpMs+S8m1wlGKeqmy9ovNF1rJoSTnF97cb4Wn0JoTA84bCYSQ==",
- "path": "microsoft.aspnetcore/2.0.2",
- "hashPath": "microsoft.aspnetcore.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.All/2.0.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hpWBRgs094P0jBWJRqBV+8oXl6G+O5ixDAgXI5qouOsg2jlLOmYr1+95+lRbLSn31HhKbQdNel6VQSDUbm0juw==",
- "path": "microsoft.aspnetcore.all/2.0.7",
- "hashPath": "microsoft.aspnetcore.all.2.0.7.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Antiforgery/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-182axAPHGthEbxE9/JSTuFUr5KS8O4a4kPoTp4GaqHjXYp8ddZ3y69XDJCqavvZb+7ziMnWI9ONoBo6QRW41OA==",
- "path": "microsoft.aspnetcore.antiforgery/2.0.2",
- "hashPath": "microsoft.aspnetcore.antiforgery.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.ApplicationInsights.HostingStartup/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w861s7DkUmgjg1Jhviw49m6FJg+rk0lXWUtfphVainBsGfO2O5d6su8dwmUGg3mcyqax9nceWQMekVxVVS1+mA==",
- "path": "microsoft.aspnetcore.applicationinsights.hostingstartup/2.0.2",
- "hashPath": "microsoft.aspnetcore.applicationinsights.hostingstartup.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-11a6DvTSur4T62bf/l0nb1uS0h0vXfOiAMCwDYqFuR1Pkox8v9eiTgduyxDppmEQuAh3TboPhYY3TzufEAFK3Q==",
- "path": "microsoft.aspnetcore.authentication/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-12+IIkf+5eM/fNch3k+nj8nzIeaQYBF87TxZZ3Uf42wPoMuGzc8nMx8fMQDyqKtzJJ+9WCnH7N9N8ekTz9F7xg==",
- "path": "microsoft.aspnetcore.authentication.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Cookies/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JZt3k5rkAysYTShTRuYCaLXOT6o8BdSs1BmBbUDI/fLXHeRe3rPr3dNTAYjrvVjcfOLHqXcQTJCRiheZmIL2Jw==",
- "path": "microsoft.aspnetcore.authentication.cookies/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.cookies.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Core/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qA2YEcpU02rBZvtOaZk4RPIBqneGAzkS0dBQXcHk31cvf5bbzj+FHENmTKgsXDADyKVR0U1+7kS+bc44JxGCVA==",
- "path": "microsoft.aspnetcore.authentication.core/2.0.2",
- "hashPath": "microsoft.aspnetcore.authentication.core.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Facebook/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+WGDlg9GRhT6GoHp2U+xXFvknBCj9beFvgqwUlFe6It8Sygaq9san/W3UQkQGP/HECn/eijrZK17rIQQvj2cYg==",
- "path": "microsoft.aspnetcore.authentication.facebook/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.facebook.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Google/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Dquas27vl4wvVHjgPFqlg9/Sczg+pxP0MqNOgV7LR1JfLxaasULciKxEQV2vOMqFTxjdqMi10WbSYWKYQyiKVw==",
- "path": "microsoft.aspnetcore.authentication.google/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.google.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.JwtBearer/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AwYc5nGOWkpUHRd5JI3ummWJTciuvjskL7zIfgGgFwhaK3l8ZeDTHpHyTXW+Zjn69Cq+FRSLNiuEkAWQVJ8APQ==",
- "path": "microsoft.aspnetcore.authentication.jwtbearer/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.MicrosoftAccount/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-op1Xhi/4voQnCPsTf9ABQ+EaGV+6lAQOiLnEY3swIWq+v0ywg0Ze1vfmBjyktb4NIQgB5mO/eSSUOPoqFrXU5w==",
- "path": "microsoft.aspnetcore.authentication.microsoftaccount/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.microsoftaccount.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.OAuth/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cuQYTKA/u5/uY5Wxu8OyLRUAt3U7kGyBmHwHvWz83vseBsnvso+qp+KX9syr/5PfkEvzub1RCvctB2NCRz5vNQ==",
- "path": "microsoft.aspnetcore.authentication.oauth/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.oauth.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.OpenIdConnect/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2gRCExy0c2jrrsbwbjEeqK3o0ZEaVOxl8u9X+43GbWG3UDh4Zt8agGu+PhMxUO05j4Z2u5RBZVYHIGoZnuniMA==",
- "path": "microsoft.aspnetcore.authentication.openidconnect/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.openidconnect.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Twitter/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-CrlYxaEclxWy9jsndqKy21jyQk1QpnxaFZyn9Mw7/05BivAbEpLQ5pljFhqRHpQoaafWm96gKQXEWirftnh8kA==",
- "path": "microsoft.aspnetcore.authentication.twitter/2.0.3",
- "hashPath": "microsoft.aspnetcore.authentication.twitter.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authorization/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IUiI+cAzkcvkHtdoXuArk+RFQVmORyBC234T+kXuOCzsxCazMmEscX7ZvQua7JYbw5f7WgeG7iXhsBdoLUC2jQ==",
- "path": "microsoft.aspnetcore.authorization/2.0.3",
- "hashPath": "microsoft.aspnetcore.authorization.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authorization.Policy/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DTNCn50Hhbkt6XsQ9huZYgj2NIw20i7UeJZQ5jCrwFUrUIRlOhV2y5X2JQ8v1QEkpod+/3OjuWRb4tXWQC6t1g==",
- "path": "microsoft.aspnetcore.authorization.policy/2.0.3",
- "hashPath": "microsoft.aspnetcore.authorization.policy.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.AzureAppServices.HostingStartup/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LgcCPhxGp3+YQMDSLwMXNA1l0drIHpbyV3XFCs1Apmc9eRHYD8SOF+J+IlFWk6fPFgEEOMC0Yw2eXGlv4fGC/w==",
- "path": "microsoft.aspnetcore.azureappservices.hostingstartup/2.0.2",
- "hashPath": "microsoft.aspnetcore.azureappservices.hostingstartup.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.AzureAppServicesIntegration/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-N/wffLaVJWORJjze62bKmpUh5JYSp1lTf6laxaxLHkH9INvklnDJ4rmSS1guSPbPQLmkWmBrBzlFR/NMDGAdqg==",
- "path": "microsoft.aspnetcore.azureappservicesintegration/2.0.2",
- "hashPath": "microsoft.aspnetcore.azureappservicesintegration.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.CookiePolicy/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d9DS8W5yEFyPmbIczkoe4sS6MgmOJkKX4T9gLecFhNuwhMk3B1vicdKzzALPAuuEOzf9EoejY+uDWr1eHy81tA==",
- "path": "microsoft.aspnetcore.cookiepolicy/2.0.3",
- "hashPath": "microsoft.aspnetcore.cookiepolicy.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Cors/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+mmN69VlbJL4q82C5wKCMdSnxjk4VfcCysDcLIXmNYloI9PY1VqOcHD1A3E6EaPB0ncEb4J+Fg71XO6HToIl7w==",
- "path": "microsoft.aspnetcore.cors/2.0.2",
- "hashPath": "microsoft.aspnetcore.cors.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Cryptography.Internal/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pCJyY7vC6YWY94ssKcgGzVFGsK/bk7RVEH/BxwHmc+T3t5VmXlBq7VvUmhLfk+P5Uc1l0hDIJX0ZJRLy9Sz1jg==",
- "path": "microsoft.aspnetcore.cryptography.internal/2.0.2",
- "hashPath": "microsoft.aspnetcore.cryptography.internal.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JblI3dWCRga40Y6PFUNsdGMAgmMu7Igb9sAtcG3nY8O2tvfuqwkpzGao8KE081KBndGGBcLUD4iWDkoMoGOQVQ==",
- "path": "microsoft.aspnetcore.cryptography.keyderivation/2.0.2",
- "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.DataProtection/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BXVpydukX6AjcnELAZHtTNexSdGLwJ21suskAtDgQshDz/mfySm0Z/voNzQyPFF6SMzDf7iXnXpEBMZchL18Rg==",
- "path": "microsoft.aspnetcore.dataprotection/2.0.2",
- "hashPath": "microsoft.aspnetcore.dataprotection.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Q4eEkEE527CR1qzfyVeTGDVL3mss2D0VKSMWJCwhzxVmSDFy3zyXaJfCDu39GnExAVM9gLKzkoU6KoJGu3vyAg==",
- "path": "microsoft.aspnetcore.dataprotection.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.DataProtection.AzureStorage/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ax6WM99Eyne3GkaKx4LyBT0umSIVChUirI3toLl+Xn2FpwX9ci3aq8yjsRQS1gZ/GBHLwvCjYndzmwo4MO58Ag==",
- "path": "microsoft.aspnetcore.dataprotection.azurestorage/2.0.2",
- "hashPath": "microsoft.aspnetcore.dataprotection.azurestorage.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.DataProtection.Extensions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hHHlz9zhKkbz8S+wc9cxkhYrKbtvRugoSxpPuOnS8dL/KgNYWWhv0EW2LUdzPXkUIoJDAWpvWdmt28tTT/fBQg==",
- "path": "microsoft.aspnetcore.dataprotection.extensions/2.0.2",
- "hashPath": "microsoft.aspnetcore.dataprotection.extensions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Diagnostics/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fAsBgV/202K4ZMB3eFLWAXYRqUz4uf9CR9MwpNYJhMhO+yHxNPGDFBatsiKUVxG4oeMdhFXzYwUbUSaWUYU/7Q==",
- "path": "microsoft.aspnetcore.diagnostics/2.0.2",
- "hashPath": "microsoft.aspnetcore.diagnostics.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4Zb2/cIFGfyHhPMr1tg1Tyuur4PK9Nr5uKnRLxHPJJh1OuAwEAZtUsPHcUa6HHNoA5tZhUFonHJwiFTy9+ZLLA==",
- "path": "microsoft.aspnetcore.diagnostics.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.diagnostics.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fwQvTUIMWXSChZszqBj8005USTlRCUsC0JLprK6EuQJIggbZZfGoyZTv2DLrXJgKSbCWntt2XKXRgfi/VkPwRA==",
- "path": "microsoft.aspnetcore.diagnostics.entityframeworkcore/2.0.2",
- "hashPath": "microsoft.aspnetcore.diagnostics.entityframeworkcore.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Hosting/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qKV9PnsiVC2J1ws1DPoQ1fX3bowLTK2WjXPXpItgKVbuuLSWM1ECoObX2fOkQt6FKt4vJ9i4j/hktFavxova1Q==",
- "path": "microsoft.aspnetcore.hosting/2.0.2",
- "hashPath": "microsoft.aspnetcore.hosting.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-358NTTCWJWpDKno3S85BU0hjxWQ8EzsyjZ5OSMi2XpQ9SrYwzTq6tlXSpVS3cV2RJ2Jx9lXc8uSXFwrOVyUieQ==",
- "path": "microsoft.aspnetcore.hosting.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tvz7D661JTyJXRxWLqOSH0s1zF9bLviZd14aA8poR+srvldS0gg1j62e7SaM5LQrUn+Z4dPwJqBtLXZDj5PtYw==",
- "path": "microsoft.aspnetcore.hosting.server.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Html.Abstractions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l72nlZuVphJbMvmt2k+2s8A6QlfjhYiINPtMVKvD752UzIc/vAmvFUuARjUcCRGqFV/q+r+xkQEyPzLW3xu81Q==",
- "path": "microsoft.aspnetcore.html.abstractions/2.0.1",
- "hashPath": "microsoft.aspnetcore.html.abstractions.2.0.1.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oVmQJvA1dHr96VcJVyUYEPcQH+FHSJSEu52Fq6aB7rmpjtyxlcFzyvRNumD4J1QJjlhE/V8jF10lY2hH0J6h4w==",
- "path": "microsoft.aspnetcore.http/2.0.2",
- "hashPath": "microsoft.aspnetcore.http.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yQM9JzPAExsxTqvJBBr3yC+6XyOETi2T/eOOBjrOOnYgQOO+7M7J8VvAW0wQID9zh7QqWO6kh3BGCT/aqvydtg==",
- "path": "microsoft.aspnetcore.http.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.http.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http.Extensions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-z9uJ6w3BnhjWZZW+i5rVCqKIVLmngLP1AutfOJXJKtXKjAOBqWSTBgySGROqzWkPuDXot1dHVP7NAMnhtloIiQ==",
- "path": "microsoft.aspnetcore.http.extensions/2.0.2",
- "hashPath": "microsoft.aspnetcore.http.extensions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http.Features/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1U5fPSOtIq+cPuqJTjN+EFN3dWn4ptSjybd8minSbyhy0oXr8ujYla86kb9kM3rddUBgrGCyTp/hf0/tMZab+g==",
- "path": "microsoft.aspnetcore.http.features/2.0.2",
- "hashPath": "microsoft.aspnetcore.http.features.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.HttpOverrides/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hZPYYSnG17A+fFws1R5eQBmzF/9zewVlsBk/XeXTQ8fmjY8fUaOyBQGrs3OWKRXtRt3D1VetJ+ngZFl3a5YS9g==",
- "path": "microsoft.aspnetcore.httpoverrides/2.0.2",
- "hashPath": "microsoft.aspnetcore.httpoverrides.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Identity/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-12Ky01ytqyiWnOeQsarkSTrTGMMxxexzTgJ7zm08iiEquaiBzBTMKmi/5rBH8CyFcMQx3kLqnNzrglq0DYHzpg==",
- "path": "microsoft.aspnetcore.identity/2.0.2",
- "hashPath": "microsoft.aspnetcore.identity.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Identity.EntityFrameworkCore/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QSPJenMEmjZmKnZ+ZJvMudhzHISHbEm2LarScz6AHZwgoRY0j+ZdKTVLtN+tAaFeJ2AXCxRVkeBAouLHFyHSAw==",
- "path": "microsoft.aspnetcore.identity.entityframeworkcore/2.0.2",
- "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.JsonPatch/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-US78cfi7nrPTXeONgcSWbgrUBLs1Aca4kCJTieWXDLg0G0gwmdfPbd6S3c5TdJRQdA69K3UhPAs9r9ZAMjIFAA==",
- "path": "microsoft.aspnetcore.jsonpatch/2.0.0",
- "hashPath": "microsoft.aspnetcore.jsonpatch.2.0.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Localization/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nijm4SSe5LwIOod5CHOFS4oGggNqyQCSb1DhA1Gy+R8hrwdc0vZEYuclyur9jysGSUNiUw/KWGeVIB99u9rdVw==",
- "path": "microsoft.aspnetcore.localization/2.0.2",
- "hashPath": "microsoft.aspnetcore.localization.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Localization.Routing/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-R8Dfo13h2jUmCxOCDk0AZBUB9LIcDpRKIuarjaHh8QZ/Vnmg3+4MKTK2nUbnDyGuhkUt/06nVoB7LxSDhcUqSQ==",
- "path": "microsoft.aspnetcore.localization.routing/2.0.2",
- "hashPath": "microsoft.aspnetcore.localization.routing.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.MiddlewareAnalysis/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hjAzkHE9JFOi6YNneGbjlyUEZ+a7dQldTZJlhE2t4e2EMfLPY+31y5hbAYfVBKVooJDaWA0nmCUMuhdH+Nceew==",
- "path": "microsoft.aspnetcore.middlewareanalysis/2.0.2",
- "hashPath": "microsoft.aspnetcore.middlewareanalysis.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WkyEZDF709/l7ljPUD4j1IRj3McGgO8emGO7SNz+WK/HL6dmHL234uUcEjNEqFEpJJpxvvQVRal0YwwhZdeGZw==",
- "path": "microsoft.aspnetcore.mvc/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Abstractions/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iXPYz6zZE6vLLJYjQA7F8vtyPqYgOR1bOhChkfuhbIzrU4VELB2I3ozOdMGviXlmApbpRXZKd4z7viqlKKXiIg==",
- "path": "microsoft.aspnetcore.mvc.abstractions/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.abstractions.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.ApiExplorer/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NllnW4FpRqBTw+P9RG6pVZdHglpx7F3jm73DNdRz66ijzypY/e0zXDItKPdmjPkRH0AIWAI+TxaHW4lcGE7MqQ==",
- "path": "microsoft.aspnetcore.mvc.apiexplorer/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.apiexplorer.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Core/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKyr3rrADlyZYkFydM3ds5F682feixPQmt/y0QsbjrsNt4eghSVsMvMqD/v2NMjHs8kH4TUsK4qXVPOSFonQ7A==",
- "path": "microsoft.aspnetcore.mvc.core/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.core.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Cors/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xSqDCgTwAk0wjcv4RcaE7MpDs9ELctrLR9ppx6AKbKrTriPqvXoCvFmLnUoXnCNQwn4at7R/C/66TtLfYfwH4g==",
- "path": "microsoft.aspnetcore.mvc.cors/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.cors.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.DataAnnotations/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KNb4rAFnXKZbGxWch8dNg0f9jpgUZUgaPgDFncvjtfSNW6Ml/746KBixXk/lxZq5W+MW/wnjyOr49+WLG/SmzQ==",
- "path": "microsoft.aspnetcore.mvc.dataannotations/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.dataannotations.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Json/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Vts06sEs576xjcnRzEMVKYev25N/fkA2Zeisvc3JRtXtrxVPgJretQ1Yne2JUQuTsaSCMn0TcJtbV3r2FusVGQ==",
- "path": "microsoft.aspnetcore.mvc.formatters.json/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.formatters.json.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Formatters.Xml/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LoVS9sHEG0i39LY8cQnVEfdAkYpal1p2idAkEgZIqtaW9su8Kf+8VGjlm2LW4PlX8sru559DNuNp8NBbbsy6Rg==",
- "path": "microsoft.aspnetcore.mvc.formatters.xml/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.formatters.xml.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Localization/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0RaOWJmXno0GAQiJ4j98KOjltGR5Gb9yu16AmRfmEIZVIY+B+s3wfZBHGgTpYxAEuAAzzUAgMX/wyhAkefCp4w==",
- "path": "microsoft.aspnetcore.mvc.localization/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.localization.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Razor/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-T56Niuff/u4nuPwnBTociMVE/dzSGu8GcuW4L+gqV42WDE/V9AdJEtae6nQ2DSdvZOokULJ74eNAe2RL1Gz4Sw==",
- "path": "microsoft.aspnetcore.mvc.razor/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.razor.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7Jr4WCpJRyHA44S6BuqgERDNeR3222Wbu3X/E2HMyiNlqIkPv4FAoEu6zqcG5iy9Y/vMzURYPASVOIBQs5ZVXg==",
- "path": "microsoft.aspnetcore.mvc.razor.extensions/2.0.2",
- "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3tyvIJ33NUumLp3A6McdX8gklkYYOj1antb1zL8CzkL94tIEVK//cUJnRdQUwtegSI1cbkjXr4/9ZWnALKYkpw==",
- "path": "microsoft.aspnetcore.mvc.razor.viewcompilation/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.razor.viewcompilation.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.RazorPages/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uugn2CpSkTisavKbHgAtCYQoSTsODNbwp+de+xwDVlUjq2IFxQTs/EFCWTFlqbNAIMUEFnoDKKx6Zlx8M20INg==",
- "path": "microsoft.aspnetcore.mvc.razorpages/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.razorpages.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.TagHelpers/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vrfBUPe9KmVa8hcJaq1QVA8WGQRBbaXthOt86p48t4wh9FnkrvVXLfBTRdMz7F8X3grgXt+gZkil8Tlk+9L5hQ==",
- "path": "microsoft.aspnetcore.mvc.taghelpers/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.taghelpers.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.ViewFeatures/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7z2Al4cs5Rgy42rdU41fm3GP7+ZSDrF8aMi7W9b/WXql7nysSS9v/2r4eE5H3xMv2M4b3rjOyAPUurkLZVV58w==",
- "path": "microsoft.aspnetcore.mvc.viewfeatures/2.0.3",
- "hashPath": "microsoft.aspnetcore.mvc.viewfeatures.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.NodeServices/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-o8Jsb9nZ2UpJoMH2Cl+MhLLICLKxOuX/kT+H8A0Mfe3LJK4X55TwjSTUU6qS9486+pawH/HMVND1SEhZriWHQg==",
- "path": "microsoft.aspnetcore.nodeservices/2.0.3",
- "hashPath": "microsoft.aspnetcore.nodeservices.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Owin/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RFfcbP54mcwdkiN5tTEpTCvLoYMOmh8P0XutxPVyn3lQmTKDJjUp+VE3DlTQ0E4mNYhgAR/8I8C6aGf1CTsHJw==",
- "path": "microsoft.aspnetcore.owin/2.0.2",
- "hashPath": "microsoft.aspnetcore.owin.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Razor/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-g5Cf2gwEg0B8WPE3XA55ve4S9l+5y0c5LMC7jga9KBjrp1ejNTS+nSeLbi9Bg/wYPfoc7Ga4yFqbFKvvODBbow==",
- "path": "microsoft.aspnetcore.razor/2.0.2",
- "hashPath": "microsoft.aspnetcore.razor.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Razor.Language/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8kcc66kk9zEtd661VVuQnmqs/S96O00TKaly5InupBPkiptgFxEcfpxC4zaCDFwmh9fo6xNJu1HlqTHiHGx6Cw==",
- "path": "microsoft.aspnetcore.razor.language/2.0.2",
- "hashPath": "microsoft.aspnetcore.razor.language.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Razor.Runtime/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iaTOXW839pOB+qpB2DqZgGGOjgyFq2wfw0blFr8QjiKKqE4h+/UuRCPdFw5dloIfX9msIERb73bbnYGknhsGZQ==",
- "path": "microsoft.aspnetcore.razor.runtime/2.0.2",
- "hashPath": "microsoft.aspnetcore.razor.runtime.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.ResponseCaching/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Inob5PAUyo+DtoXgGpBSDpIG9E98cUZXsFnNrYUUXVmcsLMknTpcALZxOJtDmvUcz9dSdMU9wDGYB2J2U1llng==",
- "path": "microsoft.aspnetcore.responsecaching/2.0.2",
- "hashPath": "microsoft.aspnetcore.responsecaching.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GDf8IgKCFKB0FRqzI15oky08OS7PwSmxCzAQoHhEgHS6hl3gEmOL65aZUu+S7v+VPd9kj9fEDuXF4vRDhSWUZg==",
- "path": "microsoft.aspnetcore.responsecaching.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.ResponseCompression/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3ik8SSK2dAHrzTSGZrAHD4dM1Pu5tQcLqnM0NWWZnakfbJuAE1EGdfdOAEmktOvvAGrw6+nXDZSzU1bw3xNUdA==",
- "path": "microsoft.aspnetcore.responsecompression/2.0.2",
- "hashPath": "microsoft.aspnetcore.responsecompression.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Rewrite/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pd+f2w7MhGmExjWzhzNK+cuE1U5aq6OfQoLHTnU64cwrJB83Ufk6Tu/93OhzcGpUVE9cmghikg2tBr9xcTwf6A==",
- "path": "microsoft.aspnetcore.rewrite/2.0.2",
- "hashPath": "microsoft.aspnetcore.rewrite.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Routing/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v0f0iRS9H71g49cwNH8hezpZalluUc1Ok3sModvqC4heLdqfAAO52GxWYVtB6lOw5JR6YYy3KvINOx+YghsdHg==",
- "path": "microsoft.aspnetcore.routing/2.0.2",
- "hashPath": "microsoft.aspnetcore.routing.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Routing.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sqI4xsQYm/11KsY8P892yrpL3ALAp6e6u12mrnbdWhQt/IiWhK4X9OIQVVMM+ofrPkAKsjP96ctEkJcDKysNVw==",
- "path": "microsoft.aspnetcore.routing.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.routing.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.HttpSys/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hbwM1WVODYXGn1alR9NkXCMw9P6To5AOPkE8tqdh/TmnCECNwDz75qhpPmhQK+xa9nKdnEQlzjqkTYsmbb5beQ==",
- "path": "microsoft.aspnetcore.server.httpsys/2.0.3",
- "hashPath": "microsoft.aspnetcore.server.httpsys.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.IISIntegration/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UUbQIZp5dmEnDrgjIGjiTqqMBlus1+q+nL0JTmo40UveFVMO4rQSBMwv7M9QzR+T1qFCWNcysbutHIOdoYl8bA==",
- "path": "microsoft.aspnetcore.server.iisintegration/2.0.2",
- "hashPath": "microsoft.aspnetcore.server.iisintegration.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rPDyGoafAZwRvovro5wzmeaOScYjehjy7yABvgMfkkiPTUeSDdtm020XR3HFU+GxCAmhU8bQhLUH0CKk9NNGDQ==",
- "path": "microsoft.aspnetcore.server.kestrel/2.0.2",
- "hashPath": "microsoft.aspnetcore.server.kestrel.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+d7WB++otIdpV10mbHsUEcPmL+676Zljsls4DUkaSB8toiYndEeK+yxXj9OsGtTCzQhv4FjLqEcgw01oA0JYbw==",
- "path": "microsoft.aspnetcore.server.kestrel.core/2.0.2",
- "hashPath": "microsoft.aspnetcore.server.kestrel.core.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Https/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v8WKn9TCiGvgocbCFDxeOj3neAgEHwfpqu/J4W2GbwprRDawFLP5XbTDjbNjo5J2UVgFH5NHaRJocNWc3raQ9g==",
- "path": "microsoft.aspnetcore.server.kestrel.https/2.0.2",
- "hashPath": "microsoft.aspnetcore.server.kestrel.https.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-25BwaKnlKHZqPnOT1De2Oe7kpwWWxb7eMrnJx2FPyN5N4rfn/3GaSC72nZzwT4us9e8vKUJP+uzo1yFEBblbXA==",
- "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.0.2",
- "hashPath": "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Libuv/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3H5R93EodGu8WsPYJwjXyDwks+nvpso6F01qPiowWU1dHpPGsY8px3XX3QTX3vPlwCXjpwvwlDXY8AT7kgBJzg==",
- "path": "microsoft.aspnetcore.server.kestrel.transport.libuv/2.0.2",
- "hashPath": "microsoft.aspnetcore.server.kestrel.transport.libuv.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Session/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-p0YokieiGsIlxNQ52kSlKmHBiEUK2VSEADdKQJcw2JoHuk4SVayDm8fgqpkoMxt+dNlr+mvjFECXI4NGxDDOnA==",
- "path": "microsoft.aspnetcore.session/2.0.2",
- "hashPath": "microsoft.aspnetcore.session.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.SpaServices/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-EQqYTbrlshzny6OY7quuLZEhUwQ3Io6Km60ns099PluwfZiRfpys+gSzEk+cfOJsHdJcKXKZT8rvLAGREJyQAQ==",
- "path": "microsoft.aspnetcore.spaservices/2.0.3",
- "hashPath": "microsoft.aspnetcore.spaservices.2.0.3.nupkg.sha512"
- },
- "Microsoft.AspNetCore.StaticFiles/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8G/Dl4sjp7GWOlh0YoGTGEeAH9fkwiEoPFmm/s4jZUxeTIOJkTCKJAP8xC2sYgcORLMZFINQI4kdGp6Wm4odPw==",
- "path": "microsoft.aspnetcore.staticfiles/2.0.2",
- "hashPath": "microsoft.aspnetcore.staticfiles.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.WebSockets/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VUZCI/lAfPNU3KneT6xezPnUDUPnP0RzAFAcR+zNebBQ584STXLgy04PSeKMy5UgUzihln5N8xLLfM7bZSHlvQ==",
- "path": "microsoft.aspnetcore.websockets/2.0.2",
- "hashPath": "microsoft.aspnetcore.websockets.2.0.2.nupkg.sha512"
- },
- "Microsoft.AspNetCore.WebUtilities/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dvn80+p1AIQKOfJ+VrOhVMUktWRvJs7Zb+UapZGBNSyrCzTsYiXbb9C7Mzw+nGj5UevnLNFcWWc7BUlLMD2qpw==",
- "path": "microsoft.aspnetcore.webutilities/2.0.2",
- "hashPath": "microsoft.aspnetcore.webutilities.2.0.2.nupkg.sha512"
- },
- "Microsoft.Azure.KeyVault/2.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-A82ESUdfLz2wMhYuPxrwf/fA7JVt3IARgeMCG3TsaLtxUxa9RBKX3f0zdnKmvBvJ/u1/5g03OLR26GPekqY5HQ==",
- "path": "microsoft.azure.keyvault/2.3.2",
- "hashPath": "microsoft.azure.keyvault.2.3.2.nupkg.sha512"
- },
- "Microsoft.Azure.KeyVault.WebKey/2.0.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MVSYao62R9rwl9KF+IsJm+XBLupJj1ma2lfwNeFlSWziXGAopnYK+YkDWqABOqNIV9kpza/MvNBxITzhlJIyIw==",
- "path": "microsoft.azure.keyvault.webkey/2.0.7",
- "hashPath": "microsoft.azure.keyvault.webkey.2.0.7.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==",
- "path": "microsoft.codeanalysis.analyzers/1.1.0",
- "hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/2.3.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nGATpUW09zOGFLQZ3JXIObJyNlk2dvgNgC7Kh+iDpxGWgKHSgpHMXnGmXUecJa4CNi0HhUENKSnEack1aF/MwQ==",
- "path": "microsoft.codeanalysis.common/2.3.1",
- "hashPath": "microsoft.codeanalysis.common.2.3.1.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/2.3.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fvO7Q8FqzmWX8gzzCk4Bf34Ms06bZ6r/A9tUz1ndj3ioitAxSC2QUXbUQOJ4ExzohTtXhczJAFirgs//Nasz6A==",
- "path": "microsoft.codeanalysis.csharp/2.3.1",
- "hashPath": "microsoft.codeanalysis.csharp.2.3.1.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Razor/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uDtaWOCEZ9+2bEYA8cmlogajruQziTqRDKEZ2zt/2BViRm/sFUovHHbmYnBp5W1cqVEPz6M8R6dA1Qqv67fhfA==",
- "path": "microsoft.codeanalysis.razor/2.0.2",
- "hashPath": "microsoft.codeanalysis.razor.2.0.2.nupkg.sha512"
- },
- "Microsoft.CSharp/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vvVR/B08YVghQ4jHEloxqw2ZWzEGE1AOA5E0DioUM3ujbXz6FD3AfB/0Jl2ohJPd0nXYGwmPe1En6HTsSriq1A==",
- "path": "microsoft.csharp/4.4.0",
- "hashPath": "microsoft.csharp.4.4.0.nupkg.sha512"
- },
- "Microsoft.Data.Edm/5.8.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P/d8DxA6MFHroBEn/jW0LMQSIKnsRRibrZtRCLfov2boQfrQ1R1BVgkJ5oIhcQsOm0l4POv+I2ny6RBsclNbOw==",
- "path": "microsoft.data.edm/5.8.2",
- "hashPath": "microsoft.data.edm.5.8.2.nupkg.sha512"
- },
- "Microsoft.Data.OData/5.8.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oEIUtXcRiKogF0yZxA+QdgxoBJ34989qL/5xOSrTfxAhzNJV5Hw6DRdWgUCpeXFMoJUQx7ptbHCN+My/LCQfsg==",
- "path": "microsoft.data.odata/5.8.2",
- "hashPath": "microsoft.data.odata.5.8.2.nupkg.sha512"
- },
- "Microsoft.Data.Sqlite/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jJXCZniFDwHGnRYd9WD3vswQCyIXk0/gsne9TLFWIpy6oK4kAcKD1BTncaHQmVg0pp/YmRBKXVIh4yXSHqbsGQ==",
- "path": "microsoft.data.sqlite/2.0.1",
- "hashPath": "microsoft.data.sqlite.2.0.1.nupkg.sha512"
- },
- "Microsoft.Data.Sqlite.Core/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lkUOJRJEXnXAxWKhCSFjYKLhuopw+m6ClML4cF1Rt/Ek8bBUW6hn1xAHCZ9KFqkcNOpBS7rQ6nZBaSXU3mgbOQ==",
- "path": "microsoft.data.sqlite.core/2.0.1",
- "hashPath": "microsoft.data.sqlite.core.2.0.1.nupkg.sha512"
- },
- "Microsoft.DotNet.PlatformAbstractions/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cXgVdJmW3fLwmSxsv0RlTe4BIKs6slVXV5xRvsO4CV4aUeY67GelaujxY/lP5yVlaMjMM22pXKbKtUY9x050Mw==",
- "path": "microsoft.dotnet.platformabstractions/2.0.3",
- "hashPath": "microsoft.dotnet.platformabstractions.2.0.3.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-TjlP5PH687P1pHVUEUlXeoywd5iEXLHxOKfKfVIWsesXGq+hSz0Z8/afWo3mvuBIR0yLMc4Dfh5baTTKzYDQKw==",
- "path": "microsoft.entityframeworkcore/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Design/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cEqvei8LTLxJavvOH5OwQRjtfAlJF6RhnUyetv3M7hByXktkpedvhykH0TeJS0IQMfP3pU+9qclQpyrq9Ej4lQ==",
- "path": "microsoft.entityframeworkcore.design/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.design.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.InMemory/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ElVLhS/kaVByeh1I7mg9AcUVfZ/k55SMCW6BRRoXIMaAyUHw9n3EWhK7ThdBLp1Dek0UBwSD593jxGis2BqUGA==",
- "path": "microsoft.entityframeworkcore.inmemory/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.inmemory.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tuB7TVi2VM5nmwmo2jXOOo5kH/iDaiGW2pHi8xHdy0YTj/ywNP8adobu35u4CabPaH88di6SLveeAdVi80vffw==",
- "path": "microsoft.entityframeworkcore.relational/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.relational.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Sqlite/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+Oc8jLtctAWzhZTao+oKNdS90fmEstirP/OAwfujtgQDQW0ktbsQwSGnNJM91fkN/fydOND5APMPG4jOdinlCA==",
- "path": "microsoft.entityframeworkcore.sqlite/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.sqlite.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Sqlite.Core/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Fgal6xyOon1rzKuk5kTCfsanSUN203BA6I6OFhEPIWbRDkBNjNVGlXg0C7N0gtgvq1OeByQj8H2Jni6VHk032Q==",
- "path": "microsoft.entityframeworkcore.sqlite.core/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.sqlite.core.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.SqlServer/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-368mmlJFauVm1ICn+plKJNm6KSX2jRTuK3zwomZwDAlzxO5kr8MMmbr60e6QM68wk8u0bdQBzTwO7GzfEnzWLA==",
- "path": "microsoft.entityframeworkcore.sqlserver/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.sqlserver.2.0.2.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Tools/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GBgyVDSZhYwja4cy+muVBocjlgbLhV5m29J3tHHf02utM8zo1jDSuarDGKV0O+kj5d3bgBuHe+0/Tf78GanTHQ==",
- "path": "microsoft.entityframeworkcore.tools/2.0.2",
- "hashPath": "microsoft.entityframeworkcore.tools.2.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NobDNbehAbMYUApMXLd9XSt9UznGCgPW9PW4Ybe6S5jKqkd5RcTnaKm0FODcgyx+7B1hIGx7dZwa1bVdiSbHAg==",
- "path": "microsoft.extensions.caching.abstractions/2.0.1",
- "hashPath": "microsoft.extensions.caching.abstractions.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GVtJD0uhoLOkXBfYZAIRDexEr2qg0QHbUo3CIjmtoGpFWHuGHTvjGqRlybMKIYTpt0BxKpXMn4fqhS4ff10llA==",
- "path": "microsoft.extensions.caching.memory/2.0.1",
- "hashPath": "microsoft.extensions.caching.memory.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Redis/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6Zo0CnNFiNBaeac8cmPCaA5Gs2LMQHoYeyaz4Il03NTa0sTEnHUoiXcujozkJmJbQjbSb7qFhw2DATzwIfEvMA==",
- "path": "microsoft.extensions.caching.redis/2.0.1",
- "hashPath": "microsoft.extensions.caching.redis.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.SqlServer/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mSQKQBhjfBeYU7cqG3wU/mgMqmwbRKy/ZkPxrPnZQ55NhnT3QbGNDOgD9CxJ1j8FMWBYcprxAbSGOM98ab+C5Q==",
- "path": "microsoft.extensions.caching.sqlserver/2.0.1",
- "hashPath": "microsoft.extensions.caching.sqlserver.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d9fFoEYRaBccu/Z2B2BZCil/lEnmoVQ8YiY1dGViERh0qWjixgR9y/M7EGaoTrAunnmvAmfwxuij/gCq6WvL1w==",
- "path": "microsoft.extensions.configuration/2.0.1",
- "hashPath": "microsoft.extensions.configuration.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-stGq1c136UUYOsgQuJ5fjiygqZhgt6Kj0pm4iL0qq1MICNgEKTJ4tnbXLkZfrDHDz+olsT2VY9cVv2yshg+m+A==",
- "path": "microsoft.extensions.configuration.abstractions/2.0.1",
- "hashPath": "microsoft.extensions.configuration.abstractions.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.AzureKeyVault/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qVg14LrUn1xMS9D3meFJZGQHB13hu63AWF+eCRI/BKFSuP1t24wK4bVjRiLOfgeaBa/7uu168BTpVcAC62OD+w==",
- "path": "microsoft.extensions.configuration.azurekeyvault/2.0.1",
- "hashPath": "microsoft.extensions.configuration.azurekeyvault.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5I1aC5g3+zb10nbNfTEz0YVFuKgvNU4jul0iDX10Q1nVyZoj33TsoNQwcJqBzJBxwjDSSGhejhgsQduREhFm6g==",
- "path": "microsoft.extensions.configuration.binder/2.0.1",
- "hashPath": "microsoft.extensions.configuration.binder.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.CommandLine/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xbA72loiTC3MK89cJZBEEbl4jWi8ugUJjd6Ak4jJN7JXerVURpWhSJ7engn+gZKYwvzdbt0vkr+/u015Pe4gqA==",
- "path": "microsoft.extensions.configuration.commandline/2.0.1",
- "hashPath": "microsoft.extensions.configuration.commandline.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ex3C6fEpePj3pekjjDTbSY/+IR371KDv+BFp6Wev/q0uPBmFN5dXlvy2M37fYmfca/VIb3rkOIqHpheWG3Iezg==",
- "path": "microsoft.extensions.configuration.environmentvariables/2.0.1",
- "hashPath": "microsoft.extensions.configuration.environmentvariables.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.FileExtensions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ig55mY9fpfvVbQLuiT1ETjpYuI33RiSfhdon0nfl3m9cRSCJrrq2X7MXus2ihh2eW3ev+jPBHWNOFjN0YRN3cg==",
- "path": "microsoft.extensions.configuration.fileextensions/2.0.1",
- "hashPath": "microsoft.extensions.configuration.fileextensions.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Ini/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VexwTBlONJ42fDEdFBOg3A40wfEqlnWI2OQnUBmVs/dsoyTiMdPi1fgCJ1aUEYsXvfbkttF3qkudKsFbLw4rBA==",
- "path": "microsoft.extensions.configuration.ini/2.0.1",
- "hashPath": "microsoft.extensions.configuration.ini.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Json/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RIh+RKEFkLDNeOhwPasPslqVDr72NVedR0rNKwxWnCZftAlSa4jmKg7nCacB4pU7rK2TMgl85ZaHZmrxC7Rcew==",
- "path": "microsoft.extensions.configuration.json/2.0.1",
- "hashPath": "microsoft.extensions.configuration.json.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.UserSecrets/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MZMMOV7cMHnT7bAfcF2NmLywHXcw3krNtrPmjTO/CoimDl4dJbd7YhM29S5EFkr10nwMslH3VQtMccSVKGAcyw==",
- "path": "microsoft.extensions.configuration.usersecrets/2.0.1",
- "hashPath": "microsoft.extensions.configuration.usersecrets.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Xml/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BSbH2kXBKej8Hp8OixjAqx6nD2il8inYYDD6qPkSkralLe1X2Kiv5jzzlDWUvh9DZ51wrLDoWMvY7FGBhU6Sfw==",
- "path": "microsoft.extensions.configuration.xml/2.0.1",
- "hashPath": "microsoft.extensions.configuration.xml.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-wakg18gHYiUL1pcjjyZuYk6OvDpbSw1E7IWxm78TMepsr+gQ8W0tWzuRm0q/9RFblngwPwo15rrgZSUV51W5Iw==",
- "path": "microsoft.extensions.dependencyinjection/2.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.2.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eUdJ0Q/GfVyUJc0Jal5L1QZLceL78pvEM9wEKcHeI24KorqMDoVX+gWsMGLulQMfOwsUaPtkpQM2pFERTzSfSg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/2.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OiNYN/QeZLuYcn4CvYrOmYgODPB1Jpqft+cT4F3Hkq5poj+1DLfbIBftMI/Pn8J7DyHhYeBMLxJUuugjvk/Fuw==",
- "path": "microsoft.extensions.dependencymodel/2.0.3",
- "hashPath": "microsoft.extensions.dependencymodel.2.0.3.nupkg.sha512"
- },
- "Microsoft.Extensions.DiagnosticAdapter/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w8nux+yppIAD3ouzLz3CEtUMj03WIQ9FAmuR6IhrCpQDcoMtajlZIkZLbryJE1jdF1wkewLLM2LpXasfu7HzQw==",
- "path": "microsoft.extensions.diagnosticadapter/2.0.1",
- "hashPath": "microsoft.extensions.diagnosticadapter.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Abstractions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Gzc5yXvwIrKpdti0Ev4jC0inVrGZpI86eLZorMVRqAPXowR8JDRbcHjhmID2EqA4rdhL/IsfD42+4upKpHULDw==",
- "path": "microsoft.extensions.fileproviders.abstractions/2.0.1",
- "hashPath": "microsoft.extensions.fileproviders.abstractions.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Composite/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bgAUXH3T/Y1R5bCthCiZVzEX4spvNeIHRv6+Jr4BJMxPVSFm/8er7xvywd2NCayv94frKZdDGP3mjAQZenZDxQ==",
- "path": "microsoft.extensions.fileproviders.composite/2.0.1",
- "hashPath": "microsoft.extensions.fileproviders.composite.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Embedded/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PH1oo04WCbKy42aga6bC4phl1rZfbFsZLuozJN1LGUUZTCnycUAZzCqG6MNRCgRiHg2bPexiQ15708vSwnuBHQ==",
- "path": "microsoft.extensions.fileproviders.embedded/2.0.1",
- "hashPath": "microsoft.extensions.fileproviders.embedded.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Physical/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h+6bcXYlGldl7BUhnQKFxL2sMfeg9Gr/AuVexYOCYWmzDsc4iyUoy3NL7i2vkG209wd0ZXf+pZzRDwGPFhmlSw==",
- "path": "microsoft.extensions.fileproviders.physical/2.0.1",
- "hashPath": "microsoft.extensions.fileproviders.physical.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.FileSystemGlobbing/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-q7KsG2kjwo2Ps0WdV7MFh64cQS0UHikV8qv4HQrUfWQyxim5vNmLzAbuduarS9QWbhRHTtUanx+ohyAQdumdnw==",
- "path": "microsoft.extensions.filesystemglobbing/2.0.1",
- "hashPath": "microsoft.extensions.filesystemglobbing.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Hosting.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gs+TNXCW05ujojZlQj2i9Fj00IAhXrgLZtgGM0XxoSoffgCGfGh7jX4kB/dnaot3xVdw84L1nE98bwQN7+kK8A==",
- "path": "microsoft.extensions.hosting.abstractions/2.0.2",
- "hashPath": "microsoft.extensions.hosting.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Identity.Core/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Lx5bFoGV2q83SdNh6SrzZczngu/FQ8N/VegNxyEl8h+UwFQJrVj9S3Ukp5Xd1jdFaRT4Xus8P8aGBdy8V7Iwew==",
- "path": "microsoft.extensions.identity.core/2.0.2",
- "hashPath": "microsoft.extensions.identity.core.2.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Identity.Stores/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9BTVdltrgFh+O69zm4fHZ50PV+GDEdGqcp+KMlbrOW+RmAgbVkQvMV25ZZChUAlT/uQb7BnAF1h5+2xWEyNQzA==",
- "path": "microsoft.extensions.identity.stores/2.0.2",
- "hashPath": "microsoft.extensions.identity.stores.2.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Localization/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rT21gcQRQjpITr7GfpXSbUi+87WP2JEU1TrJjAS0jQSBEWwylzFNeokHYp/hQw9DHXhGHeqYSUXyrKE06XdsdA==",
- "path": "microsoft.extensions.localization/2.0.2",
- "hashPath": "microsoft.extensions.localization.2.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Localization.Abstractions/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-akovmABJPmBjQfomzHywPGBjelgRazTBj2RV6+EBnALt5T639CBF+npHKM2z3Ms6HR9e50sDvAyAcnKgVOTdgA==",
- "path": "microsoft.extensions.localization.abstractions/2.0.2",
- "hashPath": "microsoft.extensions.localization.abstractions.2.0.2.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FKeB93fwdaEf2EXpxczDjE1CkWoAIrijiG1RZeDyD0OvbC0yjTVp1kCJTLYPrFil9JveJzvgXpL7BMNil9Ht3w==",
- "path": "microsoft.extensions.logging/2.0.1",
- "hashPath": "microsoft.extensions.logging.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DzCKlMdXOysXFDBXgNnxFlpSj5AOdMkUqKEjKT1n+japTxhQ3e3MaGODZGtbIj9ezykRs9oEBGmdSHHfh4oNVA==",
- "path": "microsoft.extensions.logging.abstractions/2.0.1",
- "hashPath": "microsoft.extensions.logging.abstractions.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.AzureAppServices/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v+JIz8XjA8l97lCMaEs+FcbG435QXCzHXEfPG47puYFiRbzsuphqlBqa0I3dsejhoeMfdroi7xRz4ODlmkv6iw==",
- "path": "microsoft.extensions.logging.azureappservices/2.0.1",
- "hashPath": "microsoft.extensions.logging.azureappservices.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Configuration/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xIA/im+xMO80xHvfFCa3IQ6/L20pHl7MjyEZjKQKHRNsZgJIk4e8dfdHGeNaXChuTUycQ0EBdyN4kXUFqbAk3A==",
- "path": "microsoft.extensions.logging.configuration/2.0.1",
- "hashPath": "microsoft.extensions.logging.configuration.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Console/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lbAWSy/Iwj584V6TAcKK8DU37IDOO7l+fMfktTsQWs14a4NXF/S0DjdbeJ5QoGR3aQiIlKJvNoCPoKLO9XeBMQ==",
- "path": "microsoft.extensions.logging.console/2.0.1",
- "hashPath": "microsoft.extensions.logging.console.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Debug/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Cvsb3YWmuy7R/CRCAjoTVHDG3GDDVROfp3UWjo7CnxGX2Czc89AUPjxH5JFOd7xOplj12BX/KgU5m1KO3VOJIg==",
- "path": "microsoft.extensions.logging.debug/2.0.1",
- "hashPath": "microsoft.extensions.logging.debug.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.EventSource/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LSihUUWSccjvDXrEwLS5f0RqesSCQ9W2bkTKr+AKXoGEXggzdHvcT3AmJbxWmNHVygkE+fPNMT9wHLeGD/Eu9A==",
- "path": "microsoft.extensions.logging.eventsource/2.0.1",
- "hashPath": "microsoft.extensions.logging.eventsource.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.TraceSource/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9vUL4uDDI/cfXsaZurijJgsXxSx7v0bugaPeWZPhFzynm1nvPJTZ4nAWXBHHLgVQLA7msFkmm97LKdVKecC+AQ==",
- "path": "microsoft.extensions.logging.tracesource/2.0.1",
- "hashPath": "microsoft.extensions.logging.tracesource.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.ObjectPool/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-drOmgNZCJiNEqFM/TvyqwtogS8wqoWGQCW5KB/CVGKL6VXHw8OOMdaHyspp8HPstP9UDnrnuq+8eaCaAcQg6tA==",
- "path": "microsoft.extensions.objectpool/2.0.0",
- "hashPath": "microsoft.extensions.objectpool.2.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gxo2Bgg4D6+uyQz1Wdj1FAcBD3870+t37YjplyQXmjLzPWaoU89AIg3AXBXw4fR9CCdWLputZBLm3YaBx+oDFQ==",
- "path": "microsoft.extensions.options/2.0.1",
- "hashPath": "microsoft.extensions.options.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-O1/MZSjWHdo4NNBD83ibRi83kKkbqbe+XTuoQtyk9NpfzYO6GoeEA+5ClEMJ56BO9DCNZb5SCBCPdlt2MdLFfw==",
- "path": "microsoft.extensions.options.configurationextensions/2.0.1",
- "hashPath": "microsoft.extensions.options.configurationextensions.2.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.PlatformAbstractions/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-H6ZsQzxYw/6k2DfEQRXdC+vQ6obd6Uba3uGJrnJ2vG4PRXjQZ7seB13JdCfE72abp8E6Fk3gGgDzfJiLZi5ZpQ==",
- "path": "microsoft.extensions.platformabstractions/1.1.0",
- "hashPath": "microsoft.extensions.platformabstractions.1.1.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ukg53qNlqTrK38WA30b5qhw0GD7y3jdI9PHHASjdKyTcBHTevFM2o23tyk3pWCgAV27Bbkm+CPQ2zUe1ZOuYSA==",
- "path": "microsoft.extensions.primitives/2.0.0",
- "hashPath": "microsoft.extensions.primitives.2.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.WebEncoders/2.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uRVexwgmsT3kfLKYb1mVOh96DIfo13Jp0rXvVZjFLEL29TV9K3GUeM/qTgm5P+hncWCMU6KOmx/QA+954pBMtw==",
- "path": "microsoft.extensions.webencoders/2.0.1",
- "hashPath": "microsoft.extensions.webencoders.2.0.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Clients.ActiveDirectory/3.14.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GlyzF4FWsn3LXC6rrzw6Yg2nMbGLx+7JS9a6Z8n7jhqPa5cMiNEX01tBUO1v3A9p1mk+gQzHWJheAsSpOLp/ew==",
- "path": "microsoft.identitymodel.clients.activedirectory/3.14.1",
- "hashPath": "microsoft.identitymodel.clients.activedirectory.3.14.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Logging/1.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j7t22EsDOuo0IXqAbp6ijdB1GuaY8cu3YoPNZpymOhUMTVC+wRTV0IHqxL31HacCnJHU/igsqe70fDKZgZu3oA==",
- "path": "microsoft.identitymodel.logging/1.1.4",
- "hashPath": "microsoft.identitymodel.logging.1.1.4.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Protocols/2.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9aefRN9sL8XZo90Aix88IHHpAvfBl6UOiYpcKHiXbCYE2nB+zA3B8dZdNMOUH4pqXdnpYrHRDQZ2k7A4/CUgTQ==",
- "path": "microsoft.identitymodel.protocols/2.1.4",
- "hashPath": "microsoft.identitymodel.protocols.2.1.4.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/2.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LF8JcG9BqGRwVjhu/IebuZQer6TJGDv2uxNnmg2Zkzh/d+MIC1ShsC1U3U7pVaw03SKyXmCgYm+JG0WM0mcOUw==",
- "path": "microsoft.identitymodel.protocols.openidconnect/2.1.4",
- "hashPath": "microsoft.identitymodel.protocols.openidconnect.2.1.4.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Tokens/5.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SsJbZVPvjSlKFDAQmR2wpL6ZD/vCFlIsf0jxRlBJwyzKXZy3Wi/Xo+fE2MzAerLsJgG1UCdtplRwqDyq1euayw==",
- "path": "microsoft.identitymodel.tokens/5.1.4",
- "hashPath": "microsoft.identitymodel.tokens.5.1.4.nupkg.sha512"
- },
- "Microsoft.Net.Http.Headers/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hNhJU+Sd7Ws/yrBnakUWKWMyGiDUJE5lTkJfWe5xPL8YGTiL6Es07H9CcTyaYYwVlgW06uDVN0YhhH+t4EjdCw==",
- "path": "microsoft.net.http.headers/2.0.2",
- "hashPath": "microsoft.net.http.headers.2.0.2.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
- "path": "microsoft.netcore.platforms/2.0.0",
- "hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.Rest.ClientRuntime/2.3.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Hj96LBoCwKY2VQKfSCVGGPV1sSumVjuYnrlpBwL4JSTnSK4b6ZxjLtXj8LgmKav8xJ2gps+UN7eI3hHVFKvBFw==",
- "path": "microsoft.rest.clientruntime/2.3.8",
- "hashPath": "microsoft.rest.clientruntime.2.3.8.nupkg.sha512"
- },
- "Microsoft.Rest.ClientRuntime.Azure/3.3.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6u8JIuvrztse4tPOcvNzAJuzGBP0uY+Ijggk8ZYhp0siGEZ1XfZylf1vpNGUicvwcrhhoIgDW73Z1L6QGssr2g==",
- "path": "microsoft.rest.clientruntime.azure/3.3.7",
- "hashPath": "microsoft.rest.clientruntime.azure.3.3.7.nupkg.sha512"
- },
- "Microsoft.VisualStudio.Web.BrowserLink/2.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZS/yWRNbOseQefHnPewOqSuh9lvwVItikPNw6hhm0MKQRFkaTHw7NSb+SqDYM4LBzgx5uvkz3f3kHLZg9AgMFw==",
- "path": "microsoft.visualstudio.web.browserlink/2.0.2",
- "hashPath": "microsoft.visualstudio.web.browserlink.2.0.2.nupkg.sha512"
- },
- "Microsoft.Win32.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
- "path": "microsoft.win32.primitives/4.3.0",
- "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
- },
- "Microsoft.Win32.Registry/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dA36TlNVn/XfrZtmf0fiI/z1nd3Wfp2QVzTdj26pqgP9LFWq0i1hYEUAW50xUjGFYn1+/cP3KGuxT2Yn1OUNBQ==",
- "path": "microsoft.win32.registry/4.4.0",
- "hashPath": "microsoft.win32.registry.4.4.0.nupkg.sha512"
- },
- "NETStandard.Library/1.6.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
- "path": "netstandard.library/1.6.1",
- "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
- },
- "Newtonsoft.Json/10.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ebWzW9j2nwxQeBo59As2TYn7nYr9BHicqqCwHOD1Vdo+50HBtLPuqdiCYJcLdTRknpYis/DSEOQz5KmZxwrIAg==",
- "path": "newtonsoft.json/10.0.1",
- "hashPath": "newtonsoft.json.10.0.1.nupkg.sha512"
- },
- "Newtonsoft.Json.Bson/1.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
- "path": "newtonsoft.json.bson/1.0.1",
- "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
- },
- "Remotion.Linq/2.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IJn0BqkvwEDpP+2qjvci7n4/a9f7DhKESLWb2/uG4xQh3rTkGTBUz69bI4IivCoKkTFAqjXxYDZw2K/npohjsw==",
- "path": "remotion.linq/2.1.1",
- "hashPath": "remotion.linq.2.1.1.nupkg.sha512"
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "path": "runtime.native.system/4.3.0",
- "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
- "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
- "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
- },
- "runtime.native.System.IO.Compression/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
- "path": "runtime.native.system.io.compression/4.3.0",
- "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "path": "runtime.native.system.net.http/4.3.0",
- "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Net.Security/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==",
- "path": "runtime.native.system.net.security/4.3.0",
- "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "path": "runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "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.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
- "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
- "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
- "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
- },
- "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
- "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
- "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
- },
- "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
- "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
- "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
- },
- "SQLitePCLRaw.bundle_green/1.1.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Kw+n4CUhQ8S4YAPmpRUldO8S7c4LU7HHukJF0v5Sfggf8Ia9YVdIh0dYkMvKvS+DTX+OBORSMqPM0CGfAzFtVA==",
- "path": "sqlitepclraw.bundle_green/1.1.7",
- "hashPath": "sqlitepclraw.bundle_green.1.1.7.nupkg.sha512"
- },
- "SQLitePCLRaw.core/1.1.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-u9k9ZFkyTU6CVyXWpRuuXOvKi/cy/xt1oGKVSW8aUKcTL4RdH34yFNtVykEeiR68ojIEvmoZfL51h/xx2IQk5g==",
- "path": "sqlitepclraw.core/1.1.7",
- "hashPath": "sqlitepclraw.core.1.1.7.nupkg.sha512"
- },
- "SQLitePCLRaw.lib.e_sqlite3.linux/1.1.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KRqMd1qLwJ4pzPybj8q95s+wV6jby5F0O/rp0vw3wa2Z2wHxRm0VqxS2Sejlr7Ctz+LxSr8DpNg1l1u6n/PAPA==",
- "path": "sqlitepclraw.lib.e_sqlite3.linux/1.1.7",
- "hashPath": "sqlitepclraw.lib.e_sqlite3.linux.1.1.7.nupkg.sha512"
- },
- "SQLitePCLRaw.lib.e_sqlite3.osx/1.1.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hdZx1DKHbDi4li6abmJ+A29mxY8D6BcM0s8VMT8p4MWEyrj54CZFUm402jTV6OgZCsFGkbRFnuFdBXf4vSDO7g==",
- "path": "sqlitepclraw.lib.e_sqlite3.osx/1.1.7",
- "hashPath": "sqlitepclraw.lib.e_sqlite3.osx.1.1.7.nupkg.sha512"
- },
- "SQLitePCLRaw.lib.e_sqlite3.v110_xp/1.1.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-roIdTH4a4iFa08HOwTWnzj2QYBIpSZRYfLSvHjtbH67I4DSWregrd4jkSnoOuwC5GHG08FNahBfEx3HAsVqW+g==",
- "path": "sqlitepclraw.lib.e_sqlite3.v110_xp/1.1.7",
- "hashPath": "sqlitepclraw.lib.e_sqlite3.v110_xp.1.1.7.nupkg.sha512"
- },
- "SQLitePCLRaw.provider.e_sqlite3.netstandard11/1.1.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Zdug2wETm6847337EtD8MoCAtOdwM6prEXL/UsJ97Zxvoeyk/gUpdtuFNBxgJzceuty0jymjxm5yur5QajdApg==",
- "path": "sqlitepclraw.provider.e_sqlite3.netstandard11/1.1.7",
- "hashPath": "sqlitepclraw.provider.e_sqlite3.netstandard11.1.1.7.nupkg.sha512"
- },
- "StackExchange.Redis.StrongName/1.2.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qrfSB1BnmM17V20A4yvvNA0HNiDgnBd/CcjaeMKMA4qtup1uuBUMyhl20oj31fRVo71E/fXTbmQCuM9ytBJs6w==",
- "path": "stackexchange.redis.strongname/1.2.4",
- "hashPath": "stackexchange.redis.strongname.1.2.4.nupkg.sha512"
- },
- "System.AppContext/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
- "path": "system.appcontext/4.3.0",
- "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
- },
- "System.Buffers/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AwarXzzoDwX6BgrhjoJsk6tUezZEozOT5Y9QKF94Gl4JK91I4PIIBkBco9068Y9/Dra8Dkbie99kXB8+1BaYKw==",
- "path": "system.buffers/4.4.0",
- "hashPath": "system.buffers.4.4.0.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "path": "system.collections.concurrent/4.3.0",
- "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
- },
- "System.Collections.Immutable/1.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-71hw5RUJRu5+q/geUY69gpXD8Upd12cH+F3MwpXV2zle7Bqqkrmc1JblOTuvUcgmdnUtQvBlV5e1d6RH+H2lvA==",
- "path": "system.collections.immutable/1.4.0",
- "hashPath": "system.collections.immutable.1.4.0.nupkg.sha512"
- },
- "System.Collections.NonGeneric/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
- "path": "system.collections.nongeneric/4.3.0",
- "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
- },
- "System.Collections.Specialized/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
- "path": "system.collections.specialized/4.3.0",
- "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
- "path": "system.componentmodel/4.3.0",
- "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel.Annotations/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-29K3DQ+IGU7LBaMjTo7SI7T7X/tsMtLvz1p56LJ556Iu0Dw3pKZw5g8yCYCWMRxrOF0Hr0FU0FwW0o42y2sb3A==",
- "path": "system.componentmodel.annotations/4.4.0",
- "hashPath": "system.componentmodel.annotations.4.4.0.nupkg.sha512"
- },
- "System.ComponentModel.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
- "path": "system.componentmodel.primitives/4.3.0",
- "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel.TypeConverter/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
- "path": "system.componentmodel.typeconverter/4.3.0",
- "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
- },
- "System.Console/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
- "path": "system.console/4.3.0",
- "hashPath": "system.console.4.3.0.nupkg.sha512"
- },
- "System.Data.SqlClient/4.4.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-D1hEOS1oPLJ6WcGCzpTWe8SauWVxnDoDTUWhv5XCNdRm/QeSUk4BQ3ZDe7BH+zNVHDBkPYjVzpVjnCl43eOSGg==",
- "path": "system.data.sqlclient/4.4.3",
- "hashPath": "system.data.sqlclient.4.4.3.nupkg.sha512"
- },
- "System.Diagnostics.Contracts/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eelRRbnm+OloiQvp9CXS0ixjNQldjjkHO4iIkR5XH2VIP8sUB/SIpa1TdUW6/+HDcQ+MlhP3pNa1u5SbzYuWGA==",
- "path": "system.diagnostics.contracts/4.3.0",
- "hashPath": "system.diagnostics.contracts.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/4.4.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-U/KcC19fyLsPN1GLmeU2zQq15MMVcPwMOYPADVo1+WIoJpvMHxrzvl+BLLZwTEZSneGwaPFZ0aWr0nJ7B7LSdA==",
- "path": "system.diagnostics.diagnosticsource/4.4.1",
- "hashPath": "system.diagnostics.diagnosticsource.4.4.1.nupkg.sha512"
- },
- "System.Diagnostics.FileVersionInfo/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==",
- "path": "system.diagnostics.fileversioninfo/4.3.0",
- "hashPath": "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.StackTrace/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==",
- "path": "system.diagnostics.stacktrace/4.3.0",
- "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tools/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
- "path": "system.diagnostics.tools/4.3.0",
- "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "path": "system.diagnostics.tracing/4.3.0",
- "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
- },
- "System.Dynamic.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
- "path": "system.dynamic.runtime/4.3.0",
- "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "path": "system.globalization.calendars/4.3.0",
- "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "path": "system.globalization.extensions/4.3.0",
- "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
- },
- "System.IdentityModel.Tokens.Jwt/5.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hLUU1N99aL9uyxiTraBnCKlpUKsbP/+5ygD7cswspH9/+M7fAAL0hRzt2aA4w7VEQlSSiu8j+xWFk3NRcqhfQQ==",
- "path": "system.identitymodel.tokens.jwt/5.1.4",
- "hashPath": "system.identitymodel.tokens.jwt.5.1.4.nupkg.sha512"
- },
- "System.Interactive.Async/3.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hZccYiIE5RS1/J9Tb/BNtosAGVggdlsJm4Ojdu+gDV0p4AIi+LUfUogMKkRacljQEJd2AG6vYzvcjhQFkqoZmw==",
- "path": "system.interactive.async/3.1.1",
- "hashPath": "system.interactive.async.3.1.1.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.Compression/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
- "path": "system.io.compression/4.3.0",
- "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
- },
- "System.IO.Compression.ZipFile/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
- "path": "system.io.compression.zipfile/4.3.0",
- "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "path": "system.io.filesystem/4.3.0",
- "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "path": "system.io.filesystem.primitives/4.3.0",
- "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "path": "system.linq.expressions/4.3.0",
- "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
- },
- "System.Linq.Queryable/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
- "path": "system.linq.queryable/4.0.1",
- "hashPath": "system.linq.queryable.4.0.1.nupkg.sha512"
- },
- "System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
- "path": "system.net.http/4.3.0",
- "hashPath": "system.net.http.4.3.0.nupkg.sha512"
- },
- "System.Net.NameResolution/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
- "path": "system.net.nameresolution/4.3.0",
- "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "path": "system.net.primitives/4.3.0",
- "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
- },
- "System.Net.Security/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IgJKNfALqw7JRWp5LMQ5SWHNKvXVz094U6wNE3c1i8bOkMQvgBL+MMQuNt3xl9Qg9iWpj3lFxPZEY6XHmROjMQ==",
- "path": "system.net.security/4.3.0",
- "hashPath": "system.net.security.4.3.0.nupkg.sha512"
- },
- "System.Net.Sockets/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
- "path": "system.net.sockets/4.3.0",
- "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
- },
- "System.Numerics.Vectors/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UiLzLW+Lw6HLed1Hcg+8jSRttrbuXv7DANVj0DkL9g6EnnzbL75EB7EWsw5uRbhxd/4YdG8li5XizGWepmG3PQ==",
- "path": "system.numerics.vectors/4.4.0",
- "hashPath": "system.numerics.vectors.4.4.0.nupkg.sha512"
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "path": "system.objectmodel/4.3.0",
- "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
- },
- "System.Private.DataContractSerialization/4.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lcqFBUaCZxPiUkA4dlSOoPZGtZsAuuElH2XHgLwGLxd7ZozWetV5yiz0qGAV2AUYOqw97MtZBjbLMN16Xz4vXA==",
- "path": "system.private.datacontractserialization/4.1.1",
- "hashPath": "system.private.datacontractserialization.4.1.1.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "path": "system.reflection.emit/4.3.0",
- "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "path": "system.reflection.extensions/4.3.0",
- "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/1.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-423hF/x1/1/aBT6hjgrp8RH2zdKOd1iTujlHisSesTW/cgv1ixUitfk23ZknVzItMm6jnwp9CBwI2P3r9jpitw==",
- "path": "system.reflection.metadata/1.5.0",
- "hashPath": "system.reflection.metadata.1.5.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "path": "system.reflection.typeextensions/4.3.0",
- "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.CompilerServices.Unsafe/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9dLLuBxr5GNmOfl2jSMcsHuteEg32BEfUotmmUkmZjpR3RpVHE8YQwt0ow3p6prwA1ME8WqDVZqrr8z6H8G+Kw==",
- "path": "system.runtime.compilerservices.unsafe/4.4.0",
- "hashPath": "system.runtime.compilerservices.unsafe.4.4.0.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
- "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
- "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "path": "system.runtime.numerics/4.3.0",
- "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Serialization.Formatters/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
- "path": "system.runtime.serialization.formatters/4.3.0",
- "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Serialization.Json/4.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+7DIJhnKYgCzUgcLbVTtRQb2l1M0FP549XFlFkQM5lmNiUBl44AfNbx4bz61xA8PzLtlYwfmif4JJJW7MPPnjg==",
- "path": "system.runtime.serialization.json/4.0.2",
- "hashPath": "system.runtime.serialization.json.4.0.2.nupkg.sha512"
- },
- "System.Runtime.Serialization.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
- "path": "system.runtime.serialization.primitives/4.3.0",
- "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
- },
- "System.Security.AccessControl/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2NRFPX/V81ucKQmqNgGBZrKGH/5ejsvivSGMRum0SMgPnJxwhuNkzVS1+7gC3R2X0f57CtwrPrXPPSe6nOp82g==",
- "path": "system.security.accesscontrol/4.4.0",
- "hashPath": "system.security.accesscontrol.4.4.0.nupkg.sha512"
- },
- "System.Security.Claims/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==",
- "path": "system.security.claims/4.3.0",
- "hashPath": "system.security.claims.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
- "path": "system.security.cryptography.cng/4.3.0",
- "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "path": "system.security.cryptography.csp/4.3.0",
- "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "path": "system.security.cryptography.encoding/4.3.0",
- "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "path": "system.security.cryptography.openssl/4.3.0",
- "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "path": "system.security.cryptography.primitives/4.3.0",
- "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Xml/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1Xubvo4i+K+DO6YzVh6vBKmCl5xx/cAoiJEze6VQ+XwVQU25KQC9pPrmniz2EbbJnmoQ5Rm2FFjHsfQAi0Rs+Q==",
- "path": "system.security.cryptography.xml/4.4.0",
- "hashPath": "system.security.cryptography.xml.4.4.0.nupkg.sha512"
- },
- "System.Security.Principal/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==",
- "path": "system.security.principal/4.3.0",
- "hashPath": "system.security.principal.4.3.0.nupkg.sha512"
- },
- "System.Security.Principal.Windows/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pP+AOzt1o3jESOuLmf52YQTF7H3Ng9hTnrOESQiqsnl2IbBh1HInsAMHYtoh75iUYV0OIkHmjvveraYB6zM97w==",
- "path": "system.security.principal.windows/4.4.0",
- "hashPath": "system.security.principal.windows.4.4.0.nupkg.sha512"
- },
- "System.Spatial/5.8.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0RfZZJ8RlrfjoBPAF6pczX4Nd2kyLM8EX1PCP5Rqs/jOhJBUPYhpXjIsVAYN7kocj9IJ9XoJWAxWgXIDtJY2Ag==",
- "path": "system.spatial/5.8.2",
- "hashPath": "system.spatial.5.8.2.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.CodePages/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
- "path": "system.text.encoding.codepages/4.4.0",
- "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
- },
- "System.Text.Encoding.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
- "path": "system.text.encoding.extensions/4.3.0",
- "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
- },
- "System.Text.Encodings.Web/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l/tYeikqMHX2MD2jzrHDfR9ejrpTTF7wvAEbR51AMvzip1wSJgiURbDik4iv/w7ZgytmTD/hlwpplEhF9bmFNw==",
- "path": "system.text.encodings.web/4.4.0",
- "hashPath": "system.text.encodings.web.4.4.0.nupkg.sha512"
- },
- "System.Text.RegularExpressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
- "path": "system.text.regularexpressions/4.3.0",
- "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SPKfFGbpQsK5Srz2Kq3URgvC90yoOyBE8H1quDA2+MAJ2HAzFmV3biOgPv2Ck3mPAvdKngo3QHi2BNwUQDRVvA==",
- "path": "system.threading.tasks.extensions/4.4.0",
- "hashPath": "system.threading.tasks.extensions.4.4.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Parallel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==",
- "path": "system.threading.tasks.parallel/4.3.0",
- "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512"
- },
- "System.Threading.Thread/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==",
- "path": "system.threading.thread/4.3.0",
- "hashPath": "system.threading.thread.4.3.0.nupkg.sha512"
- },
- "System.Threading.ThreadPool/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==",
- "path": "system.threading.threadpool/4.3.0",
- "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512"
- },
- "System.Threading.Timer/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
- "path": "system.threading.timer/4.3.0",
- "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
- },
- "System.ValueTuple/4.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BahUww/+mdP4ARCAh2RQhQTg13wYLVrBb9SYVgW8ZlrwjraGCXHGjo0oIiUfZ34LUZkMMR+RAzR7dEY4S1HeQQ==",
- "path": "system.valuetuple/4.4.0",
- "hashPath": "system.valuetuple.4.4.0.nupkg.sha512"
- },
- "System.Xml.ReaderWriter/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
- "path": "system.xml.readerwriter/4.3.0",
- "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
- },
- "System.Xml.XDocument/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
- "path": "system.xml.xdocument/4.3.0",
- "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
- },
- "System.Xml.XmlDocument/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
- "path": "system.xml.xmldocument/4.3.0",
- "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
- },
- "System.Xml.XmlSerializer/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
- "path": "system.xml.xmlserializer/4.0.11",
- "hashPath": "system.xml.xmlserializer.4.0.11.nupkg.sha512"
- },
- "System.Xml.XPath/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
- "path": "system.xml.xpath/4.3.0",
- "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512"
- },
- "System.Xml.XPath.XDocument/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==",
- "path": "system.xml.xpath.xdocument/4.3.0",
- "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512"
- },
- "webhookSharp/1.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-13BokBv/Zp6c1UBuEZPtehyOhzGWVhQ/PsqQTjn3oBZObX7dfdIPJDEoMCxdGKjpT15OnneyeWRHzR5ytxKCvQ==",
- "path": "webhooksharp/1.0.0",
- "hashPath": "webhooksharp.1.0.0.nupkg.sha512"
- },
- "WindowsAzure.Storage/8.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W6ZZ0/o7+3Qb77mRAQyLjPudHG3OMeeQ4p9yY13PUdJArmRCx2cLMm5F4tpIjJXxzHC0ew0oK7DMDGILMdfCnw==",
- "path": "windowsazure.storage/8.1.4",
- "hashPath": "windowsazure.storage.8.1.4.nupkg.sha512"
- }
- }
+ "libraries": {}
}
\ No newline at end of file
diff --git a/Vista/obj/Vista.csproj.nuget.dgspec.json b/Vista/obj/Vista.csproj.nuget.dgspec.json
index e207333..64fef66 100644
--- a/Vista/obj/Vista.csproj.nuget.dgspec.json
+++ b/Vista/obj/Vista.csproj.nuget.dgspec.json
@@ -3,6 +3,7 @@
"restore": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"/home/fede/proyectos/Final_OOP/Vista/Vista.csproj": {}
},
@@ -23,16 +24,19 @@
=======
"C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Vista\\Vista.csproj": {}
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Vista\\Vista.csproj": {}
+>>>>>>> c493033 (cosas que faltaban)
},
"projects": {
- "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj": {
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj",
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj",
"projectName": "Controladora",
- "projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Controladora\\Controladora.csproj",
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj",
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Controladora\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
@@ -50,11 +54,11 @@
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
- "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj": {
- "projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj"
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj"
},
- "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj": {
- "projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj"
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj"
}
}
}
@@ -68,16 +72,6 @@
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
- "dependencies": {
- "Emailer": {
- "target": "Package",
- "version": "[1.0.0, )"
- },
- "webhookSharp": {
- "target": "Package",
- "version": "[1.0.0, )"
- }
- },
"imports": [
"net461",
"net462",
@@ -98,14 +92,14 @@
}
}
},
- "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj": {
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj",
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj",
"projectName": "Entidades",
- "projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj",
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj",
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
@@ -154,9 +148,10 @@
}
}
},
- "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj": {
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj": {
"version": "1.0.0",
"restore": {
+<<<<<<< HEAD
<<<<<<< HEAD
"projectUniqueName": "C:\\Users\\Nacho\\Source\\Repos\\Final_OOP\\Vista\\Vista.csproj",
"projectName": "Vista",
@@ -173,10 +168,13 @@
"/home/fede/.nuget/NuGet/NuGet.Config"
=======
"projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
+=======
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj",
+>>>>>>> c493033 (cosas que faltaban)
"projectName": "Modelo",
- "projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\Modelo.csproj",
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\Modelo.csproj",
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Modelo\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Modelo\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
@@ -398,8 +396,13 @@
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
+<<<<<<< HEAD
"/home/fede/proyectos/Final_OOP/Entidades/Entidades.csproj": {
"projectPath": "/home/fede/proyectos/Final_OOP/Entidades/Entidades.csproj"
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj"
+>>>>>>> c493033 (cosas que faltaban)
}
}
}
@@ -443,6 +446,7 @@
}
}
},
+<<<<<<< HEAD
"/home/fede/proyectos/Final_OOP/Vista/Vista.csproj": {
"version": "1.0.0",
"restore": {
@@ -451,6 +455,16 @@
"projectPath": "/home/fede/proyectos/Final_OOP/Vista/Vista.csproj",
"packagesPath": "/home/fede/.nuget/packages/",
"outputPath": "/home/fede/proyectos/Final_OOP/Vista/obj/",
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Vista\\Vista.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Vista\\Vista.csproj",
+ "projectName": "Vista",
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Vista\\Vista.csproj",
+ "packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Vista\\obj\\",
+>>>>>>> c493033 (cosas que faltaban)
"projectStyle": "PackageReference",
"configFilePaths": [
"/home/fede/.nuget/NuGet/NuGet.Config"
@@ -466,6 +480,7 @@
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"projectReferences": {
+<<<<<<< HEAD
"/home/fede/proyectos/Final_OOP/Controladora/Controladora.csproj": {
"projectPath": "/home/fede/proyectos/Final_OOP/Controladora/Controladora.csproj"
},
@@ -481,6 +496,13 @@
"C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj": {
"projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj"
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj"
+ },
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj"
+>>>>>>> c493033 (cosas que faltaban)
}
}
}
diff --git a/Vista/obj/Vista.csproj.nuget.g.props b/Vista/obj/Vista.csproj.nuget.g.props
index 79c7b21..a221a5f 100644
--- a/Vista/obj/Vista.csproj.nuget.g.props
+++ b/Vista/obj/Vista.csproj.nuget.g.props
@@ -26,10 +26,13 @@
+<<<<<<< HEAD
C:\Users\fedpo\.nuget\packages\newtonsoft.json\10.0.1
C:\Users\fedpo\.nuget\packages\microsoft.entityframeworkcore.tools\2.0.2
C:\Users\fedpo\.nuget\packages\microsoft.codeanalysis.analyzers\1.1.0
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+>>>>>>> c493033 (cosas que faltaban)
\ No newline at end of file
diff --git a/Vista/obj/project.assets.json b/Vista/obj/project.assets.json
index d23d8e9..edcd6c4 100644
--- a/Vista/obj/project.assets.json
+++ b/Vista/obj/project.assets.json
@@ -4,6 +4,7 @@
"net6.0-windows7.0": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
=======
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
"Emailer/1.0.0": {
@@ -5439,14 +5440,14 @@
}
}
},
+=======
+>>>>>>> c493033 (cosas que faltaban)
"Controladora/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v6.0",
"dependencies": {
- "Emailer": "1.0.0",
"Entidades": "1.0.0",
- "Modelo": "1.0.0",
- "webhookSharp": "1.0.0"
+ "Modelo": "1.0.0"
},
"compile": {
"bin/placeholder/Controladora.dll": {}
@@ -5497,6 +5498,7 @@
"libraries": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
=======
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
"Emailer/1.0.0": {
@@ -13488,6 +13490,8 @@
"windowsazure.storage.nuspec"
]
},
+=======
+>>>>>>> c493033 (cosas que faltaban)
"Controladora/1.0.0": {
"type": "project",
"path": "../Controladora/Controladora.csproj",
@@ -13543,6 +13547,7 @@
"restore": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"projectUniqueName": "/home/fede/proyectos/Final_OOP/Vista/Vista.csproj",
"projectName": "Vista",
@@ -13568,10 +13573,13 @@
"/home/fede/.nuget/NuGet/NuGet.Config"
=======
"projectUniqueName": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Vista\\Vista.csproj",
+=======
+ "projectUniqueName": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Vista\\Vista.csproj",
+>>>>>>> c493033 (cosas que faltaban)
"projectName": "Vista",
- "projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Vista\\Vista.csproj",
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Vista\\Vista.csproj",
"packagesPath": "C:\\Users\\fedpo\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Vista\\obj\\",
+ "outputPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Vista\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\fedpo\\AppData\\Roaming\\NuGet\\NuGet.Config",
@@ -13595,6 +13603,7 @@
"projectReferences": {
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"/home/fede/proyectos/Final_OOP/Controladora/Controladora.csproj": {
"projectPath": "/home/fede/proyectos/Final_OOP/Controladora/Controladora.csproj"
@@ -13616,6 +13625,13 @@
"C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj": {
"projectPath": "C:\\Users\\fedpo\\source\\repos\\Final_OOP\\Entidades\\Entidades.csproj"
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Controladora\\Controladora.csproj"
+ },
+ "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj": {
+ "projectPath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Entidades\\Entidades.csproj"
+>>>>>>> c493033 (cosas que faltaban)
}
}
}
diff --git a/Vista/obj/project.nuget.cache b/Vista/obj/project.nuget.cache
index d709951..ef12cbc 100644
--- a/Vista/obj/project.nuget.cache
+++ b/Vista/obj/project.nuget.cache
@@ -2,6 +2,7 @@
"version": 2,
<<<<<<< HEAD
<<<<<<< HEAD
+<<<<<<< HEAD
<<<<<<< HEAD
"dgSpecHash": "NrgVcMaE+xOpA8UnmFhQwGflGRDAICnz8EffGQ+5vJrqniVecS26UDqJMYcJ2SmlijA3PT49NDmcrKADdBbkcQ==",
"success": true,
@@ -610,5 +611,11 @@
"C:\\Users\\fedpo\\.nuget\\packages\\windowsazure.storage\\8.1.4\\windowsazure.storage.8.1.4.nupkg.sha512"
],
>>>>>>> 51676e6 (feat: Cambios Varios (mirar Desc))
+=======
+ "dgSpecHash": "aNFbNdDa22Mg1jfOxDzb7N16RdBndEphnWuh1X0WK6h4YNDptQDhQUjqbwCKBPcpGb6LmtlDSztOIxoXuc2UXQ==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\fedpo\\Downloads\\Final\\Final\\Vista\\Vista.csproj",
+ "expectedPackageFiles": [],
+>>>>>>> c493033 (cosas que faltaban)
"logs": []
}
\ No newline at end of file