Home > database >  Not able to find the reference tab to add Json.NET for C#
Not able to find the reference tab to add Json.NET for C#

Time:02-10

I created my first project and I am trying to work with JSON files. I am not able to see the tab of references in my Visual Studio. How can I retrieve the tab? I tried to Google and I cannot see the issue here.

This is my current Project Solution looks

enter image description here

[enter image description here]

[enter image description here]

CodePudding user response:

Double click the project node in Solution Explorer, add the following, press ctrl S. After a few seconds the package is downloaded and installed.

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

You should also read up on using enter image description here

  • Related