Project file is incomplete. Expected imports are missing

后端 未结 30 1986
深忆病人
深忆病人 2020-12-07 19:30

After format my computer I reinstalled Vs 2017 V 15.6.3 and install ASP.Net Core SDK from Microsoft 2.1.4

But when I create new asp core application VS failed with e

30条回答
  •  广开言路
    2020-12-07 20:13

    You can check global.json file which you can find in solution root directory and make sure that the target SDK version in it installed on your machine or update it to one you already have it installed for example if you have SDK version 2.1.4 installed your global.json should look like this

    {
      "sdk":
      {
        "version": "2.1.400"
      }
    }   
    

提交回复
热议问题