1 implementation of IAssemblySetMapper
Microsoft.DotNet.ApiCompatibility (1)
Mapping\AssemblySetMapper.cs (1)
17int rightSetSize) : ElementMapper<IEnumerable<ElementContainer<IAssemblySymbol>>>(ruleRunner, settings, rightSetSize), IAssemblySetMapper
16 references to IAssemblySetMapper
Microsoft.DotNet.ApiCompatibility (14)
ApiComparer.cs (2)
64IAssemblySetMapper assemblySetMapper = _elementMapperFactory.CreateAssemblySetMapper(Settings, rightCount: 1); 115IAssemblySetMapper assemblySetMapper = _elementMapperFactory.CreateAssemblySetMapper(Settings, right.Count);
DifferenceVisitor.cs (2)
21if (mapper is IAssemblySetMapper assemblySetMapper) 44public void Visit(IAssemblySetMapper mapper)
IDifferenceVisitor.cs (3)
26/// Visits the <see cref="IAssemblySetMapper"/> and visits each <see cref="IAssemblyMapper"/> in the mapper. 28/// <param name="mapper">The <see cref="IAssemblySetMapper"/> to visit.</param> 29void Visit(IAssemblySetMapper mapper);
Mapping\AssemblyMapper.cs (3)
17/// <param name="containingAssemblySet">The containing <see cref="IAssemblySetMapper"/>. <see langword="null" />, if the assembly isn't part of a set.</param> 21IAssemblySetMapper? containingAssemblySet = null) : ElementMapper<ElementContainer<IAssemblySymbol>>(ruleRunner, settings, rightSetSize), IAssemblyMapper 26public IAssemblySetMapper? ContainingAssemblySet { get; } = containingAssemblySet;
Mapping\ElementMapperFactory.cs (1)
14public IAssemblySetMapper CreateAssemblySetMapper(IMapperSettings settings, int rightCount) =>
Mapping\IAssemblyMapper.cs (1)
18IAssemblySetMapper? ContainingAssemblySet { get; }
Mapping\IElementMapperFactory.cs (2)
12/// Creates an <see cref="IAssemblySetMapper"/> instance with optional given mapper settings and the count of the rights that are compared. 17IAssemblySetMapper CreateAssemblySetMapper(IMapperSettings settings, int rightCount);
Microsoft.DotNet.ApiCompatibility.Tests (2)
Mapping\AssemblyMapperTests.cs (2)
22IAssemblySetMapper assemblySetMapper = Mock.Of<IAssemblySetMapper>();