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