2019-12-21 11:34:27 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
2020-12-17 15:05:37 +00:00
|
|
|
|
<Import Project="..\..\..\common.props" />
|
|
|
|
|
|
|
2019-12-21 11:34:27 +00:00
|
|
|
|
<PropertyGroup>
|
2020-10-19 20:12:11 +00:00
|
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
2020-04-19 13:39:28 +00:00
|
|
|
|
<Description>
|
2020-10-18 15:42:34 +00:00
|
|
|
|
Elsa is a set of workflow libraries and tools that enable lean and mean workflowing capabilities in any .NET Core application.
|
2020-04-19 13:39:28 +00:00
|
|
|
|
This package provides test helpers.
|
|
|
|
|
|
</Description>
|
|
|
|
|
|
<PackageTags>elsa, workflows</PackageTags>
|
2019-12-21 11:34:27 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-12-19 14:35:11 +00:00
|
|
|
|
<PackageReference Include="AutoFixture" Version="4.15.0" />
|
2021-02-24 13:29:03 +00:00
|
|
|
|
<PackageReference Include="Autofixture.AutoMoq" Version="4.15.0" />
|
|
|
|
|
|
<PackageReference Include="autofixture.xunit2" Version="4.15.0" />
|
2020-12-19 14:35:11 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
|
2020-11-13 19:47:08 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
|
2021-03-18 10:24:04 +00:00
|
|
|
|
<PackageReference Include="NodaTime" Version="3.0.5" />
|
2020-11-13 19:47:08 +00:00
|
|
|
|
<PackageReference Include="xunit.extensibility.core" Version="2.4.1" />
|
2021-03-06 13:55:19 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
|
2021-03-18 10:24:04 +00:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.4" />
|
2019-12-21 11:34:27 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2020-10-19 20:12:11 +00:00
|
|
|
|
<ItemGroup>
|
2020-11-13 19:47:08 +00:00
|
|
|
|
<ProjectReference Include="..\..\..\src\core\Elsa\Elsa.csproj" />
|
2021-03-13 15:21:44 +00:00
|
|
|
|
<ProjectReference Include="..\..\..\src\persistence\Elsa.Persistence.EntityFramework\Elsa.Persistence.EntityFramework.Core\Elsa.Persistence.EntityFramework.Core.csproj" />
|
2020-10-19 20:12:11 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2019-12-21 11:34:27 +00:00
|
|
|
|
</Project>
|