从 web.config 使用 ASPNETCORE ENVIRONMENT

如果你不想从环境变量中使用 ASPNETCORE_ENVIRONMENT 并在应用程序的 web.config 中使用它,那么请修改 web.config,如下所示:

<aspNetCore processPath=".\WebApplication.exe" arguments="" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false">
  <environmentVariables>
    <environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" />
  </environmentVariables>
</aspNetCore>