Skip to content

Commit b2fa09b

Browse files
authored
Fix mapping sources
The added sources should be in the packageSources section, not config
1 parent 8b4ce81 commit b2fa09b

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/nuget.config

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
<configuration>
33
<config>
44
<clear />
5-
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
6-
<add key="kzu.io" value="https://pkg.kzu.io/index.json" />
75
<add key="signatureValidationMode" value="accept" />
86
</config>
7+
<packageSources>
8+
<clear />
9+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
10+
<add key="kzu.io" value="https://pkg.kzu.io/index.json" />
11+
</packageSources>
912
<trustedSigners>
1013
<author name="Microsoft">
1114
<certificate fingerprint="3F9001EA83C560D712C24CF213C3D312CB3BFF51EE89435D3430BD06B5D0EECE" hashAlgorithm="SHA256" allowUntrustedRoot="true" />
@@ -19,10 +22,10 @@
1922
</repository>
2023
</trustedSigners>
2124
<packageSourceMapping>
22-
<packageSource key="kzu.io">
25+
<packageSource key="nuget.org">
2326
<package pattern="*" />
2427
</packageSource>
25-
<packageSource key="nuget.org">
28+
<packageSource key="kzu.io">
2629
<package pattern="*" />
2730
</packageSource>
2831
</packageSourceMapping>

0 commit comments

Comments
 (0)