9 references to NodeMode
Microsoft.Build.Framework (9)
NodeMode.cs (9)
46
public static string ToCommandLineArgument(
NodeMode
nodeMode) => $"/nodemode:{(int)nodeMode}";
54
public static bool TryParse(string value, [NotNullWhen(true)] out
NodeMode
? nodeMode)
79
private static bool TryParseImpl(string value, [NotNullWhen(true)] out
NodeMode
? nodeMode)
100
if (Enum.IsDefined(typeof(
NodeMode
), intValue))
102
nodeMode = (
NodeMode
)intValue;
110
if (Enum.TryParse(value, ignoreCase: true, out
NodeMode
enumValue) && Enum.IsDefined(typeof(
NodeMode
), enumValue))
124
public static
NodeMode
? ExtractFromCommandLine(string commandLine)
141
if (TryParse(match.Groups["nodemode"].Value, out
NodeMode
? nodeMode))