Created
July 26, 2018 06:13
-
-
Save wellingtonjhn/200bf1246af0c1d1e5e4a8cd94ef0aec to your computer and use it in GitHub Desktop.
ConfigurationBuilder Initialization
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 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