fengling-console/NuGet.Config
movingsam 7c9409b858
Some checks failed
Build and Push Docker / build (push) Failing after 42m58s
fix(nuget): 删除gitea源中多余的包模式
- 移除packageSourceMapping中gitea源下的"NetCorePal.*"包模式
- 保留"Fengling.*"包模式配置
- 保证NuGet.Config配置的准确性和简洁性
2026-03-01 15:21:10 +08:00

17 lines
542 B
XML

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="gitea" value="https://gitea.shtao1.cn/api/packages/fengling/nuget/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
<packageSourceMapping>
<packageSource key="gitea">
<package pattern="Fengling.*" />
</packageSource>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>