Skip to content

Commit

Permalink
commented out esrp signing
Browse files Browse the repository at this point in the history
  • Loading branch information
kaibocai committed Dec 14, 2023
1 parent c2d0aa3 commit 9003d89
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,36 +61,36 @@ steps:

# Authenticode sign all the DLLs with the Microsoft certificate.
# This appears to be an in-place signing job, which is convenient.
- task: EsrpCodeSigning@4
displayName: 'ESRP CodeSigning: Authenticode'
inputs:
ConnectedServiceName: 'ESRP Service'
FolderPath: './'
Pattern: '*.tgz'
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"
}
]
# - task: EsrpCodeSigning@4
# displayName: 'ESRP CodeSigning: Authenticode'
# inputs:
# ConnectedServiceName: 'ESRP Service'
# FolderPath: './'
# Pattern: '*.tgz'
# 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"
# }
# ]

- task: CopyFiles@2
displayName: 'Copy publish file to Artifact Staging Directory'
Expand Down

0 comments on commit 9003d89

Please sign in to comment.