It sounds like a very simple script to write. Even the batch file:
msbuild \ path \ to \ first.sln / p: Configuration = Release
msbuild \ path \ to \ second.sln / p: Configuration = Release
msbuild \ path \ to \ third.sln / p: Configuration = Release
msbuild \ path \ to \ fourth.sln / p: Configuration = Release
call deploy
, , CruiseControl.NET, - .
MS Build : . - , , , .. , .
(. ). *. * Proj, PropertyGroup. /p.
:
/target:<targets> Build these targets in this project. Use a semicolon or a
comma to separate multiple targets, or specify each
target separately. (Short form: /t)
Example:
/target:Resources;Compile
/property:<n>=<v> Set or override these project-level properties. <n> is
the property name, and <v> is the property value. Use a
semicolon or a comma to separate multiple properties, or
specify each property separately. (Short form: /p)
Example:
/property:WarningLevel=2;OutDir=bin\Debug\