Created
July 20, 2017 04:47
-
-
Save WernerMairl/3a79cde3c3915bed2a33181e31272aaa to your computer and use it in GitHub Desktop.
WebHostDefaults (screenshot: https://github.com/aspnet/Hosting/blob/master/src/Microsoft.AspNetCore.Hosting.Abstractions/WebHostDefaults.cs)
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
// 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