Erro HTTP 502.5 no .NET core 2.1.3 no servidor de janela 2016

Eu instalo o .NET core versão 2.1.3 para o meu novo computador com o Windows 2016 do servidor de janelas. Eu hospedei no IIS 10. Mas há um erro 502

HTTP Error 502.5 - Process Failure

Common causes of this issue:
The application process failed to start
The application process started but then stopped
The application process started but failed to listen on the configured port

Este é o meu trecho para 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=".\WebApplication1.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" />
  </system.webServer>
</configuration>

questionAnswers(3)

yourAnswerToTheQuestion