We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dfdacd commit 316e3abCopy full SHA for 316e3ab
Source/Dafny/DafnyOptions.cs
@@ -12,7 +12,7 @@ public class DafnyOptions : Bpl.CommandLineOptions
12
private ErrorReporter errorReporter;
13
14
public DafnyOptions(ErrorReporter errorReporter = null)
15
- : base("Dafny", "Dafny") {
+ : base("Dafny", "Dafny program verifier") {
16
this.errorReporter = errorReporter;
17
SetZ3ExecutableName();
18
}
@@ -26,6 +26,11 @@ public override string VersionNumber {
26
;
27
28
29
+ public override string Version {
30
+ get {
31
+ return ToolName + VersionSuffix;
32
+ }
33
34
public override string VersionSuffix {
35
get {
36
return " " + VersionNumber + " technical preview 0";
0 commit comments