dotnet / sign

Code Signing CLI tool supporting Authenticode, NuGet, VSIX, and ClickOnce
MIT License
439 stars 84 forks source link

Make the --description and --description-url optional and pass an empty string when not specified. #718

Closed dlemstra closed 2 weeks ago

dlemstra commented 2 weeks ago

This makes the --description and --description-url optional. This is only used by authenticode and should not be required for all operations. I tried local testing with passing null values and that completed without any issues. But looking at the code of AzureSign.Core I noticed that this would not work if the value was null so I changed this to pass an empty string when these values are not specified.