-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathNuGet.Config
More file actions
26 lines (21 loc) · 921 Bytes
/
NuGet.Config
File metadata and controls
26 lines (21 loc) · 921 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!-- Official NuGet feed -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<!-- OrchardCore Preview feed for preview packages -->
<add key="orchardcore-preview" value="https://myget.org/F/orchardcore-preview/api/v3/index.json" />
<!-- OrchardCore nightly feed (fallback) -->
<add key="orchardcore-nightly" value="https://myget.org/F/orchardcore-nightly/api/v3/index.json" />
</packageSources>
<packageSourceCredentials>
<!-- Add credentials here if needed for private feeds -->
</packageSourceCredentials>
<config>
<add key="signatureValidationMode" value="accept" />
</config>
<!-- Disable default sources if needed -->
<disabledPackageSources>
<add key="orchardcore-nightly" value="true" />
</disabledPackageSources>
</configuration>