forked from OutSystems/WebView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNuget.config
24 lines (21 loc) · 809 Bytes
/
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<add key="repositoryPath" value="packages" />
<add key="globalPackagesFolder" value="packages" />
</config>
<packageRestore>
<!-- Opt-In both Package Restore, and MSBuild-Integrated Package Restore, does not make MSBuild restore automatic -->
<add key="enabled" value="True" />
<!-- Opt-In Automatic Package Restore in Visual Studio -->
<add key="automatic" value="True" />
</packageRestore>
<packageSources>
<add key="Nuget" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="Nuget">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>