1 write to Name
Microsoft.DotNet.AsmDiff (1)
AssemblySet.cs (1)
50Name = name;
11 references to Name
Microsoft.DotNet.AsmDiff (11)
AssemblySet.cs (2)
125return new AssemblySet(Host, assembliesSnapshot, Name); 134var newAssemblySet = FromPaths(allPaths, Name);
Csv\DiffInNewCsvColumn.cs (1)
24get { return "In " + DiffConfiguration.Right.Name; }
Csv\DiffInOldCsvColumn.cs (1)
24get { return "In " + DiffConfiguration.Left.Name; }
DiffConfigurationExtensions.cs (1)
57var newName = existingSet.IsEmpty ? null : existingSet.Name;
DiffEngine.cs (2)
34var oldAssembliesName = oldSet.Name; 41: newSet.Name;
MarkdownDiffExporter.cs (4)
53writer.WriteLine(Resources.MarkdownTitle, _diffDocument.Left.Name, _diffDocument.Right.Name); 57string singleSideName = _diffDocument.Left.IsEmpty ? _diffDocument.Right.Name : _diffDocument.Left.Name;