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
Before adding module support, there was a few hacks to get the mono and roslyn experimental compilers configurable via command line flags as well as a debug flag for debugging. We used horrible things like _options.Arguments.ContainsKey("mono") to check for the existance of a specific flag which means that passing --mono=false will fail.
We should add explicit properties to the CakeOptions class and include those in the ArgumentParser for the following things:
Mono
Experimental
The text was updated successfully, but these errors were encountered:
Before adding module support, there was a few hacks to get the mono and roslyn experimental compilers configurable via command line flags as well as a debug flag for debugging. We used horrible things like
_options.Arguments.ContainsKey("mono")
to check for the existance of a specific flag which means that passing--mono=false
will fail.We should add explicit properties to the
CakeOptions
class and include those in theArgumentParser
for the following things:The text was updated successfully, but these errors were encountered: