From bd8eccc0b4bd9278e39e2c2fd88282f349acc4db Mon Sep 17 00:00:00 2001 From: jagilber Date: Sun, 17 Mar 2024 16:56:55 -0400 Subject: [PATCH] wip test ado task code signing. add zip creation for signed files --- azure-pipelines-dev.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) diff --git a/azure-pipelines-dev.yml b/azure-pipelines-dev.yml index 9b23b10f..6134e69e 100644 --- a/azure-pipelines-dev.yml +++ b/azure-pipelines-dev.yml @@ -195,42 +195,6 @@ steps: verbosePreference: 'continue' debugPreference: 'continue' -- task: EsrpCodeSigning@4 - displayName: 'zip code signing' - inputs: - ConnectedServiceName: $(esrp_signing_connection) - FolderPath: '$(release_path)' - Pattern: '$(project_name).zip' - signConfigType: 'inlineSignParams' - inlineOperation: | - [ - { - "KeyCode": "CP-230012", - "OperationCode": "SigntoolSign", - "Parameters": { - "OpusName": "Microsoft", - "OpusInfo": "http://www.microsoft.com", - "FileDigest": "/fd \"SHA256\"", - "PageHash": "/NPH", - "TimeStamp": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256" - }, - "ToolName": "sign", - "ToolVersion": "1.0" - }, - { - "KeyCode": "CP-230012", - "OperationCode": "SigntoolVerify", - "Parameters": {}, - "ToolName": "sign", - "ToolVersion": "1.0" - } - ] - SessionTimeout: '60' - MaxConcurrency: '50' - MaxRetryAttempts: '5' - PendingAnalysisWaitTimeoutMinutes: '5' - VerboseLogin: true - - task: PowerShell@2 displayName: 'dotnet signed build output' inputs: