This commit is contained in:
Nate McMaster 2017-02-08 17:44:52 -08:00
parent fea5d5cfdc
commit 61e7ceba45
4 changed files with 4 additions and 4 deletions

View File

@ -24,7 +24,7 @@ namespace JwtBearerSample
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();

View File

@ -28,7 +28,7 @@ namespace OpenIdConnect.AzureAdSample
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();

View File

@ -28,7 +28,7 @@ namespace OpenIdConnectSample
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();

View File

@ -34,7 +34,7 @@ namespace SocialSample
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();