2 writes to GlobalProperties
dotnet (2)
Commands\Run\VirtualProjectBuildingCommand.cs (2)
2028GlobalProperties = new(GlobalPropertiesComparer); 2035GlobalProperties = globalProperties;
9 references to GlobalProperties
dotnet (9)
Commands\Run\VirtualProjectBuildingCommand.cs (9)
807if (previousCacheEntry.GlobalProperties.Count != cacheEntry.GlobalProperties.Count) 810Building because previous global properties count ({previousCacheEntry.GlobalProperties.Count}) does not match current count ({cacheEntry.GlobalProperties.Count}): {successCacheFile.FullName} 815foreach (var (key, value) in cacheEntry.GlobalProperties) 817if (!previousCacheEntry.GlobalProperties.TryGetValue(key, out var otherValue) || 945var globalProperties = cacheEntry.GlobalProperties.Keys.Except(s_ignorableProperties, cacheEntry.GlobalProperties.Comparer); 948var exampleValue = cacheEntry.GlobalProperties[exampleKey];