Skip to content

Instantly share code, notes, and snippets.

@SebRut
Last active August 29, 2015 14:09
Show Gist options
  • Save SebRut/8cd32b519c7015334996 to your computer and use it in GitHub Desktop.
Save SebRut/8cd32b519c7015334996 to your computer and use it in GitHub Desktop.
Travis CI Mono
language: c
install:
- sudo apt-get install mono-devel mono-gmcs nunit-console
script:
- xbuild /*Solution file/.proj config(see CI.proj)*/
- nunit-console /*nunit test dll*/
<?xml version="1.0"?>
<Project ToolsVersion="4.0" DefaultTargets="CI" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="CI" DependsOnTargets="Build" />
<Target Name="Build">
<MSBuild Projects="/*Solution file*/" Properties="Configuration=Debug;Platform=x86" />
</Target>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment