-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.cmd
86 lines (72 loc) · 2.1 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@echo off
for /f "tokens=2*" %%i in ('reg query HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion^|findstr "ProgramFilesDir (x86)"') do set p=%%j
set a=%cd: =:%
set a=%a:\= %
for %%j in (%a%) do (set a=%%j)
set a=%a::= %
set defaultProgramDir=C:\Program Files (x86)
set driList[0]=%p:~10%
if "%driList[0]%" NEQ "%defaultProgramDir%" set driList[1]=%defaultProgramDir%
set buildList[0]=Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin
set buildList[1]=Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin
set buildList[2]=Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin
set buildList[3]=MSBuild\14.0\Bin
set buildList[4]=MSBuild\12.0\Bin
set buildList[5]=MSBuild\11.0\Bin
set buildList[6]=MSBuild\10.0\Bin
for /F "tokens=2 delims==" %%d in ('set driList[') do (
for /F "tokens=2 delims==" %%b in ('set buildList[') do (
set MSBuild="%%d\%%b\MSBuild.exe"
if exist "%%d\%%b\MSBuild.exe" (
GOTO SetMSBuild
)
)
)
set MSBuild=%windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
:SetMSBuild
set Nuget=nuget restore
if exist "%a%.csproj" (
set MSBuild=%MSBuild% "%a%.csproj"
set Nuget=%Nuget% "%a%.csproj"
) else if exist "%a%.vbproj" (
set MSBuild=%MSBuild% "%a%.vbproj"
set Nuget=%Nuget% "%a%.vbproj"
) else if exist "%a%.sln" (
set MSBuild=%MSBuild% "%a%.sln"
set Nuget=%Nuget% "%a%.sln"
)
if "%1" == "Debug" (
set MSBuild=%MSBuild% /m /v:m /p:Configuration=Debug
) else (
set MSBuild=%MSBuild% /m /v:m /p:Configuration=Release
)
if exist "nuget.exe" (
echo nuget source add -name tencent.com -source https://mirrors.cloud.tencent.com/nuget
nuget source add -name tencent.com -source https://mirrors.cloud.tencent.com/nuget
echo.
echo %Nuget%
%Nuget%
echo.
echo %MSBuild%
%MSBuild%
:: IF %ERRORLEVEL% EQU 0 (
IF ERRORLEVEL 0 (
if exist "%a%.csproj" (
if not exist "%a%.nuspec" (
nuget spec
)
echo.
nuget pack "%a%.csproj" -Prop Configuration=Release
) else if exist "%a%.vbproj" (
if not exist "%a%.nuspec" (
nuget spec
)
echo.
nuget pack "%a%.vbproj" -Prop Configuration=Release
)
)
) else (
echo %MSBuild%
%MSBuild%
)
pause