vcsjones / OpenOpcSignTool

An open-source implementation of VsixSignTool.
MIT License
37 stars 24 forks source link

Upgrade NuGet tool to latest .Net #92

Open dingdonglars opened 8 months ago

dingdonglars commented 8 months ago

This repo helped me get through signing a VSIX package in our Azure DevOps pipeline using a certificate in Azure Key Vault. Great!

However, my first attempts a running this on our build server, the OpenVsixSignTool failed due to a dependency on Net Core 2.1: image

The pipeline does an install immediately before attempting to sign and seems to get the current, stable version 0.3.2 image

Once I installed the (deprecated) Net Core 2.1 as mentioned in the error message above on the build server, the signing works.

It is possible to push a new version of the tool to NuGet to be able to run under newest Net 8.0?

Thanks!