There was no runtime pack for Microsoft.AspNetCore.App available for the specified RuntimeIdentifier 'browser-wasm'

后端 未结 6 966
太阳男子
太阳男子 2020-12-16 00:11

Trying to migrate from ASP.NET Core 3.1 to 5.0 using this guide provided by Microsoft.

Installed SDK 5.0.100-rc.1 with runtimes. Updated project as guide says and sti

6条回答
  •  囚心锁ツ
    2020-12-16 00:54

    I resolved this issue in a way Richard described:

    1. Cleaned up references to Microsoft.Extensions.Logging, Microsoft.Extensions.Configuration,... packages version 3.2 in all solution projects referenced by server and client
    2. Updated .Server project
    3. Updated .Client project. Kept element at target framework section and it worked
    
        net5.0
        3.0
    
    

提交回复
热议问题