forked from microsoft/winget-create
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNuGet.config
More file actions
23 lines (21 loc) · 786 Bytes
/
NuGet.config
File metadata and controls
23 lines (21 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageRestore>
<add key="enabled" value="True" />
<add key="automatic" value="True" />
</packageRestore>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<packageSources>
<!-- Ditch all the User and Computer NuGet package sources we only want a
to use the ones specified in this config file -->
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<disabledPackageSources>
<!-- Override any User and Computer NuGet package settings to gurantee
Project only (above sources) are enabled and the only ones present. -->
<clear />
</disabledPackageSources>
</configuration>