2 writes to GlobalProperties
dotnet (2)
Commands\Run\RunFileBuildCacheEntry.cs (2)
74
GlobalProperties
= new(GlobalPropertiesComparer);
86
GlobalProperties
= globalProperties;
10 references to GlobalProperties
dotnet (10)
_generated\40\RunFileBuildCacheJsonSerializerContext.RunFileBuildCacheEntry.g.cs (1)
60
Getter = static obj => ((global::Microsoft.DotNet.Cli.Commands.Run.RunFileBuildCacheEntry)obj).
GlobalProperties
,
Commands\Run\FileBasedAppRunPlan.cs (9)
242
var globalProperties = cacheEntry.
GlobalProperties
.Keys.Except(s_ignorableProperties, cacheEntry.
GlobalProperties
.Comparer);
245
string exampleValue = cacheEntry.
GlobalProperties
[exampleKey];
471
if (previousCacheEntry.
GlobalProperties
.Count != cacheEntry.
GlobalProperties
.Count)
473
Reporter.Verbose.WriteLine($"Building because previous global properties count ({previousCacheEntry.
GlobalProperties
.Count}) does not match current count ({cacheEntry.
GlobalProperties
.Count}): {successCacheFile.FullName}");
477
foreach ((string key, string value) in cacheEntry.
GlobalProperties
)
479
if (!previousCacheEntry.
GlobalProperties
.TryGetValue(key, out string? otherValue) || value != otherValue)