Skip to content

Instantly share code, notes, and snippets.

@Pondidum
Created January 28, 2019 13:31
Show Gist options
  • Select an option

  • Save Pondidum/e8cf433ad27c6a58d4f932abbc6bc08f to your computer and use it in GitHub Desktop.

Select an option

Save Pondidum/e8cf433ad27c6a58d4f932abbc6bc08f to your computer and use it in GitHub Desktop.
os specifciy config
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