ILMerge.bat 505 B

123456
  1. set binaryPath=%CD%\..\bin\Release
  2. set outputPath=%CD%\..\bin\ILMerge
  3. IF NOT EXIST "%outputPath%" MKDIR "%outputPath%"
  4. IF ["%programfiles(x86)%"]==[""] SET ilmergePath="%programfiles%\Microsoft\ILMerge"
  5. IF NOT ["%programfiles(x86)%"]==[""] SET ilmergePath="%programfiles(x86)%\Microsoft\ILMerge"
  6. %ilmergePath%\ilmerge /ndebug /target:winexe /out:"%outputPath%\ISCSIConsole.exe" "%binaryPath%\ISCSIConsole.exe" "%binaryPath%\Utilities.dll" "%binaryPath%\DiskAccessLibrary.dll" "%binaryPath%\ISCSI.dll"