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