Created
May 17, 2017 11:32
-
-
Save dmitry-zaets/4983ef3173e7611a2c31c09afb22027c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var builder = new ConfigurationBuilder() | |
.SetBasePath(env.ContentRootPath) | |
.AddJsonFile(“config.json”, optional: true, reloadOnChange: true) | |
.AddJsonFile($”appsettings.{env.EnvironmentName}.json”, optional: true) | |
.AddEnvironmentVariables(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment