home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
-
- REM -- Set path to VS.NET IDE --
- REM -- You may change this as necessary --
-
- PATH %PATH%;C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE
-
- REM -- Set build configuration --
- REM -- You may change this as necessary --
-
- SET CFG=debug
-
- REM -- Building --
-
- DEL BuildLog.txt
-
- devenv /rebuild %CFG% CS\Bars\Bars.sln /out BuildLog.txt
- devenv /rebuild %CFG% CS\Components\Components.sln /out BuildLog.txt
- devenv /rebuild %CFG% CS\Controls\Controls.sln /out BuildLog.txt
- devenv /rebuild %CFG% CS\Docking\Docking.sln /out BuildLog.txt
- devenv /rebuild %CFG% CS\TaskPane\TaskPane.sln /out BuildLog.txt
- devenv /rebuild %CFG% VB\Bars\Bars.sln /out BuildLog.txt
- devenv /rebuild %CFG% VB\Components\Components.sln /out BuildLog.txt
- devenv /rebuild %CFG% VB\Controls\Controls.sln /out BuildLog.txt
- devenv /rebuild %CFG% VB\Docking\Docking.sln /out BuildLog.txt
- devenv /rebuild %CFG% VB\TaskPane\TaskPane.sln /out BuildLog.txt