Skip to content

Instantly share code, notes, and snippets.

@wellingtonjhn
Created July 26, 2018 06:13
Show Gist options
  • Select an option

  • Save wellingtonjhn/200bf1246af0c1d1e5e4a8cd94ef0aec to your computer and use it in GitHub Desktop.

Select an option

Save wellingtonjhn/200bf1246af0c1d1e5e4a8cd94ef0aec to your computer and use it in GitHub Desktop.
ConfigurationBuilder Initialization
var configuration = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.Build();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment