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