1 write to Path
Microsoft.NET.TestFramework (1)
Utilities\FileThumbPrint.cs (1)
14Path = path;
13 references to Path
Microsoft.NET.Sdk.BlazorWebAssembly.Tests (7)
WasmBuildIncrementalismTest.cs (7)
50actual.Path.Equals(first.Path).Should().BeTrue($"because {actual.Path} should match {first.Path} on build {i}"); 51actual.Hash.Equals(first.Hash).Should().BeTrue($"because {actual.Hash} should match {first.Hash} for {first.Path} on build {i}"); 52actual.LastWriteTimeUtc.Equals(first.LastWriteTimeUtc).Should().BeTrue($"because {actual.LastWriteTimeUtc} should match {first.LastWriteTimeUtc} for {first.Path} on build {i}"); 95thumbPrint[j].Equals(newThumbPrint[j]).Should().BeTrue($"because {thumbPrint[j].Hash} should be the same as {newThumbPrint[j].Hash} for file {thumbPrint[j].Path}");
Microsoft.NET.TestFramework (6)
Utilities\FileThumbPrint.cs (6)
52thumbprintLookup.Sort(Comparer<FileThumbPrint>.Create((a, b) => StringComparer.Ordinal.Compare(a.Path, b.Path))); 59string.Equals(Path, other?.Path, StringComparison.Ordinal) && 67return HashCode.Combine(Path, LastWriteTimeUtc, Hash); 79return $"{Hash} - {LastWriteTimeUtc.ToShortDateString()} - {Path}";