Anand
Anand

Reputation: 245

techtalk.specflow.dll is missing

I have tried to write a few features using Specflow. Unfortunately I couldn't find techtalk.specflow.dll anywhere in the system after installed it through the following URL.

http://visualstudiogallery.msdn.microsoft.com/9915524d-7fb0-43c3-bb3c-a8a14fbd40ee

Am I missing something? Could you please help?

Upvotes: 4

Views: 9190

Answers (2)

K0D4
K0D4

Reputation: 2603

For whatever reason, the nuget package was not installing SpecFlow correctly for me via the console.

So, I copied the contents of the package (*\packages\SpecRun.Runner.1.5.2\tools) to %localappdata%\Temp\VisualStudioTestExplorerExtensions\SpecRun.Runner.1.5.2\tools

And then it worked

Upvotes: 0

chr99ha
chr99ha

Reputation: 596

The Visual Studio gallery download just installs the Visual Studio Plugin for SpecFlow (project integration, editor support, etc.).

You need to refer SpecFlow also in your testing project through NuGet, which will download the SpecFlow runtime dll as well as the SpecFlow command line tool. See also https://github.com/techtalk/SpecFlow/wiki/Setup-SpecFlow-Projects

Upvotes: 13

Related Questions