Skip to content

Instantly share code, notes, and snippets.

@virtualdreams
Created March 23, 2017 06:40
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 virtualdreams/2f1fbdee8aa95c0e2d962d65cb6ab91b to your computer and use it in GitHub Desktop.
Save virtualdreams/2f1fbdee8aa95c0e2d962d65cb6ab91b to your computer and use it in GitHub Desktop.
Sample configuration for nuget/vscode to move that big and fat .nuget folder from c directory.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageRestore>
<add key="enabled" value="True" />
<add key="automatic" value="True" />
</packageRestore>
<config>
<add key="https_proxy" value="http://127.0.0.1:3128/" />
<add key="http_proxy" value="http://127.0.0.1:3128/" />
<add key="globalPackagesFolder" value="e:\Entwicklung\.nuget" />
<!-- <add key="repositoryPath" value="e:\Entwicklung\.nuget\packages" /> -->
</config>
<packageSources>
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="Local source" value="E:\Entwicklung\NuGet Repository" />
</packageSources>
<disabledPackageSources>
<add key="Local source" value="true" />
</disabledPackageSources>
<activePackageSource>
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
</activePackageSource>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment