-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathnuget.config
More file actions
22 lines (22 loc) · 810 Bytes
/
nuget.config
File metadata and controls
22 lines (22 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<!--
Where packages should go. Visual Studio will provide a default value of $(SolutionDir) but command-line based
package restores could end up in a different location. Setting this value keeps Visual Studio and NuGet.exe
in sync for packages.config based restores.
-->
<add key="repositoryPath" value=".\packages" />
</config>
<packageRestore>
<add key="enabled" value="True" />
<add key="automatic" value="True" />
</packageRestore>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
</configuration>