Skip to content

Instantly share code, notes, and snippets.

@sthewissen
Last active August 8, 2016 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sthewissen/3f3bf5ea681883404b357130840c3d38 to your computer and use it in GitHub Desktop.
Save sthewissen/3f3bf5ea681883404b357130840c3d38 to your computer and use it in GitHub Desktop.
A nuget config connecting to a custom feed
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!-- remove any machine-wide sources with <clear/> -->
<clear />
<!-- add a Team Services feed -->
<add key="MyFeed" value="https://myfeed.pkgs.visualstudio.com/DefaultCollection/_packaging/MyFeed/nuget/v3/index.json" />
<!-- also get packages from the NuGet Gallery -->
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
</packageSources>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment