Skip to content

Instantly share code, notes, and snippets.

@HowardvanRooijen
Created March 31, 2015 06:45
Show Gist options
  • Save HowardvanRooijen/312a906ce895890db07c to your computer and use it in GitHub Desktop.
Save HowardvanRooijen/312a906ce895890db07c to your computer and use it in GitHub Desktop.
Custom NuGet Configuration file for performing a package restore against a private nuget feed. Useful for Azure Web Apps
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<packageSources>
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="custom_package_source" value="https://custom_package_source/nuget/v1/FeedService.svc/" />
</packageSources>
<disabledPackageSources />
<packageSourceCredentials>
<custom_package_source>
<add key="Username" value="CustomUsername" />
<add key="ClearTextPassword" value="CustomPassword" />
</custom_package_source>
</packageSourceCredentials>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment