12 lines
364 B
Batchfile
12 lines
364 B
Batchfile
set ProductName="C4IT Customer Panel API"
|
|
|
|
set SignTool=..\..\Common Code\Tools\signtool.exe
|
|
set TimeStamp=http://rfc3161timestamp.globalsign.com/advanced
|
|
|
|
set Src=.\bin\Release
|
|
"%SignTool%" sign /a /tr %TimeStamp% /td SHA256 /fd SHA256 /d %ProductName% "%Src%\C4IT.API.Contracts.dll" "%Src%\C4IT.API.CustomerPanel.dll" "%Src%\C4IT.API.Contracts.dll"
|
|
|
|
pause
|
|
|
|
|