Upgrading from dnx to vs2017 aspnetcore

前端 未结 2 1988
小蘑菇
小蘑菇 2020-12-22 12:35

So I just installed VS2017 and loaded my application. It asked to migrate and there were a tonne of issues which I have now fixed. The last remaining issues are the followin

相关标签:
2条回答
  • 2020-12-22 12:50

    Looks like there is a typo in your launchSettings.json

      "profiles": {
        "IIS Express": {
        "commandName": "IISExpress",
        "launchBrowser": true,
        "environmentVariables": {
            "ASPNETCORE_ENVIRONMENT": "Development"
         }
        },
    
    0 讨论(0)
  • 2020-12-22 12:53

    This error occurred to me, I use Visual Studio 2019:

    The project doesn't know how to run the profile IIS Express.

    Solution: I updated Visual Studio 2019 to the latest version

    Tools -> Get tools and features

    Everything worked fine again!

    Installed version: Microsoft Visual Studio Community 2019 Versão 16.6.5

    0 讨论(0)
提交回复
热议问题