ASP.NET Core 3.0 not showing on Visual Studio 2019

前端 未结 17 1222
后悔当初
后悔当初 2020-12-08 12:41

I want to test the new Blazor server-side framework (aka Razor Components).

I installed Visual Studio 2019 RC, and then the .Net Core 3.0 preview 2, following this o

17条回答
  •  难免孤独
    2020-12-08 13:13

    If your solution uses global.json and sdk:version isn't compatible with the target framework, it won't let you select it or it disappears from Target framework drop-down in your project's properties. You will need to update it to something like this:

    {
      "sdk": {
        "version": "3.1.0",
        "rollForward": "latestMinor"
      }
    }
    

提交回复
热议问题