9 references to TryGetValue
Microsoft.DotNet.Cli.Utils (9)
MSBuildArgs.cs (9)
112
var globalProperties =
TryGetValue
<ReadOnlyDictionary<string, string>?>("--property");
113
var restoreProperties =
TryGetValue
<ReadOnlyDictionary<string, string>?>("--restoreProperty");
114
var requestedTargets =
TryGetValue
<string[]?>("--target");
115
var getProperty =
TryGetValue
<string[]>("--getProperty");
116
var getItem =
TryGetValue
<string[]?>("--getItem");
117
var getTargetResult =
TryGetValue
<string[]?>("--getTargetResult");
118
var getResultOutputFile =
TryGetValue
<string[]?>("--getResultOutputFile");
119
var verbosity =
TryGetValue
<VerbosityOptions?>("--verbosity");
120
var nologo =
TryGetValue
<bool?>("--no-logo") ?? true; // Default to nologo if not specified