我该如何解决所有申请中的500.19?

时间:2019-07-31 13:53:12

标签: iis .net-core

我创建了 .Net Core Web应用程序,我必须下载 .NET Core运行时和主机捆绑包,但是当我这样做时,我的所有应用程序都会收到此错误。

>

error

即使我将其卸载,仍然会出现错误。 当我尝试使用 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>

0 个答案:

没有答案