Skip to content

Instantly share code, notes, and snippets.

@SergeiGolos
Created September 27, 2012 22:50
Show Gist options
  • Save SergeiGolos/3796920 to your computer and use it in GitHub Desktop.
Save SergeiGolos/3796920 to your computer and use it in GitHub Desktop.
NANT: Xunit Test Runner
<Project DefaultTargets="Test" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask
AssemblyFile="[XUnitPath]xunit.runner.msbuild.dll"
TaskName="Xunit.Runner.MSBuild.xunit"/>
<Target Name="Test">
<xunit Assembly="[AssemblyPath]" />
</Target>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment