6 instantiations of AssemblyTableInfo
Microsoft.Build.Tasks.Core (6)
AssemblyDependency\ReferenceTable.cs (1)
2048assemblyTableInfos.Add(new AssemblyTableInfo(listPath, path));
AssemblyDependency\ResolveAssemblyReference.cs (2)
3032tableMap[listPath] = new AssemblyTableInfo(listPath, targetFrameworkDirectory); 3056tableMap[installedAssemblyTable.ItemSpec] = new AssemblyTableInfo(installedAssemblyTable.ItemSpec, frameworkDirectory);
RedistList.cs (3)
227assemblyTableInfos[i] = new AssemblyTableInfo(redistListPaths[i], frameworkVersion20Path); 263assemblyTableInfos[i] = new AssemblyTableInfo(redistListPaths[i], path); 280assemblyTableInfos[i] = new AssemblyTableInfo(redistListPaths[i], referenceAssembliesPath);
30 references to AssemblyTableInfo
Microsoft.Build.Tasks.Core (30)
AssemblyDependency\ReferenceTable.cs (1)
2040var assemblyTableInfos = new List<AssemblyTableInfo>();
AssemblyDependency\ResolveAssemblyReference.cs (14)
2201AssemblyTableInfo[] installedAssemblyTableInfo = GetInstalledAssemblyTableInfo(_ignoreDefaultInstalledAssemblyTables, _installedAssemblyTables, new GetListPath(RedistList.GetRedistListPathsFromDisk), TargetFrameworkDirectories); 2202AssemblyTableInfo[] inclusionListSubsetTableInfo = null; 2257AssemblyTableInfo[] fullRedistAssemblyTableInfo = null; 2752private void HandleProfile(AssemblyTableInfo[] installedAssemblyTableInfo, out AssemblyTableInfo[] fullRedistAssemblyTableInfo, out Dictionary<string, string> exclusionList, out RedistList fullFrameworkRedistList) 2883private void DumpTargetProfileLists(AssemblyTableInfo[] installedAssemblyTableInfo, AssemblyTableInfo[] inclusionListSubsetTableInfo, ReferenceTable referenceTable) 2899foreach (AssemblyTableInfo redistInfo in installedAssemblyTableInfo) 2910foreach (AssemblyTableInfo inclusionListInfo in inclusionListSubsetTableInfo) 3020private AssemblyTableInfo[] GetInstalledAssemblyTableInfo(bool ignoreInstalledAssemblyTables, ITaskItem[] assemblyTables, GetListPath GetAssemblyListPaths, string[] targetFrameworkDirectories) 3022Dictionary<string, AssemblyTableInfo> tableMap = new Dictionary<string, AssemblyTableInfo>(StringComparer.OrdinalIgnoreCase); 3059AssemblyTableInfo[] extensions = new AssemblyTableInfo[tableMap.Count];
RedistList.cs (14)
91private RedistList(AssemblyTableInfo[] assemblyTableInfos) 103foreach (AssemblyTableInfo assemblyTableInfo in assemblyTableInfos) 224var assemblyTableInfos = new AssemblyTableInfo[redistListPaths.Length]; 260var assemblyTableInfos = new AssemblyTableInfo[redistListPaths.Length]; 277var assemblyTableInfos = new AssemblyTableInfo[redistListPaths.Length]; 337public static RedistList GetRedistList(AssemblyTableInfo[] assemblyTables) 523internal Dictionary<string, string> GenerateDenyList(AssemblyTableInfo[] allowListAssemblyTableInfo, List<Exception> allowListErrors, List<string> allowListErrorFileNames) 553foreach (AssemblyTableInfo info in allowListAssemblyTableInfo) 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) 784private static void ParseFileListSection(AssemblyTableInfo assemblyTableInfo, string path, string redistName, XmlReader reader, Dictionary<string, AssemblyEntry> assemblyEntries, List<AssemblyRemapping> remapEntries) 828private static AssemblyEntry ReadFileListEntry(AssemblyTableInfo assemblyTableInfo, string path, string redistName, XmlReader reader, bool fullFusionNameRequired) 954var that = (AssemblyTableInfo)obj;
SystemState.cs (1)
252AssemblyTableInfo[] installedAssemblyTableInfos)