6 references to Left
Microsoft.DotNet.ApiCompatibility (5)
Runner\ApiCompatRunner.cs (1)
35
List<ElementContainer<IAssemblySymbol>> leftContainerList = CreateAssemblySymbols(workItem.
Left
, out bool resolvedExternallyProvidedAssemblyReferences);
Runner\ApiCompatRunnerWorkItem.cs (4)
44
public bool Equals(ApiCompatRunnerWorkItem other) => other.
Left
.SequenceEqual(
Left
) && other.Options.Equals(Options);
55
foreach (MetadataInformation left in
Left
)
70
public override string ToString() => $"{
Left
.Select(l => l.AssemblyId).Aggregate((l1, l2) => l1 + ", " + l2)}: {Options}";
Microsoft.DotNet.ApiCompatibility.Tests (1)
Runner\ApiCompatWorkItemTests.cs (1)
17
Assert.Equal(new MetadataInformation[] { left }, workItem.
Left
);