Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Free build servers for .NET [closed]

I've got the question... Are there any free build servers for .NET applications? We are starting project as remotely working team and right now we are searching for such solution. As far as it's an academic project we do not have funds to buy server and run CC.net on it.. Are there any charge free solutions? Or at least cheap ones...

I'm asking rather about the service on the internet, not software solution ;)

like image 780
Łukasz W. Avatar asked Sep 02 '10 07:09

Łukasz W.


2 Answers

You may want to check out AppHarbor - when you deploy your latest changes using git or Mercurial, your application is built automatically and any unit tests you have in the solution are run. The application is deployed if the build and your unit tests succeed.

They also have a dashboard to view / deploy any of your 10 most recent builds.

Also: They have a free plan.

like image 112
Dan Esparza Avatar answered Oct 02 '22 00:10

Dan Esparza


Another idea: do you really need your build server on the internet?

How about putting only your code repository on the internet (Github, Bitbucket, Google Code...)?
One of your project members could set up the build server at home. As long as it's online 24/7, it can pull the repository from the internet, make the build locally and upload the results via FTP to some webspace where you all can access it.

Of course that's not as comfortable as a "real" internet based solution, but cheap.

like image 44
Christian Specht Avatar answered Oct 02 '22 00:10

Christian Specht