forked from smartstore/SmartStoreNET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.bat
37 lines (27 loc) · 980 Bytes
/
build.bat
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
for /f "usebackq tokens=1* delims=: " %%i in (`lib\vswhere\vswhere -latest -requires Microsoft.Component.MSBuild`) do (
if /i "%%i"=="installationPath" set InstallDir=%%j
)
FOR %%b in (
"%InstallDir%\Common7\Tools\VsMSBuildCmd.bat"
"%VS140COMNTOOLS%\Common7\Tools\vsvars32.bat"
) do (
if exist %%b (
call %%b
goto findmsbuild
)
)
echo "Unable to detect suitable environment. Build may not succeed."
:findmsbuild
SETLOCAL ENABLEDELAYEDEXPANSION
if exist "%InstallDir%\MSBuild\15.0\Bin\MSBuild.exe" (
if not defined MsBuildPath (
SET "MsBuildPath=%InstallDir%\MSBuild\15.0\Bin\MsBuild.exe"
goto build
)
)
echo "Unable to detect suitable MsBuild version (15.0). Build may not succeed."
:build
cd /d %~dp0
echo "Restoring NuGet packages"
lib\nuget\nuget.exe restore "src\SmartStoreNET.Full-sym.sln"
call "!MsBuildPath!" SmartStoreNET.proj /p:SlnName=SmartStoreNET /m /p:DebugSymbols=false /p:DebugType=None /maxcpucount %*