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:
parent
a8ad3edf30
commit
24ca050458
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user