Skip to content

Instantly share code, notes, and snippets.

@fraga
Created May 30, 2011 02:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fraga/998393 to your computer and use it in GitHub Desktop.
Save fraga/998393 to your computer and use it in GitHub Desktop.
Xunit console configuration for .net 4.0 (xunit.console.exe.config)
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<requiredRuntime version="v4.0.20506" safemode="true"/>
</startup>
<configSections>
<section name="xunit" type="Xunit.ConsoleClient.XunitConsoleConfigurationSection, xunit.console"/>
</configSections>
<xunit>
<transforms>
<add
commandline="html"
xslfile="HTML.xslt"
description="output results to HTML file"/>
<add
commandline="nunit"
xslfile="NUnitXml.xslt"
description="output results to NUnit-style XML file"/>
</transforms>
</xunit>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment