diff --git a/sample/MongoIdentitySample.Mvc/MongoIdentitySample.Mvc.csproj b/sample/MongoIdentitySample.Mvc/MongoIdentitySample.Mvc.csproj index 9f63488..842b80c 100644 --- a/sample/MongoIdentitySample.Mvc/MongoIdentitySample.Mvc.csproj +++ b/sample/MongoIdentitySample.Mvc/MongoIdentitySample.Mvc.csproj @@ -25,15 +25,15 @@ + + + + Always - - - - diff --git a/sample/MongoIdentitySample.Mvc/Startup.cs b/sample/MongoIdentitySample.Mvc/Startup.cs index 1c4fd58..4635d3d 100644 --- a/sample/MongoIdentitySample.Mvc/Startup.cs +++ b/sample/MongoIdentitySample.Mvc/Startup.cs @@ -41,11 +41,29 @@ namespace MongoIdentitySample.Mvc services.AddSingleton(settings); - services.AddIdentity() + services.AddAuthentication(o => + { + o.DefaultScheme = IdentityConstants.ApplicationScheme; + o.DefaultSignInScheme = IdentityConstants.ExternalScheme; + }) + .AddIdentityCookies(o => { }); + + services.AddIdentityCore() + .AddRoles() .AddMongoDbStores(settings.ConnectionString, settings.DatabaseName) .AddSignInManager() .AddDefaultTokenProviders(); + services.ConfigureApplicationCookie(options => + { + // Cookie settings + options.Cookie.HttpOnly = true; + options.ExpireTimeSpan = TimeSpan.FromMinutes(5); + + options.LoginPath = "/Account/Login"; + options.SlidingExpiration = true; + }); + var builder = services.AddRazorPages(); @@ -70,7 +88,6 @@ namespace MongoIdentitySample.Mvc if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); - app.UseBrowserLink(); } else { diff --git a/src/lib/netcoreapp3.1/AspNetCore.Identity.MongoDbCore.deps.json b/src/lib/netcoreapp3.1/AspNetCore.Identity.MongoDbCore.deps.json index 52bdd00..38dace4 100644 --- a/src/lib/netcoreapp3.1/AspNetCore.Identity.MongoDbCore.deps.json +++ b/src/lib/netcoreapp3.1/AspNetCore.Identity.MongoDbCore.deps.json @@ -6,10 +6,11 @@ "compilationOptions": {}, "targets": { ".NETCoreApp,Version=v3.1": { - "AspNetCore.Identity.MongoDbCore/1.0.0": { + "AspNetCore.Identity.MongoDbCore/3.1.0": { "dependencies": { - "Microsoft.AspNetCore.Identity": "2.2.0", - "Microsoft.Extensions.Identity.Stores": "3.1.1", + "Microsoft.Extensions.Identity.Core": "3.1.12", + "Microsoft.Extensions.Identity.Stores": "3.1.12", + "Microsoft.VisualStudio.Web.BrowserLink": "2.2.0", "MongoDB.Driver": "2.9.3", "MongoDbGenericRepository": "1.4.3" }, @@ -28,103 +29,22 @@ } } }, - "Microsoft.AspNetCore.Authentication/2.2.0": { + "Microsoft.AspNetCore.Cryptography.Internal/3.1.12": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.7012" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.12": { "dependencies": { - "Microsoft.AspNetCore.Authentication.Core": "2.2.0", - "Microsoft.AspNetCore.DataProtection": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "3.1.1", - "Microsoft.Extensions.Options": "3.1.1", - "Microsoft.Extensions.WebEncoders": "2.2.0" + "Microsoft.AspNetCore.Cryptography.Internal": "3.1.12" }, "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "3.1.1", - "Microsoft.Extensions.Options": "3.1.1" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Authentication": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Cryptography.Internal/3.1.1": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61510" - } - } - }, - "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.1": { - "dependencies": { - "Microsoft.AspNetCore.Cryptography.Internal": "3.1.1" - }, - "runtime": { - "lib/netcoreapp2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61510" - } - } - }, - "Microsoft.AspNetCore.DataProtection/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Cryptography.Internal": "3.1.1", - "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1", - "Microsoft.Extensions.Logging.Abstractions": "3.1.1", - "Microsoft.Extensions.Options": "3.1.1", - "Microsoft.Win32.Registry": "4.5.0", - "System.Security.Cryptography.Xml": "4.5.0", - "System.Security.Principal.Windows": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" + "lib/netcoreapp3.1/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.7012" } } }, @@ -144,7 +64,7 @@ "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { "dependencies": { "Microsoft.AspNetCore.Http.Features": "2.2.0", - "Microsoft.Extensions.Configuration.Abstractions": "3.1.1" + "Microsoft.Extensions.Configuration.Abstractions": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { @@ -153,21 +73,6 @@ } } }, - "Microsoft.AspNetCore.Http/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.AspNetCore.WebUtilities": "2.2.0", - "Microsoft.Extensions.ObjectPool": "2.2.0", - "Microsoft.Extensions.Options": "3.1.1", - "Microsoft.Net.Http.Headers": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { "dependencies": { "Microsoft.AspNetCore.Http.Features": "2.2.0", @@ -196,7 +101,7 @@ }, "Microsoft.AspNetCore.Http.Features/2.2.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.1" + "Microsoft.Extensions.Primitives": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { @@ -205,98 +110,72 @@ } } }, - "Microsoft.AspNetCore.Identity/2.2.0": { + "Microsoft.Extensions.Caching.Abstractions/3.1.12": { "dependencies": { - "Microsoft.AspNetCore.Authentication.Cookies": "2.2.0", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.1", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.Identity.Core": "3.1.1" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { - "dependencies": { - "Microsoft.Net.Http.Headers": "2.2.0", - "System.Text.Encodings.Web": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/3.1.1": { - "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.1" + "Microsoft.Extensions.Primitives": "3.1.12" }, "runtime": { "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.Configuration/3.1.1": { + "Microsoft.Extensions.Configuration/3.1.12": { "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "3.1.1" + "Microsoft.Extensions.Configuration.Abstractions": "3.1.12" }, "runtime": { "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.Configuration.Abstractions/3.1.1": { + "Microsoft.Extensions.Configuration.Abstractions/3.1.12": { "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.1" + "Microsoft.Extensions.Primitives": "3.1.12" }, "runtime": { "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.Configuration.Binder/3.1.1": { + "Microsoft.Extensions.Configuration.Binder/3.1.12": { "dependencies": { - "Microsoft.Extensions.Configuration": "3.1.1" + "Microsoft.Extensions.Configuration": "3.1.12" }, "runtime": { "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.DependencyInjection/3.1.1": { + "Microsoft.Extensions.DependencyInjection/3.1.12": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.12" }, "runtime": { "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.1": { + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.12": { "runtime": { "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.1" + "Microsoft.Extensions.Primitives": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { @@ -305,12 +184,32 @@ } } }, + "Microsoft.Extensions.FileProviders.Physical/2.2.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.FileSystemGlobbing": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "3.1.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1", + "Microsoft.Extensions.Configuration.Abstractions": "3.1.12", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.12", "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "3.1.1" + "Microsoft.Extensions.Logging.Abstractions": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": { @@ -319,98 +218,77 @@ } } }, - "Microsoft.Extensions.Identity.Core/3.1.1": { + "Microsoft.Extensions.Identity.Core/3.1.12": { "dependencies": { - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.1", - "Microsoft.Extensions.Logging": "3.1.1", - "Microsoft.Extensions.Options": "3.1.1" + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.12", + "Microsoft.Extensions.Logging": "3.1.12", + "Microsoft.Extensions.Options": "3.1.12" }, "runtime": { "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Core.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61510" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.7012" } } }, - "Microsoft.Extensions.Identity.Stores/3.1.1": { + "Microsoft.Extensions.Identity.Stores/3.1.12": { "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "3.1.1", - "Microsoft.Extensions.Identity.Core": "3.1.1", - "Microsoft.Extensions.Logging": "3.1.1" + "Microsoft.Extensions.Caching.Abstractions": "3.1.12", + "Microsoft.Extensions.Identity.Core": "3.1.12", + "Microsoft.Extensions.Logging": "3.1.12" }, "runtime": { "lib/netcoreapp3.1/Microsoft.Extensions.Identity.Stores.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61510" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.7012" } } }, - "Microsoft.Extensions.Logging/3.1.1": { + "Microsoft.Extensions.Logging/3.1.12": { "dependencies": { - "Microsoft.Extensions.Configuration.Binder": "3.1.1", - "Microsoft.Extensions.DependencyInjection": "3.1.1", - "Microsoft.Extensions.Logging.Abstractions": "3.1.1", - "Microsoft.Extensions.Options": "3.1.1" + "Microsoft.Extensions.Configuration.Binder": "3.1.12", + "Microsoft.Extensions.DependencyInjection": "3.1.12", + "Microsoft.Extensions.Logging.Abstractions": "3.1.12", + "Microsoft.Extensions.Options": "3.1.12" }, "runtime": { "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.Logging.Abstractions/3.1.1": { + "Microsoft.Extensions.Logging.Abstractions/3.1.12": { "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.ObjectPool/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.Options/3.1.1": { + "Microsoft.Extensions.Options/3.1.12": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1", - "Microsoft.Extensions.Primitives": "3.1.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.12", + "Microsoft.Extensions.Primitives": "3.1.12" }, "runtime": { "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.Primitives/3.1.1": { + "Microsoft.Extensions.Primitives/3.1.12": { "runtime": { "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" - } - } - }, - "Microsoft.Extensions.WebEncoders/2.2.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1", - "Microsoft.Extensions.Options": "3.1.1", - "System.Text.Encodings.Web": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, "Microsoft.Net.Http.Headers/2.2.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.1", + "Microsoft.Extensions.Primitives": "3.1.12", "System.Buffers": "4.5.0" }, "runtime": { @@ -422,6 +300,20 @@ }, "Microsoft.NETCore.Platforms/2.1.2": {}, "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.VisualStudio.Web.BrowserLink/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.FileProviders.Physical": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.BrowserLink.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, "Microsoft.Win32.Primitives/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "2.1.2", @@ -429,10 +321,16 @@ "System.Runtime": "4.3.0" } }, - "Microsoft.Win32.Registry/4.5.0": { + "Microsoft.Win32.Registry/4.0.0": { "dependencies": { - "System.Security.AccessControl": "4.5.0", - "System.Security.Principal.Windows": "4.5.0" + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Collections": "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.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" } }, "MongoDB.Bson/2.9.3": { @@ -719,7 +617,7 @@ "dependencies": { "Microsoft.NETCore.Platforms": "2.1.2", "Microsoft.Win32.Primitives": "4.3.0", - "Microsoft.Win32.Registry": "4.5.0", + "Microsoft.Win32.Registry": "4.0.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -963,7 +861,7 @@ "System.Runtime.Extensions": "4.3.0", "System.Runtime.Handles": "4.3.0", "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "4.5.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" @@ -1156,12 +1054,6 @@ "System.Runtime": "4.3.0" } }, - "System.Security.AccessControl/4.5.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "2.1.2", - "System.Security.Principal.Windows": "4.5.0" - } - }, "System.Security.Claims/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -1191,7 +1083,21 @@ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" } }, - "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "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.1.2", @@ -1242,25 +1148,6 @@ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" } }, - "System.Security.Cryptography.Pkcs/4.5.0": { - "dependencies": { - "System.Security.Cryptography.Cng": "4.5.0" - }, - "runtime": { - "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.26515.6" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.26515.6" - } - } - }, "System.Security.Cryptography.Primitives/4.3.0": { "dependencies": { "System.Diagnostics.Debug": "4.3.0", @@ -1289,7 +1176,7 @@ "System.Runtime.InteropServices": "4.3.0", "System.Runtime.Numerics": "4.3.0", "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.5.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", @@ -1301,37 +1188,27 @@ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" } }, - "System.Security.Cryptography.Xml/4.5.0": { - "dependencies": { - "System.Security.Cryptography.Pkcs": "4.5.0", - "System.Security.Permissions": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Security.Permissions/4.5.0": { - "dependencies": { - "System.Security.AccessControl": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/System.Security.Permissions.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.26515.6" - } - } - }, "System.Security.Principal/4.3.0": { "dependencies": { "System.Runtime": "4.3.0" } }, - "System.Security.Principal.Windows/4.5.0": { + "System.Security.Principal.Windows/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "2.1.2" + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "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.Claims": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" } }, "System.Security.SecureString/4.0.0": { @@ -1449,7 +1326,7 @@ } }, "libraries": { - "AspNetCore.Identity.MongoDbCore/1.0.0": { + "AspNetCore.Identity.MongoDbCore/3.1.0": { "type": "project", "serviceable": false, "sha512": "" @@ -1461,61 +1338,19 @@ "path": "dnsclient/1.2.0", "hashPath": "dnsclient.1.2.0.nupkg.sha512" }, - "Microsoft.AspNetCore.Authentication/2.2.0": { + "Microsoft.AspNetCore.Cryptography.Internal/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-b0R9X7L6zMqNsssKDvhYHuNi5x0s4DyHTeXybIAyGaitKiW1Q5aAGKdV2codHPiePv9yHfC9hAMyScXQ/xXhPw==", - "path": "microsoft.aspnetcore.authentication/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.2.2.0.nupkg.sha512" + "sha512": "sha512-9V7Acx9lFw2KA23FOqH4TH5wQzZN/px/ovmRWBb8I3rf9arZ/cKniwRmRNrwgmShtQXhu1t124rrl1du2ueODA==", + "path": "microsoft.aspnetcore.cryptography.internal/3.1.12", + "hashPath": "microsoft.aspnetcore.cryptography.internal.3.1.12.nupkg.sha512" }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", - "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Iar9VFlBHkZGdSG9ZUTmn6Q8Qg+6CtW5G/TyJI2F8B432TOH+nZlkU7O0W0byow6xsxqOYeTviSHz4cCJ3amfQ==", - "path": "microsoft.aspnetcore.authentication.cookies/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.cookies.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", - "path": "microsoft.aspnetcore.authentication.core/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Cryptography.Internal/3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sFfUegR52PSmTcT2eH1YywPdXLwx0Tt4S54yjqIP5+R/BmZKbEfCOvaGqAwKYbpwztHTua013pPeDKP8DmuGtw==", - "path": "microsoft.aspnetcore.cryptography.internal/3.1.1", - "hashPath": "microsoft.aspnetcore.cryptography.internal.3.1.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hsgMSiKDe/UDdKarzld9aUMyRjiMBi847QGnLBDvbvuAlvlaqZ6CKMPjLch43Yf3ZKoHVr716LsNNOAsfIs1oQ==", - "path": "microsoft.aspnetcore.cryptography.keyderivation/3.1.1", - "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.3.1.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.DataProtection/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==", - "path": "microsoft.aspnetcore.dataprotection/2.2.0", - "hashPath": "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==", - "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512" + "sha512": "sha512-LNaiyMe0J8kkXglqtmE3wK1xu3ofvKh1WTVmJs0yl/uFfo9Vbr6lSyZ0k+5sTUxuIS1WU6dHe4nO0ikRlXq6CQ==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/3.1.12", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.3.1.12.nupkg.sha512" }, "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { "type": "package", @@ -1531,13 +1366,6 @@ "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" }, - "Microsoft.AspNetCore.Http/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", - "path": "microsoft.aspnetcore.http/2.2.0", - "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512" - }, "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { "type": "package", "serviceable": true, @@ -1559,61 +1387,47 @@ "path": "microsoft.aspnetcore.http.features/2.2.0", "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" }, - "Microsoft.AspNetCore.Identity/2.2.0": { + "Microsoft.Extensions.Caching.Abstractions/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-F16BKeS96wKhyIyhaFR7m8kRIwIvPUW9Dx7IlGWmu2IIwnUDCdo+2z7IrWKA8r77pZQ1UE9kYcBPg5456YdAIA==", - "path": "microsoft.aspnetcore.identity/2.2.0", - "hashPath": "microsoft.aspnetcore.identity.2.2.0.nupkg.sha512" + "sha512": "sha512-KOt2+vIFZ56zBEG2jgZWBjvxL4MSXBUV7npESYT7qAAABBywlJEa2pVvkbElBwOovLC/Q3cO1YcBc9OQc+dbxw==", + "path": "microsoft.extensions.caching.abstractions/3.1.12", + "hashPath": "microsoft.extensions.caching.abstractions.3.1.12.nupkg.sha512" }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "Microsoft.Extensions.Configuration/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", - "path": "microsoft.aspnetcore.webutilities/2.2.0", - "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + "sha512": "sha512-sQeNlafyb7XIYubfELbAQtN3U7DubZEs8d7xaj09sAdD929spOqiZKHcWpEQDtWtwqXm70JWS1WDfxpOvuVMcw==", + "path": "microsoft.extensions.configuration/3.1.12", + "hashPath": "microsoft.extensions.configuration.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Caching.Abstractions/3.1.1": { + "Microsoft.Extensions.Configuration.Abstractions/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-lG9qfc7Sx8KsYSmqeEV0WleGTUrzMhNuBdmkwLCOfN/IQRb3ZorullTeoaTNIgYuYM+HQsnKa0N22Lv2BpGG/Q==", - "path": "microsoft.extensions.caching.abstractions/3.1.1", - "hashPath": "microsoft.extensions.caching.abstractions.3.1.1.nupkg.sha512" + "sha512": "sha512-LMq236lxH1ji2FYv+2o6A9Nfb9jrDWl6Dn1XleA473NmBfYf/93MfPBgmnJA1qlFQPt9BKBd3r3h7NaTbDcHMw==", + "path": "microsoft.extensions.configuration.abstractions/3.1.12", + "hashPath": "microsoft.extensions.configuration.abstractions.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Configuration/3.1.1": { + "Microsoft.Extensions.Configuration.Binder/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-LHbdc7ZBzKOqmvGpK1EkEqpFllPa3IOrEI7dIu+BZwr6A10zBpe2XpZHeNh87DGjEfHcAItwvh/Slah8tbnr7Q==", - "path": "microsoft.extensions.configuration/3.1.1", - "hashPath": "microsoft.extensions.configuration.3.1.1.nupkg.sha512" + "sha512": "sha512-tso2dQMzmtALku0vMB6VuZpxDD6HYXqut+a8FdaU8XelnlR0aCi/LsK6Ej7VZbkKBqTQSgHAwyghbuKhk1sxog==", + "path": "microsoft.extensions.configuration.binder/3.1.12", + "hashPath": "microsoft.extensions.configuration.binder.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Abstractions/3.1.1": { + "Microsoft.Extensions.DependencyInjection/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-Msu6IzxV486nNmsasJQXB/c44DiVz7FqXCjIBnvmG2M8NGaVDIQra1qff9cEEkhqa+dGH+jf3mdggm8w9eX7BQ==", - "path": "microsoft.extensions.configuration.abstractions/3.1.1", - "hashPath": "microsoft.extensions.configuration.abstractions.3.1.1.nupkg.sha512" + "sha512": "sha512-iCPPTBSXEPlGkpQt6Ky9+pfxQhsanrQ8W5tZC43eqYoBCqBTiAkd5rzfWSxxvjqUmDbp/h3JrKv765gRunkHsQ==", + "path": "microsoft.extensions.dependencyinjection/3.1.12", + "hashPath": "microsoft.extensions.dependencyinjection.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Binder/3.1.1": { + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-4J+01OANCMbFEF0bu9hID3m61emMwU2m13WXYrZDCIoxneMPWdWFzpLmsMqT8kIPgCgb2+SQ/1UAQcGCH/ASIQ==", - "path": "microsoft.extensions.configuration.binder/3.1.1", - "hashPath": "microsoft.extensions.configuration.binder.3.1.1.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Jg48cM12C8iqjpFMNXWEmJR/2jnmScV8Y8txVOayycLqHatLV2Cn4wuwj56KSOc/xVWwlWmq9Y5ebDH6awnexw==", - "path": "microsoft.extensions.dependencyinjection/3.1.1", - "hashPath": "microsoft.extensions.dependencyinjection.3.1.1.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uKZr5b4w9nQE6UAXS4PqBFbg2qe6kS+pdsCbDG2kHjUaWT/B7EOcDraoR52H/4BoBIEH3By5co6Wioru7+v9Zg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.1", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.1.nupkg.sha512" + "sha512": "sha512-rIFeT9vtNl5AKpvWxxhOudNnVRqKNIku1bLVUBc/MdhHeiHA23OOc3TOlniQjSpFRIIjQ9J1LLTYSZvCwOemyg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.12", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.12.nupkg.sha512" }, "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { "type": "package", @@ -1622,6 +1436,20 @@ "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512" }, + "Microsoft.Extensions.FileProviders.Physical/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==", + "path": "microsoft.extensions.fileproviders.physical/2.2.0", + "hashPath": "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==", + "path": "microsoft.extensions.filesystemglobbing/2.2.0", + "hashPath": "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512" + }, "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { "type": "package", "serviceable": true, @@ -1629,61 +1457,47 @@ "path": "microsoft.extensions.hosting.abstractions/2.2.0", "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512" }, - "Microsoft.Extensions.Identity.Core/3.1.1": { + "Microsoft.Extensions.Identity.Core/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-gtp5+Oa4tu8dFoyZO0frBYKm+RFuG/CSO6knZfX4HKiRy8k+8V8jxxNqP/itJ/MrmlmsxLlkpYyzVNHMCkMfsA==", - "path": "microsoft.extensions.identity.core/3.1.1", - "hashPath": "microsoft.extensions.identity.core.3.1.1.nupkg.sha512" + "sha512": "sha512-MRNaIsE3PdT24+6cWxJhiyfTY3Eoncr/m+5nW3NtBjPQXhJKECGNdquh5EH5KwNaYls2KI53znl7KD4pWMkKyw==", + "path": "microsoft.extensions.identity.core/3.1.12", + "hashPath": "microsoft.extensions.identity.core.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Identity.Stores/3.1.1": { + "Microsoft.Extensions.Identity.Stores/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-u8GFozRlClmW/6xeJkX3KoRhsTEt7jWji49PElR9mnEoMhSaupwwTSmkfspExD8m0mcWmvcj7zMhJDi6dsJYFQ==", - "path": "microsoft.extensions.identity.stores/3.1.1", - "hashPath": "microsoft.extensions.identity.stores.3.1.1.nupkg.sha512" + "sha512": "sha512-xQOIvN3nFJ0ptl/qnozFJPzfY/TxrJFr9k/EPJkqHZx8jtzlGJ4mqvgknau0AunW25uXyT+O6co3AJ4B4OKcRQ==", + "path": "microsoft.extensions.identity.stores/3.1.12", + "hashPath": "microsoft.extensions.identity.stores.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Logging/3.1.1": { + "Microsoft.Extensions.Logging/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-SykGku44CIQJRM+eUzB61bGVNv0Lmgx70UAmhu1XLFXhP4I0rBSNJusfOlEpDN8T5JQsykIuM2lOd8J8nTnfAg==", - "path": "microsoft.extensions.logging/3.1.1", - "hashPath": "microsoft.extensions.logging.3.1.1.nupkg.sha512" + "sha512": "sha512-EXwfP6M/G6mwM/f9eVNY3tOnY539gIEjeSXs2G/RtuGILteW455ZLxfZmE7qzWSc0J2wvoMuxdkB+WMsBW8Kqw==", + "path": "microsoft.extensions.logging/3.1.12", + "hashPath": "microsoft.extensions.logging.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Logging.Abstractions/3.1.1": { + "Microsoft.Extensions.Logging.Abstractions/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-4/1BLjd9Zvc87xlhfkIsAlHOgMnGJBQFIEmO3CUKLrf38nIFp3W7X+JoFiRmn20WAi5+l2sgUWS4ixaIuB3S0g==", - "path": "microsoft.extensions.logging.abstractions/3.1.1", - "hashPath": "microsoft.extensions.logging.abstractions.3.1.1.nupkg.sha512" + "sha512": "sha512-Ixi6qAF3sr1FjPntVamRCMcnrCPx6l0G8VxtVshEk4n8lGs0Hj62jmt/xJ4mHrxR5ST0T49ERT2HsJcv6z+wGw==", + "path": "microsoft.extensions.logging.abstractions/3.1.12", + "hashPath": "microsoft.extensions.logging.abstractions.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.ObjectPool/2.2.0": { + "Microsoft.Extensions.Options/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", - "path": "microsoft.extensions.objectpool/2.2.0", - "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + "sha512": "sha512-by2/frdg182EdpUkFw+2+h+POQTUCVNZRGWgFZKKZhxfuN+hJZFAaGMAuo1ouLexMa1PGTqWAgw/zaZ2WwU71Q==", + "path": "microsoft.extensions.options/3.1.12", + "hashPath": "microsoft.extensions.options.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Options/3.1.1": { + "Microsoft.Extensions.Primitives/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-p2faCNhzXyG5oLLOV8n8dwg2rfqS4aRpIWu4qgwZMq+al3133mAQ+Hb822iwRoj3qnKM8zY4A6Jz/Vm/xWHvrA==", - "path": "microsoft.extensions.options/3.1.1", - "hashPath": "microsoft.extensions.options.3.1.1.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tC5Eo5DbJA+NgiIw26R5c97N02tFvtfqstUxqb/4qXPLXI2IAIWSMUkh/1c9Gw59TT9hNkLwlmLErSPlHgyJVQ==", - "path": "microsoft.extensions.primitives/3.1.1", - "hashPath": "microsoft.extensions.primitives.3.1.1.nupkg.sha512" - }, - "Microsoft.Extensions.WebEncoders/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==", - "path": "microsoft.extensions.webencoders/2.2.0", - "hashPath": "microsoft.extensions.webencoders.2.2.0.nupkg.sha512" + "sha512": "sha512-QjEKb7QWbk44/t05BKlYaHP1sX2jOW9MypKVeMikX6932J34AioVo9heppJ8XAUpBLL15iOiyncSLWgHE32xMg==", + "path": "microsoft.extensions.primitives/3.1.12", + "hashPath": "microsoft.extensions.primitives.3.1.12.nupkg.sha512" }, "Microsoft.Net.Http.Headers/2.2.0": { "type": "package", @@ -1706,6 +1520,13 @@ "path": "microsoft.netcore.targets/1.1.0", "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" }, + "Microsoft.VisualStudio.Web.BrowserLink/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cmeqhbB+rdMia3bj6cJaKQw1GDOqHxzDWAjoJqCnz+JYi9a2xsBdzycYy9eMEssVwLmLAUw6sWLMPMfGXAQmWA==", + "path": "microsoft.visualstudio.web.browserlink/2.2.0", + "hashPath": "microsoft.visualstudio.web.browserlink.2.2.0.nupkg.sha512" + }, "Microsoft.Win32.Primitives/4.3.0": { "type": "package", "serviceable": true, @@ -1713,12 +1534,12 @@ "path": "microsoft.win32.primitives/4.3.0", "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" }, - "Microsoft.Win32.Registry/4.5.0": { + "Microsoft.Win32.Registry/4.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==", - "path": "microsoft.win32.registry/4.5.0", - "hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512" + "sha512": "sha512-q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==", + "path": "microsoft.win32.registry/4.0.0", + "hashPath": "microsoft.win32.registry.4.0.0.nupkg.sha512" }, "MongoDB.Bson/2.9.3": { "type": "package", @@ -2245,13 +2066,6 @@ "path": "system.runtime.serialization.primitives/4.3.0", "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" }, - "System.Security.AccessControl/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", - "path": "system.security.accesscontrol/4.5.0", - "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512" - }, "System.Security.Claims/4.3.0": { "type": "package", "serviceable": true, @@ -2266,12 +2080,12 @@ "path": "system.security.cryptography.algorithms/4.3.0", "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.Cng/4.5.0": { + "System.Security.Cryptography.Cng/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", - "path": "system.security.cryptography.cng/4.5.0", - "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + "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", @@ -2294,13 +2108,6 @@ "path": "system.security.cryptography.openssl/4.3.0", "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.Pkcs/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TGQX51gxpY3K3I6LJlE2LAftVlIMqJf0cBGhz68Y89jjk3LJCB6SrwiD+YN1fkqemBvWGs+GjyMJukl6d6goyQ==", - "path": "system.security.cryptography.pkcs/4.5.0", - "hashPath": "system.security.cryptography.pkcs.4.5.0.nupkg.sha512" - }, "System.Security.Cryptography.Primitives/4.3.0": { "type": "package", "serviceable": true, @@ -2315,20 +2122,6 @@ "path": "system.security.cryptography.x509certificates/4.3.0", "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.Xml/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==", - "path": "system.security.cryptography.xml/4.5.0", - "hashPath": "system.security.cryptography.xml.4.5.0.nupkg.sha512" - }, - "System.Security.Permissions/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", - "path": "system.security.permissions/4.5.0", - "hashPath": "system.security.permissions.4.5.0.nupkg.sha512" - }, "System.Security.Principal/4.3.0": { "type": "package", "serviceable": true, @@ -2336,12 +2129,12 @@ "path": "system.security.principal/4.3.0", "hashPath": "system.security.principal.4.3.0.nupkg.sha512" }, - "System.Security.Principal.Windows/4.5.0": { + "System.Security.Principal.Windows/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", - "path": "system.security.principal.windows/4.5.0", - "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512" + "sha512": "sha512-HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==", + "path": "system.security.principal.windows/4.3.0", + "hashPath": "system.security.principal.windows.4.3.0.nupkg.sha512" }, "System.Security.SecureString/4.0.0": { "type": "package", diff --git a/src/lib/netcoreapp3.1/AspNetCore.Identity.MongoDbCore.dll b/src/lib/netcoreapp3.1/AspNetCore.Identity.MongoDbCore.dll index d732ccc..5abd451 100644 Binary files a/src/lib/netcoreapp3.1/AspNetCore.Identity.MongoDbCore.dll and b/src/lib/netcoreapp3.1/AspNetCore.Identity.MongoDbCore.dll differ diff --git a/src/lib/netstandard2.1/AspNetCore.Identity.MongoDbCore.deps.json b/src/lib/netstandard2.1/AspNetCore.Identity.MongoDbCore.deps.json index abbb166..77f02cb 100644 --- a/src/lib/netstandard2.1/AspNetCore.Identity.MongoDbCore.deps.json +++ b/src/lib/netstandard2.1/AspNetCore.Identity.MongoDbCore.deps.json @@ -7,10 +7,11 @@ "targets": { ".NETStandard,Version=v2.1": {}, ".NETStandard,Version=v2.1/": { - "AspNetCore.Identity.MongoDbCore/1.0.0": { + "AspNetCore.Identity.MongoDbCore/3.1.0": { "dependencies": { - "Microsoft.AspNetCore.Identity": "2.2.0", - "Microsoft.Extensions.Identity.Stores": "3.1.1", + "Microsoft.Extensions.Identity.Core": "3.1.12", + "Microsoft.Extensions.Identity.Stores": "3.1.12", + "Microsoft.VisualStudio.Web.BrowserLink": "2.2.0", "MongoDB.Driver": "2.9.3", "MongoDbGenericRepository": "1.4.3" }, @@ -29,103 +30,22 @@ } } }, - "Microsoft.AspNetCore.Authentication/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Authentication.Core": "2.2.0", - "Microsoft.AspNetCore.DataProtection": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "3.1.1", - "Microsoft.Extensions.Options": "3.1.1", - "Microsoft.Extensions.WebEncoders": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "3.1.1", - "Microsoft.Extensions.Options": "3.1.1" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Authentication": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Cookies.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Cryptography.Internal/3.1.1": { + "Microsoft.AspNetCore.Cryptography.Internal/3.1.12": { "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61510" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.7012" } } }, - "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.1": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.12": { "dependencies": { - "Microsoft.AspNetCore.Cryptography.Internal": "3.1.1" + "Microsoft.AspNetCore.Cryptography.Internal": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61510" - } - } - }, - "Microsoft.AspNetCore.DataProtection/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Cryptography.Internal": "3.1.1", - "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1", - "Microsoft.Extensions.Logging.Abstractions": "3.1.1", - "Microsoft.Extensions.Options": "3.1.1", - "Microsoft.Win32.Registry": "4.5.0", - "System.Security.Cryptography.Xml": "4.5.0", - "System.Security.Principal.Windows": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.7012" } } }, @@ -145,7 +65,7 @@ "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { "dependencies": { "Microsoft.AspNetCore.Http.Features": "2.2.0", - "Microsoft.Extensions.Configuration.Abstractions": "3.1.1" + "Microsoft.Extensions.Configuration.Abstractions": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { @@ -154,21 +74,6 @@ } } }, - "Microsoft.AspNetCore.Http/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.AspNetCore.WebUtilities": "2.2.0", - "Microsoft.Extensions.ObjectPool": "2.2.0", - "Microsoft.Extensions.Options": "3.1.1", - "Microsoft.Net.Http.Headers": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { "dependencies": { "Microsoft.AspNetCore.Http.Features": "2.2.0", @@ -197,7 +102,7 @@ }, "Microsoft.AspNetCore.Http.Features/2.2.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.1" + "Microsoft.Extensions.Primitives": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": { @@ -206,98 +111,72 @@ } } }, - "Microsoft.AspNetCore.Identity/2.2.0": { + "Microsoft.Extensions.Caching.Abstractions/3.1.12": { "dependencies": { - "Microsoft.AspNetCore.Authentication.Cookies": "2.2.0", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.1", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.Identity.Core": "3.1.1" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Identity.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { - "dependencies": { - "Microsoft.Net.Http.Headers": "2.2.0", - "System.Text.Encodings.Web": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/3.1.1": { - "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.1" + "Microsoft.Extensions.Primitives": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.Configuration/3.1.1": { + "Microsoft.Extensions.Configuration/3.1.12": { "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "3.1.1" + "Microsoft.Extensions.Configuration.Abstractions": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.Configuration.Abstractions/3.1.1": { + "Microsoft.Extensions.Configuration.Abstractions/3.1.12": { "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.1" + "Microsoft.Extensions.Primitives": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.Configuration.Binder/3.1.1": { + "Microsoft.Extensions.Configuration.Binder/3.1.12": { "dependencies": { - "Microsoft.Extensions.Configuration": "3.1.1" + "Microsoft.Extensions.Configuration": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.DependencyInjection/3.1.1": { + "Microsoft.Extensions.DependencyInjection/3.1.12": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1" + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.12" }, "runtime": { "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.1": { + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.12": { "runtime": { "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.1" + "Microsoft.Extensions.Primitives": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { @@ -306,12 +185,32 @@ } } }, + "Microsoft.Extensions.FileProviders.Physical/2.2.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", + "Microsoft.Extensions.FileSystemGlobbing": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, + "Microsoft.Extensions.FileSystemGlobbing/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18315" + } + } + }, "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "3.1.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1", + "Microsoft.Extensions.Configuration.Abstractions": "3.1.12", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.12", "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "3.1.1" + "Microsoft.Extensions.Logging.Abstractions": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": { @@ -320,103 +219,82 @@ } } }, - "Microsoft.Extensions.Identity.Core/3.1.1": { + "Microsoft.Extensions.Identity.Core/3.1.12": { "dependencies": { - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.1", - "Microsoft.Extensions.Logging": "3.1.1", - "Microsoft.Extensions.Options": "3.1.1" + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.12", + "Microsoft.Extensions.Logging": "3.1.12", + "Microsoft.Extensions.Options": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61510" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.7012" } } }, - "Microsoft.Extensions.Identity.Stores/3.1.1": { + "Microsoft.Extensions.Identity.Stores/3.1.12": { "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "3.1.1", - "Microsoft.Extensions.Identity.Core": "3.1.1", - "Microsoft.Extensions.Logging": "3.1.1" + "Microsoft.Extensions.Caching.Abstractions": "3.1.12", + "Microsoft.Extensions.Identity.Core": "3.1.12", + "Microsoft.Extensions.Logging": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61510" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.7012" } } }, - "Microsoft.Extensions.Logging/3.1.1": { + "Microsoft.Extensions.Logging/3.1.12": { "dependencies": { - "Microsoft.Extensions.Configuration.Binder": "3.1.1", - "Microsoft.Extensions.DependencyInjection": "3.1.1", - "Microsoft.Extensions.Logging.Abstractions": "3.1.1", - "Microsoft.Extensions.Options": "3.1.1" + "Microsoft.Extensions.Configuration.Binder": "3.1.12", + "Microsoft.Extensions.DependencyInjection": "3.1.12", + "Microsoft.Extensions.Logging.Abstractions": "3.1.12", + "Microsoft.Extensions.Options": "3.1.12" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.Logging.Abstractions/3.1.1": { + "Microsoft.Extensions.Logging.Abstractions/3.1.12": { "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.ObjectPool/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18315" - } - } - }, - "Microsoft.Extensions.Options/3.1.1": { + "Microsoft.Extensions.Options/3.1.12": { "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1", - "Microsoft.Extensions.Primitives": "3.1.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.12", + "Microsoft.Extensions.Primitives": "3.1.12", "System.ComponentModel.Annotations": "4.7.0" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, - "Microsoft.Extensions.Primitives/3.1.1": { + "Microsoft.Extensions.Primitives/3.1.12": { "dependencies": { "System.Memory": "4.5.2", - "System.Runtime.CompilerServices.Unsafe": "4.7.0" + "System.Runtime.CompilerServices.Unsafe": "4.7.1" }, "runtime": { "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "3.1.1.0", - "fileVersion": "3.100.119.61404" - } - } - }, - "Microsoft.Extensions.WebEncoders/2.2.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1", - "Microsoft.Extensions.Options": "3.1.1", - "System.Text.Encodings.Web": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" + "assemblyVersion": "3.1.12.0", + "fileVersion": "3.100.1221.6909" } } }, "Microsoft.Net.Http.Headers/2.2.0": { "dependencies": { - "Microsoft.Extensions.Primitives": "3.1.1", + "Microsoft.Extensions.Primitives": "3.1.12", "System.Buffers": "4.5.0" }, "runtime": { @@ -428,6 +306,20 @@ }, "Microsoft.NETCore.Platforms/1.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.VisualStudio.Web.BrowserLink/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.FileProviders.Physical": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.VisualStudio.Web.BrowserLink.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, "Microsoft.Win32.Primitives/4.3.0": { "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", @@ -435,18 +327,16 @@ "System.Runtime": "4.3.0" } }, - "Microsoft.Win32.Registry/4.5.0": { + "Microsoft.Win32.Registry/4.0.0": { "dependencies": { - "System.Buffers": "4.5.0", - "System.Memory": "4.5.2", - "System.Security.AccessControl": "4.5.0", - "System.Security.Principal.Windows": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.26515.6" - } + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "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.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" } }, "MongoDB.Bson/2.9.3": { @@ -796,7 +686,7 @@ "dependencies": { "Microsoft.NETCore.Platforms": "1.1.0", "Microsoft.Win32.Primitives": "4.3.0", - "Microsoft.Win32.Registry": "4.5.0", + "Microsoft.Win32.Registry": "4.0.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -1044,7 +934,7 @@ "dependencies": { "System.Buffers": "4.5.0", "System.Numerics.Vectors": "4.4.0", - "System.Runtime.CompilerServices.Unsafe": "4.7.0" + "System.Runtime.CompilerServices.Unsafe": "4.7.1" }, "runtime": { "lib/netstandard2.0/System.Memory.dll": { @@ -1095,7 +985,7 @@ "System.Runtime.Extensions": "4.3.0", "System.Runtime.Handles": "4.3.0", "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "4.5.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" @@ -1267,11 +1157,11 @@ "Microsoft.NETCore.Targets": "1.1.0" } }, - "System.Runtime.CompilerServices.Unsafe/4.7.0": { + "System.Runtime.CompilerServices.Unsafe/4.7.1": { "runtime": { "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": { "assemblyVersion": "4.0.6.0", - "fileVersion": "4.700.19.56404" + "fileVersion": "4.700.20.12001" } } }, @@ -1357,17 +1247,6 @@ } } }, - "System.Security.AccessControl/4.5.0": { - "dependencies": { - "System.Security.Principal.Windows": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.26515.6" - } - } - }, "System.Security.Claims/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -1403,12 +1282,19 @@ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" } }, - "System.Security.Cryptography.Cng/4.4.0": { - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.Cng.dll": { - "assemblyVersion": "4.3.0.0", - "fileVersion": "4.6.25519.3" - } + "System.Security.Cryptography.Cng/4.3.0": { + "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" } }, "System.Security.Cryptography.Csp/4.3.0": { @@ -1467,19 +1353,6 @@ } } }, - "System.Security.Cryptography.Pkcs/4.5.0": { - "dependencies": { - "System.Buffers": "4.5.0", - "System.Memory": "4.5.2", - "System.Security.Cryptography.Cng": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "4.6.26515.6" - } - } - }, "System.Security.Cryptography.Primitives/4.3.0": { "dependencies": { "System.Diagnostics.Debug": "4.3.0", @@ -1514,7 +1387,7 @@ "System.Runtime.InteropServices": "4.3.0", "System.Runtime.Numerics": "4.3.0", "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.4.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", @@ -1526,29 +1399,6 @@ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" } }, - "System.Security.Cryptography.Xml/4.5.0": { - "dependencies": { - "System.Security.Cryptography.Pkcs": "4.5.0", - "System.Security.Permissions": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.26515.6" - } - } - }, - "System.Security.Permissions/4.5.0": { - "dependencies": { - "System.Security.AccessControl": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/System.Security.Permissions.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.6.26515.6" - } - } - }, "System.Security.Principal/4.3.0": { "dependencies": { "System.Runtime": "4.3.0" @@ -1560,12 +1410,22 @@ } } }, - "System.Security.Principal.Windows/4.5.0": { - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": { - "assemblyVersion": "4.1.1.0", - "fileVersion": "4.6.26515.6" - } + "System.Security.Principal.Windows/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "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.Claims": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" } }, "System.Security.SecureString/4.0.0": { @@ -1589,7 +1449,7 @@ }, "System.Text.Encoding.CodePages/4.5.1": { "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "4.7.0" + "System.Runtime.CompilerServices.Unsafe": "4.7.1" }, "runtime": { "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": { @@ -1742,7 +1602,7 @@ } }, "libraries": { - "AspNetCore.Identity.MongoDbCore/1.0.0": { + "AspNetCore.Identity.MongoDbCore/3.1.0": { "type": "project", "serviceable": false, "sha512": "" @@ -1754,61 +1614,19 @@ "path": "dnsclient/1.2.0", "hashPath": "dnsclient.1.2.0.nupkg.sha512" }, - "Microsoft.AspNetCore.Authentication/2.2.0": { + "Microsoft.AspNetCore.Cryptography.Internal/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-b0R9X7L6zMqNsssKDvhYHuNi5x0s4DyHTeXybIAyGaitKiW1Q5aAGKdV2codHPiePv9yHfC9hAMyScXQ/xXhPw==", - "path": "microsoft.aspnetcore.authentication/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.2.2.0.nupkg.sha512" + "sha512": "sha512-9V7Acx9lFw2KA23FOqH4TH5wQzZN/px/ovmRWBb8I3rf9arZ/cKniwRmRNrwgmShtQXhu1t124rrl1du2ueODA==", + "path": "microsoft.aspnetcore.cryptography.internal/3.1.12", + "hashPath": "microsoft.aspnetcore.cryptography.internal.3.1.12.nupkg.sha512" }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", - "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Iar9VFlBHkZGdSG9ZUTmn6Q8Qg+6CtW5G/TyJI2F8B432TOH+nZlkU7O0W0byow6xsxqOYeTviSHz4cCJ3amfQ==", - "path": "microsoft.aspnetcore.authentication.cookies/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.cookies.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", - "path": "microsoft.aspnetcore.authentication.core/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Cryptography.Internal/3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sFfUegR52PSmTcT2eH1YywPdXLwx0Tt4S54yjqIP5+R/BmZKbEfCOvaGqAwKYbpwztHTua013pPeDKP8DmuGtw==", - "path": "microsoft.aspnetcore.cryptography.internal/3.1.1", - "hashPath": "microsoft.aspnetcore.cryptography.internal.3.1.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hsgMSiKDe/UDdKarzld9aUMyRjiMBi847QGnLBDvbvuAlvlaqZ6CKMPjLch43Yf3ZKoHVr716LsNNOAsfIs1oQ==", - "path": "microsoft.aspnetcore.cryptography.keyderivation/3.1.1", - "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.3.1.1.nupkg.sha512" - }, - "Microsoft.AspNetCore.DataProtection/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==", - "path": "microsoft.aspnetcore.dataprotection/2.2.0", - "hashPath": "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==", - "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512" + "sha512": "sha512-LNaiyMe0J8kkXglqtmE3wK1xu3ofvKh1WTVmJs0yl/uFfo9Vbr6lSyZ0k+5sTUxuIS1WU6dHe4nO0ikRlXq6CQ==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/3.1.12", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.3.1.12.nupkg.sha512" }, "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { "type": "package", @@ -1824,13 +1642,6 @@ "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" }, - "Microsoft.AspNetCore.Http/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==", - "path": "microsoft.aspnetcore.http/2.2.0", - "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512" - }, "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { "type": "package", "serviceable": true, @@ -1852,61 +1663,47 @@ "path": "microsoft.aspnetcore.http.features/2.2.0", "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" }, - "Microsoft.AspNetCore.Identity/2.2.0": { + "Microsoft.Extensions.Caching.Abstractions/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-F16BKeS96wKhyIyhaFR7m8kRIwIvPUW9Dx7IlGWmu2IIwnUDCdo+2z7IrWKA8r77pZQ1UE9kYcBPg5456YdAIA==", - "path": "microsoft.aspnetcore.identity/2.2.0", - "hashPath": "microsoft.aspnetcore.identity.2.2.0.nupkg.sha512" + "sha512": "sha512-KOt2+vIFZ56zBEG2jgZWBjvxL4MSXBUV7npESYT7qAAABBywlJEa2pVvkbElBwOovLC/Q3cO1YcBc9OQc+dbxw==", + "path": "microsoft.extensions.caching.abstractions/3.1.12", + "hashPath": "microsoft.extensions.caching.abstractions.3.1.12.nupkg.sha512" }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "Microsoft.Extensions.Configuration/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", - "path": "microsoft.aspnetcore.webutilities/2.2.0", - "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + "sha512": "sha512-sQeNlafyb7XIYubfELbAQtN3U7DubZEs8d7xaj09sAdD929spOqiZKHcWpEQDtWtwqXm70JWS1WDfxpOvuVMcw==", + "path": "microsoft.extensions.configuration/3.1.12", + "hashPath": "microsoft.extensions.configuration.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Caching.Abstractions/3.1.1": { + "Microsoft.Extensions.Configuration.Abstractions/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-lG9qfc7Sx8KsYSmqeEV0WleGTUrzMhNuBdmkwLCOfN/IQRb3ZorullTeoaTNIgYuYM+HQsnKa0N22Lv2BpGG/Q==", - "path": "microsoft.extensions.caching.abstractions/3.1.1", - "hashPath": "microsoft.extensions.caching.abstractions.3.1.1.nupkg.sha512" + "sha512": "sha512-LMq236lxH1ji2FYv+2o6A9Nfb9jrDWl6Dn1XleA473NmBfYf/93MfPBgmnJA1qlFQPt9BKBd3r3h7NaTbDcHMw==", + "path": "microsoft.extensions.configuration.abstractions/3.1.12", + "hashPath": "microsoft.extensions.configuration.abstractions.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Configuration/3.1.1": { + "Microsoft.Extensions.Configuration.Binder/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-LHbdc7ZBzKOqmvGpK1EkEqpFllPa3IOrEI7dIu+BZwr6A10zBpe2XpZHeNh87DGjEfHcAItwvh/Slah8tbnr7Q==", - "path": "microsoft.extensions.configuration/3.1.1", - "hashPath": "microsoft.extensions.configuration.3.1.1.nupkg.sha512" + "sha512": "sha512-tso2dQMzmtALku0vMB6VuZpxDD6HYXqut+a8FdaU8XelnlR0aCi/LsK6Ej7VZbkKBqTQSgHAwyghbuKhk1sxog==", + "path": "microsoft.extensions.configuration.binder/3.1.12", + "hashPath": "microsoft.extensions.configuration.binder.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Abstractions/3.1.1": { + "Microsoft.Extensions.DependencyInjection/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-Msu6IzxV486nNmsasJQXB/c44DiVz7FqXCjIBnvmG2M8NGaVDIQra1qff9cEEkhqa+dGH+jf3mdggm8w9eX7BQ==", - "path": "microsoft.extensions.configuration.abstractions/3.1.1", - "hashPath": "microsoft.extensions.configuration.abstractions.3.1.1.nupkg.sha512" + "sha512": "sha512-iCPPTBSXEPlGkpQt6Ky9+pfxQhsanrQ8W5tZC43eqYoBCqBTiAkd5rzfWSxxvjqUmDbp/h3JrKv765gRunkHsQ==", + "path": "microsoft.extensions.dependencyinjection/3.1.12", + "hashPath": "microsoft.extensions.dependencyinjection.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Configuration.Binder/3.1.1": { + "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-4J+01OANCMbFEF0bu9hID3m61emMwU2m13WXYrZDCIoxneMPWdWFzpLmsMqT8kIPgCgb2+SQ/1UAQcGCH/ASIQ==", - "path": "microsoft.extensions.configuration.binder/3.1.1", - "hashPath": "microsoft.extensions.configuration.binder.3.1.1.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Jg48cM12C8iqjpFMNXWEmJR/2jnmScV8Y8txVOayycLqHatLV2Cn4wuwj56KSOc/xVWwlWmq9Y5ebDH6awnexw==", - "path": "microsoft.extensions.dependencyinjection/3.1.1", - "hashPath": "microsoft.extensions.dependencyinjection.3.1.1.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uKZr5b4w9nQE6UAXS4PqBFbg2qe6kS+pdsCbDG2kHjUaWT/B7EOcDraoR52H/4BoBIEH3By5co6Wioru7+v9Zg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.1", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.1.nupkg.sha512" + "sha512": "sha512-rIFeT9vtNl5AKpvWxxhOudNnVRqKNIku1bLVUBc/MdhHeiHA23OOc3TOlniQjSpFRIIjQ9J1LLTYSZvCwOemyg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.12", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.12.nupkg.sha512" }, "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": { "type": "package", @@ -1915,6 +1712,20 @@ "path": "microsoft.extensions.fileproviders.abstractions/2.2.0", "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512" }, + "Microsoft.Extensions.FileProviders.Physical/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==", + "path": "microsoft.extensions.fileproviders.physical/2.2.0", + "hashPath": "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==", + "path": "microsoft.extensions.filesystemglobbing/2.2.0", + "hashPath": "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512" + }, "Microsoft.Extensions.Hosting.Abstractions/2.2.0": { "type": "package", "serviceable": true, @@ -1922,61 +1733,47 @@ "path": "microsoft.extensions.hosting.abstractions/2.2.0", "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512" }, - "Microsoft.Extensions.Identity.Core/3.1.1": { + "Microsoft.Extensions.Identity.Core/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-gtp5+Oa4tu8dFoyZO0frBYKm+RFuG/CSO6knZfX4HKiRy8k+8V8jxxNqP/itJ/MrmlmsxLlkpYyzVNHMCkMfsA==", - "path": "microsoft.extensions.identity.core/3.1.1", - "hashPath": "microsoft.extensions.identity.core.3.1.1.nupkg.sha512" + "sha512": "sha512-MRNaIsE3PdT24+6cWxJhiyfTY3Eoncr/m+5nW3NtBjPQXhJKECGNdquh5EH5KwNaYls2KI53znl7KD4pWMkKyw==", + "path": "microsoft.extensions.identity.core/3.1.12", + "hashPath": "microsoft.extensions.identity.core.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Identity.Stores/3.1.1": { + "Microsoft.Extensions.Identity.Stores/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-u8GFozRlClmW/6xeJkX3KoRhsTEt7jWji49PElR9mnEoMhSaupwwTSmkfspExD8m0mcWmvcj7zMhJDi6dsJYFQ==", - "path": "microsoft.extensions.identity.stores/3.1.1", - "hashPath": "microsoft.extensions.identity.stores.3.1.1.nupkg.sha512" + "sha512": "sha512-xQOIvN3nFJ0ptl/qnozFJPzfY/TxrJFr9k/EPJkqHZx8jtzlGJ4mqvgknau0AunW25uXyT+O6co3AJ4B4OKcRQ==", + "path": "microsoft.extensions.identity.stores/3.1.12", + "hashPath": "microsoft.extensions.identity.stores.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Logging/3.1.1": { + "Microsoft.Extensions.Logging/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-SykGku44CIQJRM+eUzB61bGVNv0Lmgx70UAmhu1XLFXhP4I0rBSNJusfOlEpDN8T5JQsykIuM2lOd8J8nTnfAg==", - "path": "microsoft.extensions.logging/3.1.1", - "hashPath": "microsoft.extensions.logging.3.1.1.nupkg.sha512" + "sha512": "sha512-EXwfP6M/G6mwM/f9eVNY3tOnY539gIEjeSXs2G/RtuGILteW455ZLxfZmE7qzWSc0J2wvoMuxdkB+WMsBW8Kqw==", + "path": "microsoft.extensions.logging/3.1.12", + "hashPath": "microsoft.extensions.logging.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Logging.Abstractions/3.1.1": { + "Microsoft.Extensions.Logging.Abstractions/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-4/1BLjd9Zvc87xlhfkIsAlHOgMnGJBQFIEmO3CUKLrf38nIFp3W7X+JoFiRmn20WAi5+l2sgUWS4ixaIuB3S0g==", - "path": "microsoft.extensions.logging.abstractions/3.1.1", - "hashPath": "microsoft.extensions.logging.abstractions.3.1.1.nupkg.sha512" + "sha512": "sha512-Ixi6qAF3sr1FjPntVamRCMcnrCPx6l0G8VxtVshEk4n8lGs0Hj62jmt/xJ4mHrxR5ST0T49ERT2HsJcv6z+wGw==", + "path": "microsoft.extensions.logging.abstractions/3.1.12", + "hashPath": "microsoft.extensions.logging.abstractions.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.ObjectPool/2.2.0": { + "Microsoft.Extensions.Options/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", - "path": "microsoft.extensions.objectpool/2.2.0", - "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + "sha512": "sha512-by2/frdg182EdpUkFw+2+h+POQTUCVNZRGWgFZKKZhxfuN+hJZFAaGMAuo1ouLexMa1PGTqWAgw/zaZ2WwU71Q==", + "path": "microsoft.extensions.options/3.1.12", + "hashPath": "microsoft.extensions.options.3.1.12.nupkg.sha512" }, - "Microsoft.Extensions.Options/3.1.1": { + "Microsoft.Extensions.Primitives/3.1.12": { "type": "package", "serviceable": true, - "sha512": "sha512-p2faCNhzXyG5oLLOV8n8dwg2rfqS4aRpIWu4qgwZMq+al3133mAQ+Hb822iwRoj3qnKM8zY4A6Jz/Vm/xWHvrA==", - "path": "microsoft.extensions.options/3.1.1", - "hashPath": "microsoft.extensions.options.3.1.1.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/3.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tC5Eo5DbJA+NgiIw26R5c97N02tFvtfqstUxqb/4qXPLXI2IAIWSMUkh/1c9Gw59TT9hNkLwlmLErSPlHgyJVQ==", - "path": "microsoft.extensions.primitives/3.1.1", - "hashPath": "microsoft.extensions.primitives.3.1.1.nupkg.sha512" - }, - "Microsoft.Extensions.WebEncoders/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==", - "path": "microsoft.extensions.webencoders/2.2.0", - "hashPath": "microsoft.extensions.webencoders.2.2.0.nupkg.sha512" + "sha512": "sha512-QjEKb7QWbk44/t05BKlYaHP1sX2jOW9MypKVeMikX6932J34AioVo9heppJ8XAUpBLL15iOiyncSLWgHE32xMg==", + "path": "microsoft.extensions.primitives/3.1.12", + "hashPath": "microsoft.extensions.primitives.3.1.12.nupkg.sha512" }, "Microsoft.Net.Http.Headers/2.2.0": { "type": "package", @@ -1999,6 +1796,13 @@ "path": "microsoft.netcore.targets/1.1.0", "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" }, + "Microsoft.VisualStudio.Web.BrowserLink/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cmeqhbB+rdMia3bj6cJaKQw1GDOqHxzDWAjoJqCnz+JYi9a2xsBdzycYy9eMEssVwLmLAUw6sWLMPMfGXAQmWA==", + "path": "microsoft.visualstudio.web.browserlink/2.2.0", + "hashPath": "microsoft.visualstudio.web.browserlink.2.2.0.nupkg.sha512" + }, "Microsoft.Win32.Primitives/4.3.0": { "type": "package", "serviceable": true, @@ -2006,12 +1810,12 @@ "path": "microsoft.win32.primitives/4.3.0", "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" }, - "Microsoft.Win32.Registry/4.5.0": { + "Microsoft.Win32.Registry/4.0.0": { "type": "package", "serviceable": true, - "sha512": "sha512-+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==", - "path": "microsoft.win32.registry/4.5.0", - "hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512" + "sha512": "sha512-q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==", + "path": "microsoft.win32.registry/4.0.0", + "hashPath": "microsoft.win32.registry.4.0.0.nupkg.sha512" }, "MongoDB.Bson/2.9.3": { "type": "package", @@ -2503,12 +2307,12 @@ "path": "system.runtime/4.3.0", "hashPath": "system.runtime.4.3.0.nupkg.sha512" }, - "System.Runtime.CompilerServices.Unsafe/4.7.0": { + "System.Runtime.CompilerServices.Unsafe/4.7.1": { "type": "package", "serviceable": true, - "sha512": "sha512-IpU1lcHz8/09yDr9N+Juc7SCgNUz+RohkCQI+KsWKR67XxpFr8Z6c8t1iENCXZuRuNCc4HBwme/MDHNVCwyAKg==", - "path": "system.runtime.compilerservices.unsafe/4.7.0", - "hashPath": "system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512" + "sha512": "sha512-zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==", + "path": "system.runtime.compilerservices.unsafe/4.7.1", + "hashPath": "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512" }, "System.Runtime.Extensions/4.3.0": { "type": "package", @@ -2559,13 +2363,6 @@ "path": "system.runtime.serialization.primitives/4.3.0", "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" }, - "System.Security.AccessControl/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==", - "path": "system.security.accesscontrol/4.5.0", - "hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512" - }, "System.Security.Claims/4.3.0": { "type": "package", "serviceable": true, @@ -2580,12 +2377,12 @@ "path": "system.security.cryptography.algorithms/4.3.0", "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.Cng/4.4.0": { + "System.Security.Cryptography.Cng/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-3d/d+7sdNpfYfqJFzuE/o6Pl/reaMbH7rlUMNvtm4+XVYHY32tdFa45yjB3vhb6q0YY+IV8GUuiBPRsBFP3yaw==", - "path": "system.security.cryptography.cng/4.4.0", - "hashPath": "system.security.cryptography.cng.4.4.0.nupkg.sha512" + "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", @@ -2608,13 +2405,6 @@ "path": "system.security.cryptography.openssl/4.3.0", "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.Pkcs/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TGQX51gxpY3K3I6LJlE2LAftVlIMqJf0cBGhz68Y89jjk3LJCB6SrwiD+YN1fkqemBvWGs+GjyMJukl6d6goyQ==", - "path": "system.security.cryptography.pkcs/4.5.0", - "hashPath": "system.security.cryptography.pkcs.4.5.0.nupkg.sha512" - }, "System.Security.Cryptography.Primitives/4.3.0": { "type": "package", "serviceable": true, @@ -2629,20 +2419,6 @@ "path": "system.security.cryptography.x509certificates/4.3.0", "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" }, - "System.Security.Cryptography.Xml/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==", - "path": "system.security.cryptography.xml/4.5.0", - "hashPath": "system.security.cryptography.xml.4.5.0.nupkg.sha512" - }, - "System.Security.Permissions/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==", - "path": "system.security.permissions/4.5.0", - "hashPath": "system.security.permissions.4.5.0.nupkg.sha512" - }, "System.Security.Principal/4.3.0": { "type": "package", "serviceable": true, @@ -2650,12 +2426,12 @@ "path": "system.security.principal/4.3.0", "hashPath": "system.security.principal.4.3.0.nupkg.sha512" }, - "System.Security.Principal.Windows/4.5.0": { + "System.Security.Principal.Windows/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==", - "path": "system.security.principal.windows/4.5.0", - "hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512" + "sha512": "sha512-HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==", + "path": "system.security.principal.windows/4.3.0", + "hashPath": "system.security.principal.windows.4.3.0.nupkg.sha512" }, "System.Security.SecureString/4.0.0": { "type": "package", diff --git a/src/lib/netstandard2.1/AspNetCore.Identity.MongoDbCore.dll b/src/lib/netstandard2.1/AspNetCore.Identity.MongoDbCore.dll index bd3c79d..3da1552 100644 Binary files a/src/lib/netstandard2.1/AspNetCore.Identity.MongoDbCore.dll and b/src/lib/netstandard2.1/AspNetCore.Identity.MongoDbCore.dll differ diff --git a/test/AspNetCore.Identity.MongoDbCore.IntegrationTests/AspNetCore.Identity.MongoDbCore.IntegrationTests.csproj b/test/AspNetCore.Identity.MongoDbCore.IntegrationTests/AspNetCore.Identity.MongoDbCore.IntegrationTests.csproj index 78a7e6b..99fef36 100644 --- a/test/AspNetCore.Identity.MongoDbCore.IntegrationTests/AspNetCore.Identity.MongoDbCore.IntegrationTests.csproj +++ b/test/AspNetCore.Identity.MongoDbCore.IntegrationTests/AspNetCore.Identity.MongoDbCore.IntegrationTests.csproj @@ -7,6 +7,7 @@ + @@ -14,7 +15,7 @@ - + @@ -33,8 +34,4 @@ Always - - - -