2 writes to GlobalProperties
dotnet (2)
Commands\Run\VirtualProjectBuildingCommand.cs (2)
1375GlobalProperties = new(GlobalPropertiesComparer); 1383GlobalProperties = 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)
909if (previousCacheEntry.GlobalProperties.Count != cacheEntry.GlobalProperties.Count) 912Building because previous global properties count ({previousCacheEntry.GlobalProperties.Count}) does not match current count ({cacheEntry.GlobalProperties.Count}): {successCacheFile.FullName} 917foreach (var (key, value) in cacheEntry.GlobalProperties) 919if (!previousCacheEntry.GlobalProperties.TryGetValue(key, out var otherValue) || 1101var globalProperties = cacheEntry.GlobalProperties.Keys.Except(s_ignorableProperties, cacheEntry.GlobalProperties.Comparer); 1104var exampleValue = cacheEntry.GlobalProperties[exampleKey];