Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

nuget package reference blue icon in visual studio 2017

Tags:

For some reason in my console app, couple of the reference that I installed thru nuget shows the blue nuget icon. I can build my project locally, but not after I deploy my project to cloud. The error msg is complaining about not able to find these 2 references. Seems like I can't delete them either by right click(no delete option avaialble). Any idea?

enter image description here

like image 287
checai Avatar asked May 24 '18 01:05

checai


1 Answers

nuget package reference blue icon in visual studio 2017

That because you are using the packagereference on the project types that are not .NET Core.

You can edit the .csproj file and check if it contains following ItemGroup:

  <ItemGroup>
    <PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
  </ItemGroup>

To resolve this issue, you can delete this PackageReference from your project file, then add those package with nuget package.

Besides, you should check if you have set the Default package management format to PackageReference. If yes, change it to packages.config, then add those two packages with nuget:

enter image description here

Hope this helps.

like image 146
Leo Liu-MSFT Avatar answered Sep 29 '22 10:09

Leo Liu-MSFT