From 402b685820bfd04cfbbf75b4dd599ca4d8c9e6fd Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Tue, 17 Mar 2020 22:09:20 -0600 Subject: [PATCH] sign all at once --- deploy.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy.ps1 b/deploy.ps1 index 617d74b..77d6f92 100644 --- a/deploy.ps1 +++ b/deploy.ps1 @@ -51,12 +51,13 @@ foreach ($language in @{ "Thread Linker.dll" )) { - &"C:\Program Files (x86)\Windows Kits\10\App Certification Kit\signtool.exe" sign /a /v /t "http://timestamp.digicert.com" /fd SHA256 "Release_$arch/$file"; copy -Force -Recurse -Verbose -Destination "$folder/$arch" -Path "Release_$arch/$file"; } } } +&"C:\Program Files (x86)\Windows Kits\10\App Certification Kit\signtool.exe" sign /a /v /t "http://timestamp.digicert.com" /fd SHA256 @(dir "Textractor-*-$version\**\*"); + rm -Force -Recurse -Verbose "Runtime"; mkdir -Force -Verbose "Runtime"; foreach ($arch in @("x86", "x64"))