Skip to content

Commit 9a576ac

Browse files
committed
ShellExtension: Fix failure to sign ShellExtensionU.dll
1 parent d2eaa6c commit 9a576ac

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

ShellExtension/BuildBin.vs2017.cmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ goto :eof
2121

2222
:BuildBin
2323
set PLATFORM=%1
24-
if "%1" == "" (
25-
set PLATFORM_VS=Win32
24+
if "%1" == "x86" (
25+
set PLATFORM_VS=x86
2626
set DLLFILENAME=ShellExtensionU.dll
2727
) else (
2828
set PLATFORM_VS=%1
@@ -33,7 +33,7 @@ endlocal
3333

3434
if exist "%SIGNBAT_PATH%" (
3535
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\%DLLFILENAME%"
36-
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\WinMergeContextMenu.dll
36+
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\WinMergeContextMenu.dll"
3737
)
3838

3939
goto :eof

ShellExtension/BuildBin.vs2019.cmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ goto :eof
2121

2222
:BuildBin
2323
set PLATFORM=%1
24-
if "%1" == "" (
25-
set PLATFORM_VS=Win32
24+
if "%1" == "x86" (
25+
set PLATFORM_VS=x86
2626
set DLLFILENAME=ShellExtensionU.dll
2727
) else (
2828
set PLATFORM_VS=%1
@@ -33,7 +33,7 @@ endlocal
3333

3434
if exist "%SIGNBAT_PATH%" (
3535
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\%DLLFILENAME%"
36-
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\WinMergeContextMenu.dll
36+
call "%SIGNBAT_PATH%" "..\Build\%PLATFORM%\Release\WinMergeContextMenu.dll"
3737
)
3838

3939
goto :eof

ShellExtension/BuildBin.vs2022.cmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ goto :eof
2121

2222
:BuildBin
2323
set PLATFORM=%1
24-
if "%1" == "" (
25-
set PLATFORM_VS=Win32
24+
if "%1" == "x86" (
25+
set PLATFORM_VS=x86
2626
set DLLFILENAME=ShellExtensionU.dll
2727
) else (
2828
set PLATFORM_VS=%1

0 commit comments

Comments
 (0)