How do I use Travis-CI with C# or F#
Travis CI continuous integration service officially supports many languages , but not C# or F#. Can I use it with my .net projects? danielnixon Travis CI now supports C# . Quoting liberally from that page: Overview The setup for C#, F#, and Visual Basic projects looks like this: language: csharp solution: solution-name.sln mono: - latest - 3.12.0 - 3.10.0 Script By default Travis will run xbuild solution-name.sln. Xbuild is a build tool designed to be an implementation for Microsoft's MSBuild tool. To override this, you can set the script attribute like this: language: csharp solution: