HttpPlatformHandler 已被 ASP.NET IIS 10 核心弃用,等效配置是什么?

HttpPlatformHandler is deprecated by ASP.NET Core for IIS 10, what is the equivalent configuration?

我正在尝试下载 httpPlatformHandler 并且我 discovered 它已被 ASP.NET Core 弃用。

现在,如果您希望 Web 应用位于 IIS 之后,则必须改用 ASP.NET Core。

这如何更改配置?

在我拥有的之前是这样的:\

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <handlers>
           <add
               name="httpplatformhandler_rootWiki"
               path="*"
               verb="*"
               modules="httpPlatformHandler"
               resourceType="Unspecified"
               requireAccess="Script" />
        </handlers>
        <httpPlatform
           stdoutLogEnabled="true"
           stdoutLogFile=".\node.log"
           startupTimeLimit="20"
           processPath="C:\Program Files\nodejs\node.exe"
           arguments=".\node_modules\tiddlywiki\tiddlywiki.js ./wiki --listen port=PORT"
        >
           <environmentVariables>
                <environmentVariable name="PORT" value="%HTTP_PLATFORM_PORT%" />
                <environmentVariable name="NODE_ENV" value="Production" />
           </environmentVariables>
        </httpPlatform>
    </system.webServer>
</configuration>

我编辑了标签指出你被一篇不相关的文章误导了(只有ASP.NET核心应用程序应该切换到ASP.NET核心模块),

https://whosebug.com/tags/httpplatformhandler/info