forked from picklesdoc/pickles
-
Notifications
You must be signed in to change notification settings - Fork 0
ArgumentsFeatureDirectory
x97mdr edited this page Oct 29, 2012
·
5 revisions
Allows the user to tell Pickles the root directory where the feature files are located. All files underneath this root directory will be added to the output documentation.
None as yet.
Any valid directory path, either absolute or relative.
- Console
Pickles.exe --feature-directory=C:\MyProject\Features
Pickles.exe -f=C:\MyProject\Features
- Powershell
Pickle-Features -FeatureDirectory C:\MyProject\Features
- MSBuild
<Target Name="document">
<Pickles FeatureDirectory="C:\MyProject\Features" />
</Target>- NAnt
<target Name="document">
<pickles FeatureDirectory="C:\MyProject\Features" />
</target>