Skip to content
This repository was archived by the owner on May 22, 2024. It is now read-only.

Commit 8677491

Browse files
Support SpecFlow v3.9.8 (#64)
+semver: minor Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mark Hoek <mark.hoek@solidtoken.nl>
1 parent 1604618 commit 8677491

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
SpecFlow plugin that enables to use Microsoft.Extensions.DependencyInjection for resolving test dependencies.
99

10-
Follows [SpecFlow versioning](https://specflow.org/blog/we-are-simplifying-our-specflow-and-net-version-support/) and currently targets:
11-
* [SpecFlow v3.8.7 or later](https://www.nuget.org/packages/SpecFlow/3.8.7)
12-
* [Microsoft.Extensions.DependencyInjection v5.0.1 or later](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/5.0.1)
10+
Currently supports:
11+
* [SpecFlow v3.9.8](https://www.nuget.org/packages/SpecFlow/3.9.8) or above
12+
* [Microsoft.Extensions.DependencyInjection v5.0.1](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/5.0.1) or above
1313

1414
Based on [SpecFlow.Autofac](https://github.com/gasparnagy/SpecFlow.Autofac).
1515
Listed on [Available Plugins for SpecFlow](https://specflow.org/documentation/Available-Plugins/).

SpecFlow.DependencyInjection.Tests/SpecFlow.DependencyInjection.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="GitVersion.MsBuild" Version="5.6.9">
12+
<PackageReference Include="GitVersion.MsBuild" Version="5.6.10">
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
<PrivateAssets>all</PrivateAssets>
1515
</PackageReference>
16-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
1717
<PackageReference Include="Microsoft.TestPlatform.ObjectModel" Version="16.8.0" Condition="$(TargetFramework.StartsWith('net4')) AND '$(OS)' == 'Unix'" />
18-
<PackageReference Include="SpecFlow" Version="3.8.7" />
18+
<PackageReference Include="SpecFlow" Version="3.9.8" />
1919
<PackageReference Include="xunit" Version="2.4.1" />
2020
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2222
<PrivateAssets>all</PrivateAssets>
2323
</PackageReference>
24-
<PackageReference Include="SpecFlow.xUnit" Version="3.8.7" />
24+
<PackageReference Include="SpecFlow.xUnit" Version="3.9.8" />
2525
<PackageReference Include="coverlet.collector" Version="3.0.3">
2626
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2727
<PrivateAssets>all</PrivateAssets>

SpecFlow.DependencyInjection/SpecFlow.DependencyInjection.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<None Include="build/*" Pack="true" Visible="true" PackagePath="build/" />
3030
</ItemGroup>
3131
<ItemGroup>
32-
<PackageReference Include="GitVersion.MsBuild" Version="5.6.9">
32+
<PackageReference Include="GitVersion.MsBuild" Version="5.6.10">
3333
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3434
<PrivateAssets>all</PrivateAssets>
3535
</PackageReference>
@@ -38,6 +38,6 @@
3838
<PrivateAssets>all</PrivateAssets>
3939
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4040
</PackageReference>
41-
<PackageReference Include="SpecFlow" Version="3.8.7" />
41+
<PackageReference Include="SpecFlow" Version="3.9.8" />
4242
</ItemGroup>
4343
</Project>

0 commit comments

Comments
 (0)