I want to create a continuous integration build system for .NET using only Windows batch files and Visual Source Safe.
I still offer the following batch file -
set ssdir=\\xxxx\vss
cd d:\mydir
"C:\Program Files\Microsoft Visual SourceSafe\ss.exe" diff "$/sourcedir" -R -Q > diffout.txt
This will cause the change to result in lines containing lines, such as “SourceSafe files other than local”.
My task is to find out if these lines are in the file, and then get and run MSBuild, if any. Then I planned to run the batch file every 10 minutes.
Anyone have any thoughts on how to do this? Or any other ways to continuously integrate an assembly without loading a complex assembly automation system?
Update: . We are pleased to use cscript or powershell, although not very familiar with these environments. My main goal is not to install third-party software
source
share