Skip to content

Commit

Permalink
Just split into 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mscrivo committed Oct 29, 2023
1 parent 1eee64f commit 8836b4b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,20 @@ steps:

- task: codesigning@2
inputs:
name: 'Sign exe'
secureFileId: 'ootd.pfx'
signCertPassword: $(pfx_password)
files: 'OotD.Launcher\bin\Release\net8.0-windows7.0\OotD.*(dll|exe)'
files: 'OotD.Launcher\bin\Release\net8.0-windows7.0\OotD*.exe'
timeServer: 'http://timestamp.digicert.com'
hashingAlgorithm: 'SHA256'
signToolLocationMethod: 'latest'

- task: codesigning@2
inputs:
name: 'Sign dlls'
secureFileId: 'ootd.pfx'
signCertPassword: $(pfx_password)
files: 'OotD.Launcher\bin\Release\net8.0-windows7.0\OotD*.dll'
timeServer: 'http://timestamp.digicert.com'
hashingAlgorithm: 'SHA256'
signToolLocationMethod: 'latest'
Expand Down

0 comments on commit 8836b4b

Please sign in to comment.