Installation & Configuration¶
Installation¶
The SpecFlow+ Excel plugin is available from NuGet.
To add the package to your Visual Studio project:
- Right-click on your specification project and select Manage Nuget Packages for Solution.
- Search for “SpecFlow Excel” on nuget.org and install the SpecFlow+ Excel plugin
Alternatively, you can install the package from the NuGet console (Tools | NuGet Package Manager | Package Manager Console) as follows:
Install-Package SpecFlow.Plus.Excel -ProjectName myproject
Configuration¶
When installing the NuGet package, the necessary configuration steps are performed. You can verify that the SpecFlow+ Excel plugin is configured correctly for SpecFlow in the App.config
file, which should contain the following section:
<specFlow>
<plugins>
<add name="SpecFlow.Plus.Excel" type="Generator" />
</plugins>
</specFlow>