mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-23 02:38:28 +00:00
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
parameters:
|
|
FolderPath: ''
|
|
DisplayName: ''
|
|
DoEsrp: 'false'
|
|
Pattern: '*.dll'
|
|
|
|
steps:
|
|
- task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@2
|
|
displayName: ${{ parameters.DisplayName }}
|
|
inputs:
|
|
ConnectedServiceName: 'OnnxRuntime CodeSign 20190817'
|
|
FolderPath: ${{ parameters.FolderPath }}
|
|
Pattern: ${{ parameters.Pattern }}
|
|
signConfigType: inlineSignParams
|
|
inlineOperation: |
|
|
[
|
|
{
|
|
"keyCode": "CP-230012",
|
|
"operationSetCode": "SigntoolSign",
|
|
"parameters": [
|
|
{
|
|
"parameterName": "OpusName",
|
|
"parameterValue": "Microsoft"
|
|
},
|
|
{
|
|
"parameterName": "OpusInfo",
|
|
"parameterValue": "http://www.microsoft.com"
|
|
},
|
|
{
|
|
"parameterName": "PageHash",
|
|
"parameterValue": "/NPH"
|
|
},
|
|
{
|
|
"parameterName": "FileDigest",
|
|
"parameterValue": "/fd sha256"
|
|
},
|
|
{
|
|
"parameterName": "TimeStamp",
|
|
"parameterValue": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256"
|
|
}
|
|
],
|
|
"toolName": "signtool",
|
|
"toolVersion": "6.2.9304.0"
|
|
}
|
|
]
|