Add Hangfire Pro Repository - gecko-8/devwiki GitHub Wiki

  1. At the same level as the project solution file (.sln), open the NuGet.Config file.
  2. Inside packageSources, add the following:
    <add key="HangfirePro" value="https://nuget.hangfire.io/nuget/hangfire-pro/" />
  1. Add the following section:
    <HangfirePro>
        <add key="Username" value="VogAppDevelopers" />
        <add key="ClearTextPassword" value="PwEjhBQRmTF2n5gy" />
    </HangfirePro>

The end result should look something like this:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
 <add key="nuget.vogdevelopment.com" value="https://nuget.vogdevelopment.com/v3/index.json" protocolVersion="3" />
 <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
 <add key="myget.org" value="https://www.myget.org/F/domaindrivendev/api/v3/index.json" protocolVersion="3" />
 <add key="HangfirePro" value="https://nuget.hangfire.io/nuget/hangfire-pro/" />
</packageSources>
<packageSourceCredentials>
<nuget.vogdevelopment.com>
  <add key="Username" value='nuget' />
  <add key="ClearTextPassword" value='Vog@Nuget!' />
</nuget.vogdevelopment.com>
<HangfirePro>
    <add key="Username" value="VogAppDevelopers" />
    <add key="ClearTextPassword" value="PwEjhBQRmTF2n5gy" />
</HangfirePro>

</packageSourceCredentials>
</configuration>