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

windebugbuild.bat « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0bdda7fa7fa31b9a119442eacf0f6760792d0e4c (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=DebugWin32 /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
)