elsa-core/src/modules/Elsa.Common/Elsa.Common.csproj

26 lines
913 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\common.props" />
<Import Project="..\..\..\configureawait.props" />
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<Description>
Provides services and utility functions common to Elsa modules.
For example, it provides a system clock and a memory store implementation.
</Description>
<PackageTags>elsa module common</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\common\Elsa.Features\Elsa.Features.csproj" />
<ProjectReference Include="..\..\common\Elsa.Mediator\Elsa.Mediator.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LinqKit.Core" Version="1.2.3" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
</ItemGroup>
</Project>