This refactor of integration test logic is to boost its reusability. Moving some functionality to attributes & customization classes means I can reuse elsewhere without duplication.
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\..\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<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 test helpers.
|
|
</Description>
|
|
<PackageTags>elsa, workflows</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="AutoFixture" Version="4.15.0" />
|
|
<PackageReference Include="Autofixture.AutoMoq" Version="4.15.0" />
|
|
<PackageReference Include="autofixture.xunit2" Version="4.15.0" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
|
|
<PackageReference Include="NodaTime" Version="3.0.3" />
|
|
<PackageReference Include="xunit.extensibility.core" Version="2.4.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\src\core\Elsa\Elsa.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|