Skip to content

Instantly share code, notes, and snippets.

@WernerMairl
Created July 20, 2017 04:47
Show Gist options
  • Save WernerMairl/3a79cde3c3915bed2a33181e31272aaa to your computer and use it in GitHub Desktop.
Save WernerMairl/3a79cde3c3915bed2a33181e31272aaa to your computer and use it in GitHub Desktop.
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace Microsoft.AspNetCore.Hosting
{
public static class WebHostDefaults
{
public static readonly string ApplicationKey = "applicationName";
public static readonly string StartupAssemblyKey = "startupAssembly";
public static readonly string DetailedErrorsKey = "detailedErrors";
public static readonly string EnvironmentKey = "environment";
public static readonly string WebRootKey = "webroot";
public static readonly string CaptureStartupErrorsKey = "captureStartupErrors";
public static readonly string ServerUrlsKey = "urls";
public static readonly string ContentRootKey = "contentRoot";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment