Skip to content

Commit 931bd9a

Browse files
committed
Add build_verbose.cmd
1 parent cd4d260 commit 931bd9a

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

build/build_verbose.cmd

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
@echo off
2+
@setlocal enableextensions
3+
@cd /d "%~dp0\..\"
4+
5+
call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64_arm64
6+
7+
msbuild ProcessHacker.sln -property:Configuration=Debug -property:Platform=Win32 -verbosity:normal
8+
msbuild ProcessHacker.sln -property:Configuration=Debug -property:Platform=x64 -verbosity:normal
9+
10+
tools\CustomBuildTool\bin\Release\CustomBuildTool.exe -sdk
11+
12+
msbuild Plugins\Plugins.sln -property:Configuration=Debug -property:Platform=Win32 -verbosity:normal
13+
msbuild Plugins\Plugins.sln -property:Configuration=Debug -property:Platform=x64 -verbosity:normal
14+
15+
pause

tools/CustomBuildTool/Utils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ public static string HashFile(string FileName)
218218

219219
public static string GetPath(string FileName)
220220
{
221-
return "\\tools\\CustomSignTool\\Resources\\" + FileName;
221+
return "tools\\CustomSignTool\\Resources\\" + FileName;
222222
}
223223

224224
public static string GetCustomSignToolFilePath()
Binary file not shown.

0 commit comments

Comments
 (0)