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

Commit

Permalink
Support SpecFlow v3.8.7 (#62)
Browse files Browse the repository at this point in the history
+semver: minor
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mark Hoek <mark.hoek@solidtoken.nl>
  • Loading branch information
dependabot[bot] authored May 19, 2021
1 parent f1102ec commit 1604618
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
SpecFlow plugin that enables to use Microsoft.Extensions.DependencyInjection for resolving test dependencies.

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

Based on [SpecFlow.Autofac](https://github.com/gasparnagy/SpecFlow.Autofac).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,30 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GitVersion.MsBuild" Version="5.6.6">
<PackageReference Include="GitVersion.MsBuild" Version="5.6.9">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="Microsoft.TestPlatform.ObjectModel" Version="16.8.0" Condition="$(TargetFramework.StartsWith('net4')) AND '$(OS)' == 'Unix'" />
<PackageReference Include="SpecFlow" Version="3.8.7" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="SpecFlow.xUnit" Version="3.7.13" />
<PackageReference Include="coverlet.collector" Version="3.0.2">
<PackageReference Include="SpecFlow.xUnit" Version="3.8.7" />
<PackageReference Include="coverlet.collector" Version="3.0.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

<ItemGroup Condition=" '$(TargetFrameworkIdentifier)' == '.NETFramework' ">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions SpecFlow.DependencyInjection.sln
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.editorconfig = .editorconfig
.gitignore = .gitignore
azure-pipelines.yml = azure-pipelines.yml
.github\dependabot.yml = .github\dependabot.yml
GitVersion.yml = GitVersion.yml
LICENSE = LICENSE
README.md = README.md
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SpecFlow" Version="3.7.13" />
<PackageReference Include="SpecFlow" Version="3.8.7" />
</ItemGroup>
</Project>

0 comments on commit 1604618

Please sign in to comment.