4

Is there any online CI build server which integrate with github for .NET projects?

I know only travis but it isn't support .NET projects.

Mariusz
  • 442
  • 5
  • 16
  • possible duplicate of [Anyone know of a hosted TeamCity build provider?](http://stackoverflow.com/questions/7884213/anyone-know-of-a-hosted-teamcity-build-provider) – Howli May 20 '14 at 20:45

2 Answers2

4

Teamcity is a great CI tool with really good support for .NET. This question covers hosted solutions. I think there is even one that's free if your project is open source.

Community
  • 1
  • 1
mclaassen
  • 5,018
  • 4
  • 30
  • 52
2

I know only travis but it isn't support .NET projects.

Actually, Travis can build and run the tests of a .Net project on both Linux and MacOSX, through Mono, an "open source implementation of Microsoft's .NET Framework".

Provided your project doesn't rely on Windows-only API, this should work perfectly.

As an example, the LibGit2Sharp project leverages Travis to do just this.

nulltoken
  • 64,429
  • 20
  • 138
  • 130