The list of relative or absolute paths of test files, projects and assemblies to execute.
Wildcards may be used. This is required.
Namespace:
Gallio.MSBuildTasksAssembly: Gallio.MSBuildTasks (in Gallio.MSBuildTasks.dll) Version: 3.2.0.0 (3.2.528.0)
Syntax
Examples
The following example shows how to specify the test files, projects and assemblies
(for a more complete example please see the Gallio task documentation):
CopyC#
<!-- Specify the test files, projects and assemblies -->
<ItemGroup>
<TestFile Include="[Path-to-test-assembly1]/TestAssembly1.dll" />
<TestFile Include="[Path-to-test-assembly2]/TestAssembly2.dll" />
<TestFile Include="[Path-to-test-script1]/TestScript1_spec.rb" />
<TestFile Include="[Path-to-test-script2]/TestScript2.xml" />
</ItemGroup>
<Target Name="MyTarget">
<Gallio Files="@(TestFile)" />
</Target>