markus / build.bat @ 87fc5ab6
이력 | 보기 | 이력해설 | 다운로드 (2.05 KB)
1 | 774ce153 | djkim | SET yyyymmdd=%DATE:~0,4%-%DATE:~5,2%-%DATE:~8,2% |
---|---|---|---|
2 | SET hhmmss=%TIME:~0,2%-%TIME:~3,2%-%TIME:~6,2% |
||
3 | SET hhmmss=%hhmmss: =0% |
||
4 | |||
5 | SET DEVENV="C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\devenv.com" |
||
6 | SET CANDLE="C:\Program Files (x86)\WiX Toolset v3.11\bin\candle.exe" |
||
7 | SET LIGHT="C:\Program Files (x86)\WiX Toolset v3.11\bin\light.exe" |
||
8 | |||
9 | SET SIGNTOOLPATH="C:\Program Files (x86)\Windows Kits\10\bin\10.0.17763.0\x64\signtool.exe" |
||
10 | SET SIGNPATH="c:\cert\www.doftech.co.kr.pfx" |
||
11 | |||
12 | Del Setup\*.wixobj |
||
13 | Del Setup\*.wixpdb |
||
14 | Del Setup\*.msi |
||
15 | 09f07393 | humkyung | Del Setup\FinalService\*.wixobj |
16 | Del Setup\FinalService\*.wixpdb |
||
17 | Del Setup\FinalService\*.msi |
||
18 | 774ce153 | djkim | |
19 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\*.exe" |
||
20 | 09f07393 | humkyung | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\FinalService\*.exe" |
21 | 774ce153 | djkim | |
22 | %CANDLE% ".\MARKUS.wxs" -out .\Setup\ |
||
23 | 8b0d8693 | humkyung | %CANDLE% ".\FinalService.wxs" -out .\Setup\FinalService\ |
24 | 22c025b3 | djkim | %CANDLE% ".\MARKUS_daelim.wxs" -out .\Setup\ |
25 | %CANDLE% ".\FinalService_daelim.wxs" -out .\Setup\FinalService\ |
||
26 | 8b0d8693 | humkyung | |
27 | 774ce153 | djkim | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
28 | %LIGHT% -out ".\Setup\MARKUS-%1.msi" ".\Setup\MARKUS.wixobj" -ext WixUIExtension -ext WixUtilExtension |
||
29 | 09f07393 | humkyung | %LIGHT% -out ".\Setup\FinalService\FinalService-%1.msi" ".\Setup\FinalService\FinalService.wixobj" -ext WixUIExtension -ext WixUtilExtension |
30 | 22c025b3 | djkim | %LIGHT% -out ".\Setup\MARKUS-Daelim-%1.msi" ".\Setup\MARKUS_daelim.wixobj" -ext WixUIExtension -ext WixUtilExtension |
31 | %LIGHT% -out ".\Setup\FinalService\FinalService-Daelim-%1.msi" ".\Setup\FinalService\FinalService_daelim.wixobj" -ext WixUIExtension -ext WixUtilExtension |
||
32 | 774ce153 | djkim | IF %ERRORLEVEL% NEQ 0 goto :ERROR |
33 | |||
34 | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\*.msi" |
||
35 | 09f07393 | humkyung | %SIGNTOOLPATH% sign /v /f %SIGNPATH% /p Doftech1073# /tr http://timestamp.digicert.com /td sha256 /fd sha256 "c:\Temp\workspace\MARKUS\Setup\FinalService\*.msi" |
36 | 774ce153 | djkim | |
37 | :EOF |
||
38 | ECHO process completed |
||
39 | exit |
||
40 | |||
41 | :ERROR |
||
42 | exit 1 |