Skip to content

Commit

Permalink
nomerge オプションの追加
Browse files Browse the repository at this point in the history
  • Loading branch information
mfakane committed Aug 2, 2012
1 parent 154ffc0 commit 84bd47a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Tools/PostBuild.bat
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ set ilmergeOptions=/wildcards
set dllexporterOptions=

if "%*" equ "" (
echo Usage: %~n0 ^<primary assembly^> [/debug] [/mergecoreonly] [/copyto:dest]
echo Usage: %~n0 ^<primary assembly^> [/debug] [/nomerge] [/mergecoreonly] [/copyto:dest]

exit /b
)
Expand All @@ -43,7 +43,7 @@ set il=
call :parseArguments %*

call :initializeTempDirectory
call :ilmerge
if "%otherAssemblies%" neq "" call :ilmerge
if not errorlevel 1 call :export
call :cleanTempDirectory

Expand All @@ -63,6 +63,8 @@ exit /b
if /i "%iSubstring:~1%" equ "debug" (
set configuration=debug
set il=/il
) else if /i "%iSubstring:~1%" equ "nomerge" (
set otherAssemblies=
) else if /i "%iSubstring:~1%" equ "mergecoreonly" (
set otherAssemblies=Metasequoia.Sharp.dll
) else if /i "%iSubstring:~1,7%" equ "copyto:" (
Expand Down

0 comments on commit 84bd47a

Please sign in to comment.