setup-solution.bat 617 B

1234567891011121314151617181920
  1. @echo off
  2. csc -debug -out:scripts\monowrap.exe scripts\monowrap.cs
  3. if errorlevel 1 goto error
  4. csc -nowarn:414 -debug -out:scripts\genproj.exe scripts\genproj.cs
  5. if errorlevel 1 goto error
  6. csc -debug -out:scripts\prepare.exe scripts\prepare.cs
  7. if errorlevel 1 goto error
  8. cd scripts
  9. prepare.exe ..\\..\\..\\mcs core
  10. if errorlevel 1 goto error
  11. genproj.exe
  12. if errorlevel 1 goto error
  13. cd ..
  14. echo Setup complete, you need at least a mcs\class\lib\basic directory with
  15. echo mcs.exe mscorlib.dll System.dll System.Xml.dll
  16. echo to bootstrap
  17. goto end
  18. : error
  19. echo Error: solution is not configured.
  20. :end