HTTP Error 502.5 - Process Failure asp.net core 2.0

前端 未结 5 1277
你的背包
你的背包 2021-01-14 14:46

Problem

I already developed my web app and published it to azure with asp.net core 1.1 and it was working fine until I upgraded my web application to Core 2.0 final

5条回答
  •  无人及你
    2021-01-14 15:37

    After upgraded to ASP.NET Core 2.0, you need to add following configuration section to all the .csproj files in the solution.

    
       
    
    

    You could create a new ASP.NET Core 2.0 application to check it. The DotNetCliToolReference configuration section is already in the new ASP.NET Core 2.0 application project file but missed in your upgraded application project file.

提交回复
热议问题