Recently, I needed to execute xUnit tests with MSBuild, so I've spent some time for creating a MSBuild project running the tests. Luckily, xUnit already has MSBuild tasks so I just needed to hook it up.
I wanted to search for all xUnit unit test DLLs inside a folder and run the tests there. So I'm searching for xunit.core.dll file to get all the folders eventually containing such DLLs and then search all these folders for a pattern - *.Tests.dll. When the tests DLLs are found, xunit
task is run for all of them. So, here's the result .proj file:
="1.0"="utf-8"
<Project
DefaultTargets="Test"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask
AssemblyFile="xunit.runner.msbuild.dll"
TaskName="Xunit.Runner.MSBuild.xunit"/>
<UsingTask TaskName="GetAssemblies" TaskFactory="CodeTaskFactory"
AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">
<ParameterGroup>
<Path ParameterType="System.String" Required="true" />
<XUnitFileName ParameterType="System.String" Required="false"/>
<TestsSearchPattern ParameterType="System.String" Required="false"/>
<Assemblies ParameterType="System.String[]" Output="true" />
</ParameterGroup>
<Task>
<Code Type="Fragment" Language="cs">
<![CDATA[
</Code>
</Task>
</UsingTask>
<Target Name="Test">
<GetAssemblies Path="$(BuildRoot).">
<Output PropertyName="TestAssemblies" TaskParameter="Assemblies"/>
</GetAssemblies>
<xunit Assemblies="$(TestAssemblies)" />
</Target>
</Project>
CodeProject