1 write to DgSpecHash
NuGet.ProjectModel (1)
CacheFile.cs (1)
47DgSpecHash = dgSpecHash;
7 references to DgSpecHash
NuGet.Commands (1)
RestoreCommand\RestoreCommand.cs (1)
1477if (cacheFile.IsValid && StringComparer.Ordinal.Equals(cacheFile.DgSpecHash, newDgSpecHash) && VerifyCacheFileMatchesProject(cacheFile))
NuGet.ProjectModel (6)
_generated\4\CacheFileSourceGen.CacheFile.g.cs (2)
80Getter = static obj => ((global::NuGet.ProjectModel.CacheFile)obj).DgSpecHash, 209writer.WriteString(PropName_dgSpecHash, ((global::NuGet.ProjectModel.CacheFile)value).DgSpecHash);
CacheFile.cs (4)
43public bool IsValid { get { return Version == CurrentVersion && Success && DgSpecHash != null; } } 63return Version == other.Version && Success == other.Success && StringComparer.Ordinal.Equals(DgSpecHash, other.DgSpecHash) && PathUtility.GetStringComparerBasedOnOS().Equals(ProjectFilePath, other.ProjectFilePath); 74combiner.AddObject(DgSpecHash);