21 lines
899 B
XML
21 lines
899 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFrameworks>net7.0;net8.0;net9.0</TargetFrameworks>
|
||
|
|
<Description>
|
||
|
|
Extensions for testing Elsa Workflows in integration tests.
|
||
|
|
</Description>
|
||
|
|
<PackageTags>elsa testing integration</PackageTags>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.0" Condition="'$(TargetFramework)' == 'net7.0'" />
|
||
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0" Condition="'$(TargetFramework)' == 'net8.0'" />
|
||
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.0-preview.1.23112.2" Condition="'$(TargetFramework)' == 'net9.0'" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\..\modules\Elsa.Common\Elsa.Common.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|