Welcome to mirror list, hosted at ThFree Co, Russian Federation.

setup-solution.bat « msvc - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d43d4492c138dcc01e566e5674461a56ce0271a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@echo off
csc -debug -out:scripts\monowrap.exe scripts\monowrap.cs 
if errorlevel 1 goto error
csc -nowarn:414 -debug -out:scripts\genproj.exe scripts\genproj.cs
if errorlevel 1 goto error
csc -debug -out:scripts\prepare.exe scripts\prepare.cs
if errorlevel 1 goto error
cd scripts
prepare.exe ..\\..\\..\\mcs core 
if errorlevel 1 goto error
genproj.exe
if errorlevel 1 goto error
cd ..
echo Setup complete, you need at least a mcs\class\lib\basic directory with
echo mcs.exe  mscorlib.dll  System.dll  System.Xml.dll
echo to bootstrap
goto end
: error
echo Error: solution is not configured.
:end