1 write to GlobalProperties
Microsoft.DotNet.Cli.Utils (1)
MSBuildArgs.cs (1)
28GlobalProperties = properties;
18 references to GlobalProperties
dotnet-aot (1)
parent\dotnet\Commands\Run\CommonRunHelpers.cs (1)
109var globalProperties = msbuildArgs.GlobalProperties?.ToDictionary() ?? new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
Microsoft.DotNet.Cli.Utils (17)
MSBuildArgs.cs (16)
166properties: GlobalProperties, 187GlobalProperties, 200GlobalProperties, 218GlobalProperties, 232GlobalProperties, 250GlobalProperties, 268GlobalProperties, 279if (GlobalProperties is null) 294var newProperties = new Dictionary<string, string>(GlobalProperties, StringComparer.OrdinalIgnoreCase); 318GlobalProperties, 333GlobalProperties, 348GlobalProperties, 370RestoreGlobalProperties = GlobalProperties; 373else if (GlobalProperties is not null && GlobalProperties.Count > 0) 377var newdict = new Dictionary<string, string>(GlobalProperties, StringComparer.OrdinalIgnoreCase);
MSBuildForwardingAppWithoutLogging.cs (1)
138.. msbuildArgs.GlobalProperties?.Select(kvp => EmitProperty(kvp)) ?? [],