发布到 IIS ASP.NET Core 3.1

Publishing to IIS ASP.NET Core 3.1

我有一个 ASP.NET 3.1 项目发布到 windows 服务器。当我 运行 在我的计算机上本地项目时,它工作正常;但是,当我远程桌面进入 windows 服务器时,我在网络选项卡中收到 500 错误和以下错误:

我已经在 Launch.json 文件中将我的环境变量更改为 Development,但仍然收到相同的错误

 "IIS Express": {
      "commandName": "IISExpress",
      "launchBrowser": true,
      "environmentVariables": {
        "ASPNETCORE_ENVIRONMENT": "Development"
      }
    }

当我查看 windows 事件查看器时,我发现了这个错误: 谁能帮我弄清楚这是怎么回事?

请检查 ASPNETCORE_ENVIRONMENT 变量的值。您必须将此环境变量设置为“生产”(或开发以外的其他环境)。

否则,您可以像这样更新 web.config:

<configuration>
 <system.webServer>
    <handlers>
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
    </handlers>
    <aspNetCore processPath=".\Application.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false">
        <environmentVariables>
            <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Production" />
        </environmentVariables>
    </aspNetCore>
 </system.webServer>
</configuration>

有关详细信息,请参阅此