Visual studio 2015 project missing all references

前端 未结 9 756
星月不相逢
星月不相逢 2021-01-30 06:45

Starting from today, a WPF project that belongs to a solution with 20 projects, set all my references to missing

I\'ve just checked the MS suggestion and the othe

9条回答
  •  别那么骄傲
    2021-01-30 06:57

    The resolution to this issue is.

    Whenever you import a project to VS 2015 it modifies your .csproj. So, in order to fix it. Right click on .csproj and open it in notepad or any editor and delete the following

    
      
        This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
      
      
    
    

    Then build your solution and it should work.

提交回复
热议问题