-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathNuGet.config
More file actions
35 lines (29 loc) · 1.29 KB
/
NuGet.config
File metadata and controls
35 lines (29 loc) · 1.29 KB
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
<add key="NuGet2" value="https://api.nuget.org/v3/index.json" />
<add key="OrchardCorePreview" value="https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json" />
</packageSources>
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<!-- To point OrchardCore to previews, update the packageSource key to OrchardCorePreview. -->
<packageSource key="NuGet2">
<package pattern="OrchardCore.Translations.*" />
</packageSource>
<packageSource key="OrchardCorePreview">
<package pattern="OrchardCore.*" />
<package pattern="OrchardCore" />
<package pattern="TheAdmin" />
<package pattern="TheTheme" />
<package pattern="TheBlogTheme" />
<package pattern="TheAgencyTheme" />
<package pattern="SafeMode" />
<package pattern="TheComingSoonTheme" />
</packageSource>
<packageSource key="NuGet">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>