Nuget package installed but references not resolved

前端 未结 7 1094
后悔当初
后悔当初 2020-12-03 06:47

I have a multi-project solution with Prism Nuget packages installed in several projects. I then attempted to add a Prism Mef extensions package to one of the projects using

7条回答
  •  难免孤独
    2020-12-03 07:29

    Within the Package Manager Console run the following command:

    Update-Package -reinstall
    

    This will reinstall each nuget package within that project which should resolve any missing references.

    If you know you're missing a specific reference:

    Update-Package -reinstall 
    

提交回复
热议问题