We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f4808c commit 6418fefCopy full SHA for 6418fef
1 file changed
src/SignToolGUI/Class/SignerBase.cs
@@ -15,6 +15,7 @@ public abstract class SignerBase
15
public TimestampManager TimestampManager { get; set; }
16
17
public delegate void StatusReport(string message);
18
+
19
public event StatusReport OnSignToolOutput;
20
21
protected SignerBase(string executable, TimestampManager timestampManager = null)
@@ -205,8 +206,10 @@ protected string GlobalOptionSwitches()
205
206
{
207
case true when Debug:
208
return "/v /debug";
209
210
case true:
211
return "/v";
212
213
default:
214
return Debug ? "/debug" : string.Empty;
215
}
0 commit comments