-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathNuGet.config
28 lines (24 loc) · 863 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
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
<packageSources>
<!-- remove any machine-wide sources with <clear/> -->
<clear />
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="Sitecore Feed" value="https://sitecore.myget.org/F/sc-packages/api/v3/index.json" />
</packageSources>
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="Sitecore Feed">
<package pattern="Sitecore.*" />
</packageSource>
</packageSourceMapping>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
</configuration>