-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathnuget.config
31 lines (31 loc) · 1.29 KB
/
nuget.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<!-- Allows you to install the NuGet packages in the specified folder,
instead of the default "$(Solutiondir)\Packages" folder. -->
<add key="repositoryPath" value="..\..\..\.nuget\packages\" />
</config>
<solution>
<!-- Disable source control integration for the "Packages" folder. -->
<add key="disableSourceControlIntegration" value="true" />
</solution>
<packageRestore>
<!-- Allow NuGet to download missing packages -->
<add key="enabled" value="false" />
<!-- Automatically check for missing packages during build in Visual Studio -->
<add key="automatic" value="false" />
</packageRestore>
<activePackageSource>
<!-- "ActivePackageSource" points to the currently active source.
Speciying "(Aggregate source)" as the source value would imply that
all the current package sources except for the disabled ones are active. -->
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<packageSourceCredentials>
<!-- Allows you to set the credentials to access the given package source. -->
<!-- <feedName>
<add key="Username" value="foobar" />
<add key="ClearTextPassword" value="secret" />
</feedName> -->
</packageSourceCredentials>
</configuration>