Nightly Builds

  • Thread starter Thread starter Brian Henry
  • Start date Start date
B

Brian Henry

Is it possibly to set up a process on our development server to create
nightly builds of our application? All our code is saved in a Source Safe
database and is a VB.NET solution.
 
You could just use task scheduler and a batch file...

vbc.exe is the visual basic compiler.. you'll have to do a little extra work
in the batch to get it to work, but then you should have no problem running
it whenever you want.

-CJ
 
yes, but the source is in a VSS database, it's not just your standard source
listing like a normal on hard drive source would be... it's a little more
complex then just using a batch file... at least from how I am looking at it
in a source safe database...
 
Source safe has a command-line app you can use to check out the
project to a local folder so it's then available for compilation.
Default location:

C:\Program Files\Microsoft Visual Studio\VSS\win32\ss.exe

HTH,

Sam
 
thanks everyone

Samuel R. Neff said:
Source safe has a command-line app you can use to check out the
project to a local folder so it's then available for compilation.
Default location:

C:\Program Files\Microsoft Visual Studio\VSS\win32\ss.exe

HTH,

Sam
 
where do you get CruiseControl.Net at? I checked google and did not get
anything relevent back
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top