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