elsa-core/NuGet.Config
Sipke Schoorstra 6b08988edd
Fix CShells package restore in CI
CI failed during restore because the centrally pinned CShells preview version
was no longer available from the mapped cshells Feedz source. Local builds did
not reproduce while the preview packages existed in the developer NuGet cache.

Pin the CShells packages to the public 0.0.28 release and allow CShells package
IDs to resolve from NuGet.org in package source mapping, so clean CI restores no
longer depend on unavailable private/feed preview packages.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-06-19 23:31:54 +02:00

36 lines
1.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="NuGet official package source" value="https://api.nuget.org/v3/index.json" />
<add key="cshells-feedz" value="https://f.feedz.io/sfmskywalker/cshells/nuget/index.json" />
<add key="elsa-preview-feedz" value="https://f.feedz.io/elsa-workflows/elsa-3/nuget/index.json" />
<add key="valence-consolelogstream-feedz" value="https://f.feedz.io/valence-works/consolelogstream/nuget/index.json" />
<add key="valence-loom-feedz" value="https://f.feedz.io/valence-works/loom/nuget/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="NuGet official package source">
<package pattern="*" />
<package pattern="CShells" />
<package pattern="CShells.*" />
</packageSource>
<packageSource key="cshells-feedz">
<package pattern="CShells" />
<package pattern="CShells.*" />
</packageSource>
<packageSource key="elsa-preview-feedz">
<package pattern="Elsa.Platform.PackageManifest.Generator" />
<package pattern="Elsa.Platform.PackageManifest" />
</packageSource>
<packageSource key="valence-consolelogstream-feedz">
<package pattern="ConsoleLogStreaming" />
<package pattern="ConsoleLogStreaming.*" />
</packageSource>
<packageSource key="valence-loom-feedz">
<package pattern="Loom" />
<package pattern="Loom.*" />
</packageSource>
</packageSourceMapping>
</configuration>