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

Commit 1604618

Browse files
Support SpecFlow v3.8.7 (#62)
+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 f1102ec commit 1604618

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
SpecFlow plugin that enables to use Microsoft.Extensions.DependencyInjection for resolving test dependencies.
99

1010
Follows [SpecFlow versioning](https://specflow.org/blog/we-are-simplifying-our-specflow-and-net-version-support/) and currently targets:
11-
* [SpecFlow v3.7.13 or later](https://www.nuget.org/packages/SpecFlow/3.7.13)
11+
* [SpecFlow v3.8.7 or later](https://www.nuget.org/packages/SpecFlow/3.8.7)
1212
* [Microsoft.Extensions.DependencyInjection v5.0.1 or later](https://www.nuget.org/packages/Microsoft.Extensions.DependencyInjection/5.0.1)
1313

1414
Based on [SpecFlow.Autofac](https://github.com/gasparnagy/SpecFlow.Autofac).

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

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

1111
<ItemGroup>
12-
<PackageReference Include="GitVersion.MsBuild" Version="5.6.6">
12+
<PackageReference Include="GitVersion.MsBuild" Version="5.6.9">
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
<PrivateAssets>all</PrivateAssets>
1515
</PackageReference>
16-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
16+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
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" />
1819
<PackageReference Include="xunit" Version="2.4.1" />
1920
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
2021
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2122
<PrivateAssets>all</PrivateAssets>
2223
</PackageReference>
23-
<PackageReference Include="SpecFlow.xUnit" Version="3.7.13" />
24-
<PackageReference Include="coverlet.collector" Version="3.0.2">
24+
<PackageReference Include="SpecFlow.xUnit" Version="3.8.7" />
25+
<PackageReference Include="coverlet.collector" Version="3.0.3">
2526
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2627
<PrivateAssets>all</PrivateAssets>
2728
</PackageReference>
2829
</ItemGroup>
2930

3031
<ItemGroup Condition=" '$(TargetFrameworkIdentifier)' == '.NETFramework' ">
31-
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" />
32+
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2">
33+
<PrivateAssets>all</PrivateAssets>
34+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
35+
</PackageReference>
3236
</ItemGroup>
3337

3438
<ItemGroup>

SpecFlow.DependencyInjection.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1010
.editorconfig = .editorconfig
1111
.gitignore = .gitignore
1212
azure-pipelines.yml = azure-pipelines.yml
13+
.github\dependabot.yml = .github\dependabot.yml
1314
GitVersion.yml = GitVersion.yml
1415
LICENSE = LICENSE
1516
README.md = README.md

SpecFlow.DependencyInjection/SpecFlow.DependencyInjection.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.7.13" />
41+
<PackageReference Include="SpecFlow" Version="3.8.7" />
4242
</ItemGroup>
4343
</Project>

0 commit comments

Comments
 (0)