Changing The Defaults - jole78/TeamCity.SpecFlow.Reporting GitHub Wiki
If you don't like the conventions, the defaults, that we have chosen you can always change them.
The basic idea is that you'd call the Set-Properties function before the Invoke-TeamCitySpecFlowReport function for the keys, and values, you'd like to change.
Here's a quick example:
# import the PS module
Import-Module .\TeamCity.SpecFlow.Reporting.psm1
# Change the default/s as you like
Set-Properties @{
Configuration = 'Debug'
}
# execute the function (now with your custom changes applied)
Invoke-TeamCitySpecFlowReportSee the examples for more details.