gpt4 book ai didi

azure - 需要如何处理无效的runtimeconfig.json Azure应用服务

转载 作者:行者123 更新时间:2023-12-03 04:58:51 24 4
gpt4 key购买 nike

我是第一次尝试 Azure(应用服务),并尝试发布我的 ASP.NET Core 3.0 项目。我已使用 Visual Studio 2019 发布到 Azure,并复制了所有文件,但我不断在日志文件夹中收到错误:

无效的runtimeconfig.json

我读过一些关于它的 Stackoverflow 问题,但其中大多数不适用于我的场景。有人可以帮忙吗?

最佳答案

就我而言,我在 web.config 中对 aspNetCore 进行了以下更改:

from stdoutLogFile="\?%home%\LogFiles\stdout" tostdoutLogFile=".\LogFiles\stdout"

这就是问题出现的原因。但请保持 stdoutLogFile="\?%home%\LogFiles\stdout 不变。

这是完整的 web.config

<configuration>
<location path="." inheritInChildApplications="false">
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".\SmartApp.Inventory.Api.dll" stdoutLogEnabled="true" stdoutLogFile="\\?\%home%\LogFiles\stdout" hostingModel="inprocess" />
</system.webServer>
</location>
</configuration>

关于azure - 需要如何处理无效的runtimeconfig.json Azure应用服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62641342/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com