Created
January 28, 2019 13:31
-
-
Save Pondidum/e8cf433ad27c6a58d4f932abbc6bc08f to your computer and use it in GitHub Desktop.
os specifciy config
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(); | |
| builder.AddJsonFile("appsettings.json") | |
| if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) | |
| builder.AddJsonFile($"appsettings.win.json"); | |
| if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) | |
| builder.AddJsonFile($"appsettings.osx.json"); | |
| var config = builder.Build(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment