home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / dotNETSDK / SETUP.EXE / netfxsd1.cab / build_bat_189________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Text File  |  2001-08-21  |  852 b   |  26 lines

  1. @ REM Set command switch for building debug or retail (default is to build debug)
  2. @ REM Type "build.bat -r" to build for retail
  3. @ SET DEBUGSAMPLE=/debug+
  4. @ IF "%1"=="-r" SET DEBUGSAMPLE=/debug-
  5. @ IF "%1"=="-R" SET DEBUGSAMPLE=/debug-
  6.  
  7.  
  8. if not exist ..\bin md ..\bin
  9. if exist ..\bin\CompCS.dll goto CompCSEnd
  10.   pushd ..\CompCS
  11.   call Build.bat %1
  12.   popd
  13. :CompCSEnd
  14. if exist ..\bin\CompVB.dll goto CompVBEnd
  15.   pushd ..\CompVB
  16.   call Build.bat %1
  17.   popd
  18. :CompVBEnd
  19. if exist ..\bin\CompVC.dll goto CompVCEnd
  20.   pushd ..\CompVC
  21.   call Build.bat %1
  22.   popd
  23. :CompVCEnd
  24. vbc.exe /t:winexe %DEBUGSAMPLE% /optionstrict+ /reference:..\Bin\CompCS.dll /reference:..\Bin\CompVB.dll /reference:..\Bin\CompVC.dll /reference:System.dll,System.Windows.Forms.dll,System.Data.DLL,system.drawing.dll  /out:..\bin\ClientWinForms.exe ClientWinForms.vb
  25.  
  26.