1 implementation of IAssemblySetMapper
Microsoft.DotNet.ApiCompatibility (1)
Mapping\AssemblySetMapper.cs (1)
17
int rightSetSize) : ElementMapper<IEnumerable<ElementContainer<IAssemblySymbol>>>(ruleRunner, settings, rightSetSize),
IAssemblySetMapper
16 references to IAssemblySetMapper
Microsoft.DotNet.ApiCompatibility (14)
ApiComparer.cs (2)
64
IAssemblySetMapper
assemblySetMapper = _elementMapperFactory.CreateAssemblySetMapper(Settings, rightCount: 1);
115
IAssemblySetMapper
assemblySetMapper = _elementMapperFactory.CreateAssemblySetMapper(Settings, right.Count);
DifferenceVisitor.cs (2)
21
if (mapper is
IAssemblySetMapper
assemblySetMapper)
44
public 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>
29
void 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>
21
IAssemblySetMapper
? containingAssemblySet = null) : ElementMapper<ElementContainer<IAssemblySymbol>>(ruleRunner, settings, rightSetSize), IAssemblyMapper
26
public
IAssemblySetMapper
? ContainingAssemblySet { get; } = containingAssemblySet;
Mapping\ElementMapperFactory.cs (1)
14
public
IAssemblySetMapper
CreateAssemblySetMapper(IMapperSettings settings, int rightCount) =>
Mapping\IAssemblyMapper.cs (1)
18
IAssemblySetMapper
? 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.
17
IAssemblySetMapper
CreateAssemblySetMapper(IMapperSettings settings, int rightCount);
Microsoft.DotNet.ApiCompatibility.Tests (2)
Mapping\AssemblyMapperTests.cs (2)
22
IAssemblySetMapper
assemblySetMapper = Mock.Of<
IAssemblySetMapper
>();