Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any difference between specflow's .msi installer and its nuget package?

On specflow's own instalation guide it says that the only way to install it is using the .msi installer and most of the tutorials I've read on the subject tell me to download and install said file but when I search on the nuget package manager I find there's also an available package for specflow.

like image 745
Eduardo Serra Avatar asked Oct 09 '22 14:10

Eduardo Serra


1 Answers

The difference is in the tooling. With the MSI you get full item template, syntax coloring and intellisense support in the IDE where as with the NuGet you just get the code generation and runtime support. So I'd say 9 times out of 10 if you're going to be doing any serious work with it you're going to want the MSI for those rich features.

At this point they really should be offering it as a Visual Studio Extension for a lot more integrated install experience using VS Extension Manager.

like image 171
Drew Marsh Avatar answered Oct 18 '22 10:10

Drew Marsh