2 writes to GlobalProperties
dotnet (2)
Commands\Run\VirtualProjectBuildingCommand.cs (2)
1351GlobalProperties = new(GlobalPropertiesComparer); 1359GlobalProperties = globalProperties;
11 references to GlobalProperties
dotnet (11)
_generated\41\RunFileJsonSerializerContext.RunFileBuildCacheEntry.g.cs (2)
58Getter = static obj => ((global::Microsoft.DotNet.Cli.Commands.Run.RunFileBuildCacheEntry)obj).GlobalProperties, 273DictionaryStringStringSerializeHandler(writer, ((global::Microsoft.DotNet.Cli.Commands.Run.RunFileBuildCacheEntry)value).GlobalProperties);
Commands\Run\VirtualProjectBuildingCommand.cs (9)
895if (previousCacheEntry.GlobalProperties.Count != cacheEntry.GlobalProperties.Count) 898Building because previous global properties count ({previousCacheEntry.GlobalProperties.Count}) does not match current count ({cacheEntry.GlobalProperties.Count}): {successCacheFile.FullName} 903foreach (var (key, value) in cacheEntry.GlobalProperties) 905if (!previousCacheEntry.GlobalProperties.TryGetValue(key, out var otherValue) || 1080var globalProperties = cacheEntry.GlobalProperties.Keys.Except(s_ignorableProperties, cacheEntry.GlobalProperties.Comparer); 1083var exampleValue = cacheEntry.GlobalProperties[exampleKey];