I'm struggling to add new NuGet source to store private packages. I have already tried to add config into my .csproj like this post suggests
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="Artifactory-DEV" value="https://theluggage-agct.gray.net/artifactory/api/nuget/nuget-institutional-development-local" protocolVersion="3"/>
</packageSources>
</configuration>
I also tried this but was not able to find an equivalent in dotnet nuget.
nuget sources Add -Name "MyServer" -Source \myserver\packages
OBS: I'm not using Visual Studio 2017 and currently using Ubuntu.