Skip to content

Commit

Permalink
ShellExtension: Fix failure to sign ShellExtensionU.dll
Browse files Browse the repository at this point in the history
  • Loading branch information
sdottaka committed Feb 19, 2023
1 parent d2eaa6c commit 9a576ac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions ShellExtension/BuildBin.vs2017.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ goto :eof

:BuildBin
set PLATFORM=%1
if "%1" == "" (
set PLATFORM_VS=Win32
if "%1" == "x86" (
set PLATFORM_VS=x86
set DLLFILENAME=ShellExtensionU.dll
) else (
set PLATFORM_VS=%1
Expand All @@ -33,7 +33,7 @@ endlocal

if exist "%SIGNBAT_PATH%" (
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\%DLLFILENAME%"
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\WinMergeContextMenu.dll
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\WinMergeContextMenu.dll"
)

goto :eof
6 changes: 3 additions & 3 deletions ShellExtension/BuildBin.vs2019.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ goto :eof

:BuildBin
set PLATFORM=%1
if "%1" == "" (
set PLATFORM_VS=Win32
if "%1" == "x86" (
set PLATFORM_VS=x86
set DLLFILENAME=ShellExtensionU.dll
) else (
set PLATFORM_VS=%1
Expand All @@ -33,7 +33,7 @@ endlocal

if exist "%SIGNBAT_PATH%" (
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\%DLLFILENAME%"
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\WinMergeContextMenu.dll
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\WinMergeContextMenu.dll"
)

goto :eof
4 changes: 2 additions & 2 deletions ShellExtension/BuildBin.vs2022.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ goto :eof

:BuildBin
set PLATFORM=%1
if "%1" == "" (
set PLATFORM_VS=Win32
if "%1" == "x86" (
set PLATFORM_VS=x86
set DLLFILENAME=ShellExtensionU.dll
) else (
set PLATFORM_VS=%1
Expand Down

0 comments on commit 9a576ac

Please sign in to comment.