從 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>