forked from SonarSource/sonarqube-roslyn-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuget.config
43 lines (42 loc) · 1.43 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
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!--
For detailled documentation of this file see
https://docs.microsoft.com/en-us/nuget/reference/nuget-config-file
-->
<config>
<!--
Used to specify the default location to expand packages.
See: NuGet.exe help install
See: NuGet.exe help update
NOTE: only applies to projects using packages.config.
-->
<add key="repositoryPath" value="packages" />
<!--
Used to specify the default location to expand packages.
NOTE: only applies to projects using PackageReference format.
-->
<add key="globalPackagesFolder" value="packages" />
</config>
<packageRestore>
<!-- Allow NuGet to download missing packages -->
<add key="enabled" value="True" />
<!-- Automatically check for missing packages during build in Visual Studio -->
<add key="automatic" value="True" />
</packageRestore>
<!--
Used to specify the default Sources for list, install and update.
See: NuGet.exe help list
See: NuGet.exe help install
See: NuGet.exe help update
-->
<!-- used to store credentials -->
<packageSourceCredentials />
<!-- Used to specify which one of the sources are active -->
<activePackageSource>
<!-- this tells that all of them are active -->
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<!-- Used to disable package sources -->
<disabledPackageSources />
</configuration>