我在将我的.NET CORE 3.0应用程序部署到IIS 10.0时遇到问题,我想在其中将其部署到存在web.config的存储库中(我曾经使用ASP.NET MVC来完成该任务,并且它曾经可以工作)。 有可能使其工作吗?如果不是,那么将应用程序部署并在构建后立即检查的最快方法是什么。
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<handlers>
<add name="aspNetCore"
path="*"
verb="*"
modules="AspNetCoreModule"
resourceType="Unspecified"/>
</handlers>
<aspNetCore processPath="%LAUNCHER_PATH%"
arguments="%LAUNCHER_ARGS%"
stdoutLogEnabled="false"
stdoutLogFile=".\logs\stdout"
forwardWindowsAuthToken="false"/>
</system.webServer>
</configuration>