-
Notifications
You must be signed in to change notification settings - Fork 90
/
NuGet.config
34 lines (34 loc) · 1.43 KB
/
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
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!-- Ignore global configuration -->
<clear />
<add key="LombiqPreview" value="https://nuget.cloudsmith.io/lombiq/open-source-orchard-core-extensions/v3/index.json" />
<add key="OrchardCorePreview" value="https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
<!-- OrchardCore.Translations.All is on a separate repo and doesn't have a preview -->
<package pattern="OrchardCore.Translations.*" />
</packageSource>
<!-- Enable these to use preview versions of Orchard Core packages.
<packageSource key="OrchardCorePreview">
<package pattern="OrchardCore*" />
OrchardCore theme packages
<package pattern="SafeMode" />
<package pattern="TheAgencyTheme" />
<package pattern="TheBlogTheme" />
<package pattern="TheComingSoonTheme" />
<package pattern="TheTheme" />
<package pattern="TheAdmin" />
</packageSource>-->
<!-- Enable these to use the Lombiq packages from Cloudsmith instead of NuGet.
<packageSource key="LombiqPreview">
<package pattern="Lombiq.HelpfulLibraries*" />
<package pattern="Lombiq.Tests.UI*" />
</packageSource>
-->
</packageSourceMapping>
</configuration>