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

winbuild.bat « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4533f85792780813f89d13eeeeccd5b69ef01bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
".nuget\NuGet.exe" restore Main.sln
"external\RefactoringEssentials\.nuget\NuGet.exe" restore external\RefactoringEssentials\RefactoringEssentials.sln
"C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" Main.sln /m /p:Configuration=ReleaseWin32 /p:Platform="Any CPU"

if DEFINED VS150COMNTOOLS (
	set VSPATH="%VS150COMNTOOLS%"
) else if DEFINED VS140COMNTOOLS (
	set VSPATH="%VS140COMNTOOLS%"
) else if DEFINED VS120COMNTOOLS (
	set VSPATH="%VS120COMNTOOLS%"
) else if DEFINED VS110COMNTOOLS (
	set VSPATH="%VS110COMNTOOLS%"
)
if exist %VSPATH%\..\..\VC\bin\editbin.exe (
	%VSPATH%\..\..\VC\bin\editbin.exe /largeaddressaware build\bin\MonoDevelop.exe
)