2 instantiations of AssemblyRemapping
Microsoft.Build.Tasks.Core (2)
AssemblyDependency\Reference.cs (1)
749_remappedAssemblyNames.Add(new AssemblyRemapping(remappedFrom, remappedTo));
RedistList.cs (1)
797var 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)
430foreach (AssemblyRemapping pair in referenceGoingToBeReplaced.RemappedAssemblyNames())
AssemblyDependency\ResolveAssemblyReference.cs (1)
1727foreach (AssemblyRemapping remapping in reference.RemappedAssemblyNames())
AssemblyRemapping.cs (2)
14internal class AssemblyRemapping : IEquatable<AssemblyRemapping> 59public bool Equals(AssemblyRemapping other)
RedistList.cs (8)
86private readonly ReadOnlyCollection<AssemblyRemapping> _remapEntries; 97var remappingEntries = new List<AssemblyRemapping>(); 111_remapEntries = new ReadOnlyCollection<AssemblyRemapping>(remappingEntries); 187foreach (AssemblyRemapping remapEntry in _remapEntries) 690internal static string ReadFile(AssemblyTableInfo assemblyTableInfo, List<AssemblyEntry> assembliesList, List<Exception> errorsList, List<string> errorFilenamesList, List<AssemblyRemapping> remapEntries) 768private static void ParseRemapSection(AssemblyTableInfo assemblyTableInfo, string path, string redistName, XmlReader reader, List<AssemblyRemapping> mapping) 797var pair = new AssemblyRemapping(fromEntry, toEntry); 825private static void ParseFileListSection(AssemblyTableInfo assemblyTableInfo, string path, string redistName, XmlReader reader, Dictionary<string, AssemblyEntry> assemblyEntries, List<AssemblyRemapping> remapEntries)