Reputation: 61
I am getting the following error while trying to build my automation solution. Due to which i am unable to change anything in my feature file at the moment.
error Version conflict - SpecFlow Visual Studio extension attempted to use SpecFlow code-behind generator 1.9, but project 'POC.Specs' references SpecFlow 2.0.
error We recommend migrating to MSBuild code-behind generation to resolve this issue.
error For more information see https://specflow.org/documentation/Generate-Tests-from-MsBuild/
.net version 4.6.2 Specflow 2.0.0 TestStack White Visual Studio 2015
I have tried reinstalling specflow 2.0.0 but still the same issue persists
Any help would be really appreciated.
Upvotes: 6
Views: 8619
Reputation: 694
If you don't use nuget package for build, then you need to copy the tools from specflow nuget package to your bin folder, where the TechTalk.Specflow.dll is located.
There is an alternative Visual Studio 2019 extension "deveroom" where you can configure the generator tools path manually. That works for every Specflow version. https://marketplace.visualstudio.com/items?itemName=SpecSolutions.DeveroomVisualStudio2019
For Visual Studio 2022 there is the new extension Specflow.VS successor of "deveroom" https://github.com/SpecFlowOSS/SpecFlow.VS
Upvotes: 0
Reputation: 41
The following steps resolved the issue for me:-
Try Step 3 first to resolve the problem. If that doesnt do the trick, go from Step 1 onwards.
refer link
Upvotes: 4
Reputation: 559
This issue did my head in. Basically the fix was simple. My specflow extension was modified to specflow 3.0 changes and this issue that I was getting was for a project on specflow 2.4.1 The steps that I did to fix was simple.
Step 4 was the most important step.
Upvotes: 1
Reputation: 1233
re-generate feature.cs files using 'run custom tool' command
Upvotes: 0
Reputation: 97
Clear the error message in .cs file under the feature file and then rebuild the code
Upvotes: -2