NuGet - Private Packages
1. Configuration via nuget.config file
Prerequisites
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="github" value="https://nuget.pkg.github.com/AikidoSec/index.json" />
</packageSources>
<packageSourceCredentials>
<github>
<add key="Username" value="AikidoSec" />
<add key="ClearTextPassword" value="ghp_ABC123...XYZ" />
</github>
</packageSourceCredentials>
</configuration>Configuration in Aikido


2. Configuration via .NET's nuget CLI

Last updated
Was this helpful?