Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active March 3, 2017 00:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/f2bc299fff8ca87999391e594a8ece64 to your computer and use it in GitHub Desktop.
Save dcomartin/f2bc299fff8ca87999391e594a8ece64 to your computer and use it in GitHub Desktop.
public Startup(IHostingEnvironment env)
{
_env = env;
var builder = new ConfigurationBuilder()
.SetBasePath(env.ContentRootPath)
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true)
.AddEnvironmentVariables();
Configuration = builder.Build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment