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.

有帮助吗?

解决方案

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.

其他提示

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top