React to aspnet/Configuration#594
This commit is contained in:
parent
fea5d5cfdc
commit
61e7ceba45
|
|
@ -24,7 +24,7 @@ namespace JwtBearerSample
|
||||||
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();
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ namespace OpenIdConnect.AzureAdSample
|
||||||
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();
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ namespace OpenIdConnectSample
|
||||||
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();
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@ namespace SocialSample
|
||||||
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…
Reference in New Issue