elsa-core/test/shared/Elsa.Testing.Shared/Elsa.Testing.Shared.csproj

32 lines
1.5 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\common.props" />
<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>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoFixture" Version="4.16.0" />
<PackageReference Include="Autofixture.AutoMoq" Version="4.16.0" />
<PackageReference Include="autofixture.xunit2" Version="4.16.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" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.5" />
</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" />
<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>
</Project>