-
Notifications
You must be signed in to change notification settings - Fork 288
/
build.cmd
55 lines (40 loc) · 1.13 KB
/
build.cmd
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@echo off
SETLOCAL
IF "%VisualStudioVersion%" LSS "16.0" (
GOTO WRONG_COMMAND_PROMPT
)
WHERE /Q nuget >NUL
IF %ERRORLEVEL% NEQ 0 (
ECHO nuget not found.
ECHO.
ECHO Run "%~pd0download-nuget.cmd" to download the latest version, or update PATH as appropriate.
GOTO END
)
@REM Restore packages manually, since this does not get picked up by Win2D.proj
set Platform=AnyCPU
set Configuration=Release
nuget.exe restore .\Microsoft.Graphics.Win2D.sln
set Platform=AnyCPU
set Configuration=Debug
nuget.exe restore .\Microsoft.Graphics.Win2D.sln
WHERE /Q msbuild >NUL
IF %ERRORLEVEL% NEQ 0 (
ECHO Error: It appears that 'msbuild' is not available in this environment.
ECHO.
GOTO WRONG_COMMAND_PROMPT
)
msbuild "%~dp0Win2D.proj" /v:m /maxcpucount /nr:false /p:BuildTests=false /p:BuildTools=false /p:BuildDocs=false /bl
IF %ERRORLEVEL% NEQ 0 (
ECHO Build failed; aborting.
GOTO END
)
ECHO.
SET /p VERSION=<build/nuget/VERSION
CALL "%~dp0build\nuget\build-nupkg.cmd" %VERSION%-local
GOTO END
:WRONG_COMMAND_PROMPT
ECHO Please run this script from a Developer Command Prompt for VS2019
ECHO.
PAUSE
GOTO END
:END