elsa-core/src/locking/Elsa.DistributedLocking.Redis/Elsa.DistributedLocking.Redis.csproj

27 lines
995 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\common.props" />
<Import Project="..\..\..\configureawait.props" />
2020-10-18 15:42:34 +00:00
<PropertyGroup>
2021-01-31 17:44:57 +00:00
<TargetFramework>netstandard2.1</TargetFramework>
2020-10-18 15:42:34 +00:00
<RootNamespace>Elsa</RootNamespace>
<Description>
Elsa is a set of workflow libraries and tools that enable lean and mean workflowing capabilities in any .NET Core application.
This package provides a distributed locking provider using Redis.
</Description>
2020-12-11 19:59:28 +00:00
<PackageTags>elsa, workflows, distributed lock, redis</PackageTags>
2020-10-18 15:42:34 +00:00
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DistributedLock.Redis" Version="1.0.1" />
<PackageReference Include="RedLock.net" Version="2.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\core\Elsa.Abstractions\Elsa.Abstractions.csproj" />
<ProjectReference Include="..\..\core\Elsa.Core\Elsa.Core.csproj" />
</ItemGroup>
</Project>