views:

146

answers:

5

Hello, 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 ;)

+2  A: 

Try rackspacecloud.com cloud server. They are cheap and good.

this. __curious_geek
@ŁukaszW.pl: I think you will pay `hourPrice * actually time spent on build`
abatishchev
And while not in use, store the server image in cloud-files storage [15c per GB per month] and delete the server. Reload the server back from image and pay hourly.
this. __curious_geek
+4  A: 

We have had good results with the following: http://www.jetbrains.com/teamcity/buy/index.jsp

It is not an online solution, where you don't need an extra PC though.

Aurril
+4  A: 

Hudson is an continous integration build server. It´s written in java, but it is also compiles and builds .NET projects. As far as i know is it open source.

Jehof
+1  A: 

If you open source your project, you could try to get it on teamcity.codebetter.com.

This is a TeamCity enterprise edition sponsored by JetBrains, for use by open source projects.
You can read more about it here, including details how to apply your project.

haarrrgh
+5  A: 

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.

haarrrgh