Browse Source

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.
pull/235/head
Dexter Valkyrie 7 years ago
committed by GitHub
parent
commit
24ca050458
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Services/Identity/Identity.API/Startup.cs

+ 1
- 1
src/Services/Identity/Identity.API/Startup.cs View File

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


Loading…
Cancel
Save