2 instantiations of AssemblyRemapping
Microsoft.Build.Tasks.Core (2)
AssemblyDependency\Reference.cs (1)
749_remappedAssemblyNames.Add(new AssemblyRemapping(remappedFrom, remappedTo));
RedistList.cs (1)
756var pair = new AssemblyRemapping(fromEntry, toEntry);
15 references to AssemblyRemapping
Microsoft.Build.Tasks.Core (15)
AssemblyDependency\Reference.cs (3)
123private HashSet<AssemblyRemapping> _remappedAssemblyNames = new HashSet<AssemblyRemapping>(); 718internal HashSet<AssemblyRemapping> RemappedAssemblyNames()
AssemblyDependency\ReferenceTable.cs (1)
408foreach (AssemblyRemapping pair in referenceGoingToBeReplaced.RemappedAssemblyNames())
AssemblyDependency\ResolveAssemblyReference.cs (1)
1674foreach (AssemblyRemapping remapping in reference.RemappedAssemblyNames())
AssemblyRemapping.cs (2)
14internal class AssemblyRemapping : IEquatable<AssemblyRemapping> 59public bool Equals(AssemblyRemapping other)
RedistList.cs (8)
85private readonly ReadOnlyCollection<AssemblyRemapping> _remapEntries; 96var remappingEntries = new List<AssemblyRemapping>(); 110_remapEntries = new ReadOnlyCollection<AssemblyRemapping>(remappingEntries); 186foreach (AssemblyRemapping remapEntry in _remapEntries) 649internal static string ReadFile(AssemblyTableInfo assemblyTableInfo, List<AssemblyEntry> assembliesList, List<Exception> errorsList, List<string> errorFilenamesList, List<AssemblyRemapping> remapEntries) 727private static void ParseRemapSection(AssemblyTableInfo assemblyTableInfo, string path, string redistName, XmlReader reader, List<AssemblyRemapping> mapping) 756var pair = new AssemblyRemapping(fromEntry, toEntry); 784private static void ParseFileListSection(AssemblyTableInfo assemblyTableInfo, string path, string redistName, XmlReader reader, Dictionary<string, AssemblyEntry> assemblyEntries, List<AssemblyRemapping> remapEntries)