I may be the silly one here, but using the latest version of Visual Studio 17.11.3 the command provided in the Getting Started with Visual Studio Guide to add NuGet 'dotnet nuget add source --name "NuGet.org" --source "https://api.nuget.org/v3/index.json"' throws a syntax error
I may be the silly one here, but using the latest version of Visual Studio 17.11.3 the command provided in the Getting Started with Visual Studio Guide to add NuGet 'dotnet nuget add source --name "NuGet.org" --source "https://api.nuget.org/v3/index.json"' throws a syntax error
After some googling the command that did work is "dotnet nuget add source https://api.nuget.org/v3/index.json -n NuGet.org"
Just thought I would offer this as a possible (?) correction, if any others have this issue!