Automated builds?

  • Thread starter Thread starter Frank Oquendo
  • Start date Start date
F

Frank Oquendo

Is there a tool that will generate a batch or make file for web apps? My
client has the .NET Framework but not Visual Studio so I'd like to send
them something that can automate the build process should they decide to
modify the source code on site.

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)
 
Frank Oquendo said:
Is there a tool that will generate a batch or make file for web apps? My
client has the .NET Framework but not Visual Studio so I'd like to send
them something that can automate the build process should they decide to
modify the source code on site.

Something like this?

http://www.atozed.com/finalbuilder


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"


ELKNews - Get your free copy at http://www.atozedsoftware.com
 
Nant (http://nant.sourceforge.net/) is an open source build tool. It
comes with Slingshot - which should be able to turn a .sln into a Nant
build file that just uses csc. You'd have to install Nant instead of
VS.NET, so not sure if that is exactly what you are looking for.


HTH,
 
Back
Top