elsa-core/src/modules/Elsa.Labels/Elsa.Labels.csproj
Sipke Schoorstra ff1f0833ad
Restore EF Core persistence layer (#6931)
* Restore EF Core persistence layer

Originally, we had moved EF Core to the extensions repo, but in practice this turned out to be rather impractical when debugging elsa-core, given that we would lose all of the state (workflow definitions, instances, etc.) across application restarts.

* Integrate PostgreSQL support into EF Core persistence and enhance BlobStorage workflows provider setup.
2025-09-27 20:39:18 +02:00

19 lines
590 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>
Provides funtionality to tag workflows with labels and filter by them.
</Description>
<PackageTags>elsa module labels</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Open.Linq.AsyncExtensions" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\common\Elsa.Api.Common\Elsa.Api.Common.csproj" />
<ProjectReference Include="..\Elsa.Workflows.Management\Elsa.Workflows.Management.csproj" />
</ItemGroup>
</Project>