我创建了 .Net Core Web应用程序,我必须下载 .NET Core运行时和主机捆绑包,但是当我这样做时,我的所有应用程序都会收到此错误。
>即使我将其卸载,仍然会出现错误。 当我尝试使用 dotnet 命令在命令提示符下运行它时,它可以运行,但在 IIS 10 上不起作用。
更新:
web.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="dotnet" arguments=".\ProjectName.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
</system.webServer>
</configuration>