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