6 instantiations of AssemblyTableInfo
Microsoft.Build.Tasks.Core (6)
AssemblyDependency\ReferenceTable.cs (1)
2071assemblyTableInfos.Add(new AssemblyTableInfo(listPath, path));
AssemblyDependency\ResolveAssemblyReference.cs (2)
3087tableMap[listPath] = new AssemblyTableInfo(listPath, targetFrameworkDirectory); 3111tableMap[installedAssemblyTable.ItemSpec] = new AssemblyTableInfo(installedAssemblyTable.ItemSpec, frameworkDirectory);
RedistList.cs (3)
228assemblyTableInfos[i] = new AssemblyTableInfo(redistListPaths[i], frameworkVersion20Path); 264assemblyTableInfos[i] = new AssemblyTableInfo(redistListPaths[i], path); 281assemblyTableInfos[i] = new AssemblyTableInfo(redistListPaths[i], referenceAssembliesPath);
30 references to AssemblyTableInfo
Microsoft.Build.Tasks.Core (30)
AssemblyDependency\ReferenceTable.cs (1)
2063var assemblyTableInfos = new List<AssemblyTableInfo>();
AssemblyDependency\ResolveAssemblyReference.cs (14)
2254AssemblyTableInfo[] installedAssemblyTableInfo = GetInstalledAssemblyTableInfo(_ignoreDefaultInstalledAssemblyTables, _installedAssemblyTables, new GetListPath(RedistList.GetRedistListPathsFromDisk), TargetFrameworkDirectories); 2255AssemblyTableInfo[] inclusionListSubsetTableInfo = null; 2310AssemblyTableInfo[] fullRedistAssemblyTableInfo = null; 2807private void HandleProfile(AssemblyTableInfo[] installedAssemblyTableInfo, out AssemblyTableInfo[] fullRedistAssemblyTableInfo, out Dictionary<string, string> exclusionList, out RedistList fullFrameworkRedistList) 2938private void DumpTargetProfileLists(AssemblyTableInfo[] installedAssemblyTableInfo, AssemblyTableInfo[] inclusionListSubsetTableInfo, ReferenceTable referenceTable) 2954foreach (AssemblyTableInfo redistInfo in installedAssemblyTableInfo) 2965foreach (AssemblyTableInfo inclusionListInfo in inclusionListSubsetTableInfo) 3075private AssemblyTableInfo[] GetInstalledAssemblyTableInfo(bool ignoreInstalledAssemblyTables, ITaskItem[] assemblyTables, GetListPath GetAssemblyListPaths, string[] targetFrameworkDirectories) 3077Dictionary<string, AssemblyTableInfo> tableMap = new Dictionary<string, AssemblyTableInfo>(StringComparer.OrdinalIgnoreCase); 3114AssemblyTableInfo[] extensions = new AssemblyTableInfo[tableMap.Count];
RedistList.cs (14)
92private RedistList(AssemblyTableInfo[] assemblyTableInfos) 104foreach (AssemblyTableInfo assemblyTableInfo in assemblyTableInfos) 225var assemblyTableInfos = new AssemblyTableInfo[redistListPaths.Length]; 261var assemblyTableInfos = new AssemblyTableInfo[redistListPaths.Length]; 278var assemblyTableInfos = new AssemblyTableInfo[redistListPaths.Length]; 338public static RedistList GetRedistList(AssemblyTableInfo[] assemblyTables) 564internal Dictionary<string, string> GenerateDenyList(AssemblyTableInfo[] allowListAssemblyTableInfo, List<Exception> allowListErrors, List<string> allowListErrorFileNames) 594foreach (AssemblyTableInfo info in allowListAssemblyTableInfo) 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) 825private static void ParseFileListSection(AssemblyTableInfo assemblyTableInfo, string path, string redistName, XmlReader reader, Dictionary<string, AssemblyEntry> assemblyEntries, List<AssemblyRemapping> remapEntries) 869private static AssemblyEntry ReadFileListEntry(AssemblyTableInfo assemblyTableInfo, string path, string redistName, XmlReader reader, bool fullFusionNameRequired) 995var that = (AssemblyTableInfo)obj;
SystemState.cs (1)
250AssemblyTableInfo[] installedAssemblyTableInfos)