1 write to IsEmpty
Microsoft.DotNet.AsmDiff (1)
AssemblySet.cs (1)
46IsEmpty = includedAssembliesSorted.Length == 0 && dependencies.Length == 0;
6 references to IsEmpty
Microsoft.DotNet.AsmDiff (6)
DiffConfiguration.cs (2)
36var hasLeft = Left != null && !Left.IsEmpty; 37var hasRight = Right != null && !Right.IsEmpty;
DiffConfigurationExtensions.cs (1)
57var newName = existingSet.IsEmpty ? null : existingSet.Name;
DiffDocument.cs (2)
29var hasLeft = Left != null && !Left.IsEmpty; 30var hasRight = Right != null && !Right.IsEmpty;
MarkdownDiffExporter.cs (1)
57string singleSideName = _diffDocument.Left.IsEmpty ? _diffDocument.Right.Name : _diffDocument.Left.Name;