You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Neo.Compiler.CSharp/Program.cs
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,8 @@ static int Main(string[] args)
30
30
newArgument<string[]>("paths","The path of the project file, project directory or source files."),
31
31
newOption<string>(new[]{"-o","--output"},"Specifies the output directory."),
32
32
newOption<string>("--base-name","Specifies the base name of the output files."),
33
+
newOption<NullableContextOptions>("--nullable",()=>NullableContextOptions.Annotations,"Represents the default state of nullable analysis in this compilation."),
34
+
newOption<bool>("--checked","Indicates whether to check for overflow and underflow."),
33
35
newOption<bool>(new[]{"-d","--debug"},"Indicates whether to generate debugging information."),
34
36
newOption<bool>("--assembly","Indicates whether to generate assembly."),
35
37
newOption<bool>("--no-optimize","Instruct the compiler not to optimize the code."),
0 commit comments