home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 October / CMCD1004.ISO / Software / Shareware / Programare / netxp / netxp.exe / Samples / BuildAll.bat
Encoding:
DOS Batch File  |  2004-04-09  |  957 b   |  26 lines

  1. @ECHO OFF
  2.  
  3. REM -- Set path to VS.NET IDE --
  4. REM -- You may change this as necessary --
  5.  
  6. PATH %PATH%;C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE
  7.  
  8. REM -- Set build configuration --
  9. REM -- You may change this as necessary --
  10.  
  11. SET CFG=debug
  12.  
  13. REM -- Building --
  14.  
  15. DEL BuildLog.txt
  16.  
  17. devenv /rebuild %CFG% CS\Bars\Bars.sln /out BuildLog.txt
  18. devenv /rebuild %CFG% CS\Components\Components.sln /out BuildLog.txt
  19. devenv /rebuild %CFG% CS\Controls\Controls.sln /out BuildLog.txt
  20. devenv /rebuild %CFG% CS\Docking\Docking.sln /out BuildLog.txt
  21. devenv /rebuild %CFG% CS\TaskPane\TaskPane.sln /out BuildLog.txt
  22. devenv /rebuild %CFG% VB\Bars\Bars.sln /out BuildLog.txt
  23. devenv /rebuild %CFG% VB\Components\Components.sln /out BuildLog.txt
  24. devenv /rebuild %CFG% VB\Controls\Controls.sln /out BuildLog.txt
  25. devenv /rebuild %CFG% VB\Docking\Docking.sln /out BuildLog.txt
  26. devenv /rebuild %CFG% VB\TaskPane\TaskPane.sln /out BuildLog.txt