Update Startup.cs

`builder.AddUserSecrets();` is deprecated and will not be available in ASP.NET Core 2.0.
This commit is contained in:
Dexter Valkyrie 2017-06-27 00:17:42 +01:00 committed by GitHub
parent 6fd960d403
commit 7b0d0517f9

View File

@ -37,7 +37,7 @@ namespace eShopOnContainers.Identity
if (env.IsDevelopment())
{
// For more details on using the user secret store see http://go.microsoft.com/fwlink/?LinkID=532709
builder.AddUserSecrets();
builder.AddUserSecrets<Startup>();
}
builder.AddEnvironmentVariables();