如何在IIS中托管剃须刀组件?

时间:2019-04-04 17:23:10

标签: iis asp.net-core razor-components

我正在IIS中设置一个剃须刀组件.net core 3.0预览。 从VS 2019开始,通过IIS Express站点工作正常,但是当我使用IIS本身托管它时-前端逻辑不起作用(没有单击响应等),如何在IIS中托管剃须刀组件?

正如我从IIS Express面板中看到的那样-当我的应用程序运行时,它托管在2个端口上。 (可能是客户端和服务器端) 根据{{​​3}},该应用程序随发布的输出包含在ASP.NET Core应用程序中。

我的web.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <location path="." inheritInChildApplications="false">
    <system.webServer>
      <handlers>
        <add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
      </handlers>
      <aspNetCore processPath="dotnet" arguments=".\BlazorApp.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" hostingModel="inprocess" />
    </system.webServer>
  </location>
</configuration>

好像我只托管剃须刀组件应用程序的一侧,但应该同时托管这两个部分。

0 个答案:

没有答案