-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathNuGet.config
More file actions
23 lines (23 loc) · 1007 Bytes
/
NuGet.config
File metadata and controls
23 lines (23 loc) · 1007 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>
<packageSources>
<!-- Ignore global configuration -->
<clear />
<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>
</packageSourceMapping>
<auditSources>
<!-- This is to prevent such errors during NuGet restore for Cloudsmith: "Error occurred while getting package
vulnerability data: Unable to load the service index for source
https://nuget.cloudsmith.io/orchardcore/preview/v3/index.json." -->
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</auditSources>
</configuration>