Specifies option property key/value pairs for the test runner.

Namespace:  Gallio.MSBuildTasks
Assembly:  Gallio.MSBuildTasks (in Gallio.MSBuildTasks.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public string[] RunnerProperties { private get; set; }
Visual Basic (Declaration)
Public Property RunnerProperties As String()

Examples

The following example specifies some extra NCover arguments.
CopyC#
<gallio>
<Target Name="MyTarget">
    <Gallio Files="MyTestAssembly.dll" RunnerExtensions="NCoverArguments='//eas Gallio'" />
</Target>

See Also