Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / msvc / setup-solution.bat
1 @echo off\r
2 csc -debug -out:scripts\monowrap.exe scripts\monowrap.cs \r
3 if errorlevel 1 goto error\r
4 csc -nowarn:414 -debug -out:scripts\genproj.exe scripts\genproj.cs\r
5 if errorlevel 1 goto error\r
6 csc -debug -out:scripts\prepare.exe scripts\prepare.cs\r
7 if errorlevel 1 goto error\r
8 cd scripts\r
9 prepare.exe ..\\..\\..\\mcs core \r
10 if errorlevel 1 goto error\r
11 genproj.exe\r
12 if errorlevel 1 goto error\r
13 cd ..\r
14 echo Setup complete, you need at least a mcs\class\lib\basic directory with\r
15 echo mcs.exe  mscorlib.dll  System.dll  System.Xml.dll\r
16 echo to bootstrap\r
17 goto end\r
18 : error\r
19 echo Error: solution is not configured.\r
20 :end