chirpygal:I want to develop a tool that will automatically do a build of the a project in Visual Studio,everynight ,at a specified time. Is there a way i can achieve this?
You can create a batch file .bat that uses command line to do all this.
e.g.
1 using command line to get latest from VSS or any other source code repository to a clean location
2 build the solution in release mode using command line again, VS has the devenv.exe file that you can execute in command line
3. you can then create a windows scheduled task to run at a certain time