-
|
I have a pipeline that builds a .NET application and then uses the action to sign the files. I can in the build logs the metadata.json and signtool command used to do this. Next in my build I have to build another solution with more projects but I can't wait for the solution to be finished due to a race condition. Currently I use msbuild targets and postbuild events to call signtool. Is there a way to leverage what the trusted signing action put onto the build box to simplify this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
I was able to get this to work by taking all the files/folders from the downloaded nuget packages and adding them to my workspace and set environment variables to use environment auth. The signtool commands from msbuild weren't that bad in that situation. That said I'd rather not have a copy of all those packages in my source tree. But I'm not sure if theres an easy way to reference the file paths without hard coding them. |
Beta Was this translation helpful? Give feedback.
I was able to get this to work by taking all the files/folders from the downloaded nuget packages and adding them to my workspace and set environment variables to use environment auth. The signtool commands from msbuild weren't that bad in that situation. That said I'd rather not have a copy of all those packages in my source tree. But I'm not sure if theres an easy way to reference the file paths without hard coding them.