elsa-core/src/modules/Elsa.MongoDb/Elsa.MongoDb.csproj
Marko Lahma 575892c44f
Enable CPM transitive pinning and resolve version conflicts (#6069)
Co-authored-by: Sipke Schoorstra <sipkeschoorstra@outlook.com>
2024-10-31 09:12:21 +01:00

33 lines
1.5 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>
Provides MongoDB implementations of various abstractions from various modules.
</Description>
<PackageTags>elsa module persistence mongo</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Options"/>
<PackageReference Include="MongoDB.Driver"/>
<!--
TODO: Uncomment once https://github.com/jbogard/MongoDB.Driver.Core.Extensions.DiagnosticSources/pull/41 is merged and deployed.
<PackageReference Include="MongoDB.Driver.Core.Extensions.DiagnosticSources" />
-->
<PackageReference Include="MongoDB.Driver.Extensions"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\common\Elsa.Features\Elsa.Features.csproj"/>
<ProjectReference Include="..\Elsa.Alterations.Core\Elsa.Alterations.Core.csproj"/>
<ProjectReference Include="..\Elsa.Alterations\Elsa.Alterations.csproj"/>
<ProjectReference Include="..\Elsa.Common\Elsa.Common.csproj"/>
<ProjectReference Include="..\Elsa.Http\Elsa.Http.csproj"/>
<ProjectReference Include="..\Elsa.Identity\Elsa.Identity.csproj"/>
<ProjectReference Include="..\Elsa.Labels\Elsa.Labels.csproj"/>
<ProjectReference Include="..\Elsa.Workflows.Management\Elsa.Workflows.Management.csproj"/>
<ProjectReference Include="..\Elsa.Workflows.Runtime\Elsa.Workflows.Runtime.csproj"/>
</ItemGroup>
</Project>