2020-07-14 13:24:07 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2020-12-16 09:31:02 +00:00
|
|
|
<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.
|
2020-12-16 09:31:02 +00:00
|
|
|
</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>
|
2020-07-14 13:24:07 +00:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-04-07 10:45:34 +00:00
|
|
|
<PackageReference Include="DistributedLock.Redis" Version="1.0.1" />
|
2020-07-14 13:24:07 +00:00
|
|
|
<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>
|