forked from microsoft/CodeContracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildCC.bat
More file actions
33 lines (25 loc) · 681 Bytes
/
buildCC.bat
File metadata and controls
33 lines (25 loc) · 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@echo off
pushd Microsoft.VisualStudio.CodeTools\CodeToolsSetup
call buildMSM release
if errorlevel 1 goto Failed
call export release
if errorlevel 1 goto Failed
popd
pushd Microsoft.Research\ManagedContract.Setup
call buildmsi %1 devlab9ts
if errorlevel 1 goto Failed
call buildnuget %1 devlab9ts
if errorlevel 1 goto Failed
popd
echo .
echo ****************************************************
echo Done building CodeContracts version %1
echo ****************************************************
exit /b 0
:Failed
popd
echo .
echo ****************************************************
echo Build FAILED
echo ****************************************************
exit /b 1