forked from evolutional/Chamois
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuget.config
20 lines (20 loc) · 830 Bytes
/
nuget.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!--<config>
Do not do this, otherwise the "Getting of the Nugets on the build machine has to be done fresh "EVERY Time"
<add key="globalPackagesFolder" value=".nuget" />
if the OS Drive Cache get too big then use
dotnet nuget locals all -c
</config>-->
<config>
<add key="repositoryPath" value="packages" /> <!--only applies to the packages.config format-->
<add key="globalPackagesFolder" value="../nuget" />
</config>
<packageRestore>
<add key="enabled" value="True" />
<add key="automatic" value="True" />
</packageRestore>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
</configuration>