elsa-core/NuGet.Config
Sipke Schoorstra f11bf2f012
Switch to SQLite and update project and package configurations
- Remove PostgreSQL project references and related configurations.
- Add `Directory.Build.props` to handle feature-specific package references.
- Update CShells package versions to 0.0.24.
- Add `elsa-preview-feedz` to NuGet config for package sourcing.
- Adjust application URL to use a new port.
2026-05-16 01:52:53 +02:00

24 lines
964 B
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" />
</packageSources>
<packageSourceMapping>
<packageSource key="NuGet official package source">
<package pattern="*" />
</packageSource>
<packageSource key="cshells-feedz">
<package pattern="CShells" />
<package pattern="CShells.*" />
</packageSource>
<packageSource key="elsa-preview-feedz">
<package pattern="Elsa.PackageManifest.Generator" />
<package pattern="Elsa.PackageManifests" />
</packageSource>
</packageSourceMapping>
</configuration>