Update Startup.cs

The more general `builder.AddUserSecrets();` is deprecated and will not be available in ASP.NET Core 2.0. You must now qualify it with a type parameter.
This commit is contained in:
Dexter Valkyrie 2017-07-08 09:53:43 +01:00 committed by GitHub
parent a8ad3edf30
commit 24ca050458

View File

@ -40,7 +40,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();