elsa-core/NuGet.Config
Sipke Schoorstra 635c3ea42f
Address PR review feedback
Use LINQ for the case-insensitive payload property lookup and keep CShells package source mapping deterministic by mapping CShells packages only to nuget.org.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-06-22 00:44:36 +02:00

27 lines
1.2 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" />
</packageSources>
<packageSourceMapping>
<packageSource key="NuGet official package source">
<package pattern="*" />
<package pattern="CShells" />
<package pattern="CShells.*" />
</packageSource>
<packageSource key="elsa-preview-feedz">
<package pattern="Elsa.PackageManifest.Generator" />
<package pattern="Elsa.PackageManifests" />
</packageSource>
<packageSource key="valence-consolelogstream-feedz">
<package pattern="ConsoleLogStreaming" />
<package pattern="ConsoleLogStreaming.*" />
</packageSource>
</packageSourceMapping>
</configuration>