Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Applications/RevitTestFrameworkApp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ private static bool ParseArguments(IEnumerable<string> args)
{"t:|testName:", "The name of a test to run", v => runner.Test = v},
{"c:|concatenate:", "Concatenate results with existing results file.", v=> runner.Concat = v != null},
{"revit:", "The path to Revit.", v=> runner.RevitPath = v},
{"g|gui", "Run with UI.", v=>runner.Gui = v != null},
{"d|debug", "Run in debug mode.", v=>runner.IsDebug = v != null},
{"h|help", "Show this message and exit.", v=> showHelp = v != null}
};
Expand Down