Petrus Theron
Petrus Theron

Reputation: 28886

Deploying ASP.NET MVC web project by remotely building committed VisualSVN code

Publishing my entire application to a server in the U.S. every time I change a single line of code is taking FOREVER.

I'm running VisualSVN server on my production server. How can I auto-build my project (to a development site folder) on the server whenever a commit is made? And is this a good practice?


Update: I'm now looking into the Web Deployment Tool.

Upvotes: 2

Views: 295

Answers (1)

ten5peed
ten5peed

Reputation: 15900

I think you're describing the need for a Continuous Integration Server.

Have a look at TeamCity or CruiseControl.Net.

HTHs,
Charles

Upvotes: 2

Related Questions