Browse Source

Update Startup.cs

`builder.AddUserSecrets();` is deprecated and will not be available in ASP.NET Core 2.0.
pull/227/head
Dexter Valkyrie 7 years ago
committed by GitHub
parent
commit
7b0d0517f9
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

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


Loading…
Cancel
Save