home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / dotNETSDK / SETUP.EXE / netfxsd1.cab / build_bat_159________.3643236F_FC70_11D3_A536_0090278A1BB8 < prev    next >
Encoding:
Text File  |  2001-08-21  |  740 b   |  22 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. cd Stringer
  9. csc.exe /target:library %DEBUGSAMPLE% Stringer.cs  
  10. cd ..
  11. cd Reverser_v2.0.0.0
  12. IF NOT EXIST orgVerKey.snk COPY ..\orgVerKey.snk
  13. csc.exe /target:library %DEBUGSAMPLE% Reverser.cs  
  14. gacutil.exe /i Reverser.dll
  15. cd ..
  16. cd Reverser_v2.0.1.0
  17. IF NOT EXIST orgVerKey.snk COPY ..\orgVerKey.snk
  18. csc.exe /target:library %DEBUGSAMPLE% Reverser.cs  
  19. gacutil.exe /i Reverser.dll
  20. cd ..
  21. csc.exe %DEBUGSAMPLE% /reference:Stringer\Stringer.dll;Reverser_v2.0.0.0\Reverser.dll VerClient.cs  
  22.