Skip to content

Commit

Permalink
Small change to program.cs for dev environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
bharney committed Dec 2, 2018
1 parent 62c48a5 commit f63e047
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ public static IWebHost BuildWebHost(string[] args) =>
.ConfigureAppConfiguration((ctx, config) =>
{
var env = ctx.HostingEnvironment;
//if (env.IsDevelopment())
//{
config.AddUserSecrets<Startup>();
//}
if (env.IsDevelopment())
{
config.AddUserSecrets<Startup>();
}
var builtConfig = config.Build();

var keyVaultConfigBuilder = new ConfigurationBuilder();
Expand Down

0 comments on commit f63e047

Please sign in to comment.