markus / obfuscarBuild.Bat @ master
이력 | 보기 | 이력해설 | 다운로드 (465 Bytes)
1 | 30878507 | taeseongkim | @ECHO OFF |
---|---|---|---|
2 | SETLOCAL |
||
3 | |||
4 | 9f56088c | taeseongkim | SET packagesPath=%1packages |
5 | echo "package Path : %packagesPath%" |
||
6 | |||
7 | FOR /R %packagesPath% %%G IN (Obfuscar.Console.exe) DO ( |
||
8 | 30878507 | taeseongkim | IF EXIST %%G ( |
9 | SET TOOLPATH=%%G |
||
10 | GOTO FOUND |
||
11 | ) |
||
12 | ) |
||
13 | |||
14 | 9f56088c | taeseongkim | |
15 | 30878507 | taeseongkim | IF '%TOOLPATH%'=='' GOTO NOTFOUND |
16 | |||
17 | :FOUND |
||
18 | |||
19 | 9f56088c | taeseongkim | ECHO "TOOLPATH : %TOOLPATH%" |
20 | |||
21 | set targetPath=%2 |
||
22 | 30878507 | taeseongkim | |
23 | set targetPath=%targetPath:~0,-1% |
||
24 | 9f56088c | taeseongkim | echo "targetPath : %targetPath%" |
25 | |||
26 | 30878507 | taeseongkim | cd %targetPath% |
27 | |||
28 | 9f56088c | taeseongkim | %TOOLPATH% -s %3 |
29 | 30878507 | taeseongkim | GOTO :EOF |
30 | |||
31 | :NOTFOUND |
||
32 | ECHO nunit-console not found. |
||
33 | EXIT /B 1 |