Skip to content

Commit

Permalink
Add missing NuGet config.
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahelsaig committed Jun 24, 2024
1 parent 2d59339 commit d5c3c82
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!-- Ignore global configuration -->
<clear />
<!-- Here so the Visual Studio package manager won't default to the next feed below. -->
<add key="OrchardCoreCommercePreview" value="https://nuget.cloudsmith.io/orchardcore/commerce/v3/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="OrchardCorePreview" value="https://nuget.cloudsmith.io/orchardcore/preview/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>
<packageSource key="OrchardCoreCommercePreview">
<package pattern="OrchardCore.Commerce*" />
</packageSource>
<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>
</packageSourceMapping>
</configuration>

0 comments on commit d5c3c82

Please sign in to comment.