remove useless signing scripts

This commit is contained in:
Paddy Xu
2018-07-28 20:38:43 +03:00
parent 10460da435
commit 031f667caa
3 changed files with 1 additions and 21 deletions

View File

@@ -1,8 +0,0 @@
if(-not (Test-Path env:CI))
{
$signExe = 'C:\Program Files (x86)\Windows Kits\10\bin\10.0.16299.0\x86\signtool.exe'
$file = '..\Build\QuickLook.msi'
$timestampUrl = 'http://time.certum.pl/'
.$signExe sign /a /v /fd sha256 /t $timestampUrl $file
}

View File

@@ -1,8 +0,0 @@
if(-not (Test-Path env:CI))
{
$signExe = 'C:\Program Files (x86)\Windows Kits\10\bin\10.0.16299.0\x86\signtool.exe'
$files = gci '..\Build\Package\*' -Recurse -Include QuickLook*.exe,QuickLook*.dll | %{('"{0}"' -f $_.FullName)}
$timestampUrl = 'http://time.certum.pl/'
.$signExe sign /a /v /fd sha256 /t $timestampUrl $files
}