- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码:
public static async Task Main(string[] args)
{
var host = new HostBuilder()
.ConfigureAppConfiguration(
(hostContext, configApp) =>
{
configApp.SetBasePath(Directory.GetCurrentDirectory());
configApp.AddJsonFile("appsettings.json");
configApp.AddJsonFile(
$"appsettings.{hostContext.HostingEnvironment.EnvironmentName}.json",
optional: true);
})
.Build();
await host.RunAsync();
}
HostingEnvironment.EnvironmentName
的值是
Production
.
ASPNETCORE_ENVIRONMENT=Development
.
最佳答案
添加以下内容解决了这个问题,我在使用反编译的 .NET 源代码进行调试后发现它。它似乎没有记录在任何地方,或者我遗漏了一些东西。
public static async Task Main(string[] args)
{
var host = new HostBuilder()
.ConfigureHostConfiguration(configHost => configHost.AddEnvironmentVariables())
.ConfigureAppConfiguration(
(hostContext, configApp) =>
{
configApp.SetBasePath(Directory.GetCurrentDirectory());
configApp.AddJsonFile("appsettings.json");
configApp.AddJsonFile(
$"appsettings.{hostContext.HostingEnvironment.EnvironmentName}.json",
optional: true);
})
.Build();
await host.RunAsync();
}
ConfigureHostConfiguration
称呼。
关于.net - 在 Rider 中将 HostingEnvironment.EnvironmentName 设置为 Development,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57347413/
默认的 ASP.NET Core web 项目在 Startup.cs 中包含这样的行: if (string.Equals(env.EnvironmentName, "Development", S
我有一个 ASP.NET Core 2 WebAPI,它将部署在以下环境中: INT、QA、STAGE、PRODUCTION 环境。 基于以上,我需要appsettings..json每个环境的文件。
我正在运行 .net core 2.2 并在 Windows 服务中托管 asp.net core。 例如。看到这个 https://docs.microsoft.com/en-us/aspnet/c
我的代码: public static async Task Main(string[] args) { var host = new HostBuilder()
当我在命令行中发出以下命令时: dotnetpublish -o "./../output"-c Release dotnetcli 正确发布了项目。但是,它不会复制 appsettings.Prod
我正在尝试按照 this 使用 Visual Studio 2015 创建 Azure 资源组项目教程。但是当我部署时,出现了一个奇怪的错误: [ERROR] Add-AzureRmAccount :
很抱歉问这个问题,但我已经研究这个 XML 转换系统好几天了。您可以在这里查看:Azure Pipeline File Transformation is not working. Why? 在 II
我创建了配置Staging对于我的 ASP.NET Core 使用 适用于 Windows 的 Docker 桌面 和 Docker VS 工具 .当我运行配置 Staging env.Environ
我是一名优秀的程序员,十分优秀!