6 instantiations of AssemblyTableInfo
Microsoft.Build.Tasks.Core (6)
AssemblyDependency\ReferenceTable.cs (1)
2060assemblyTableInfos.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)
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)
2052var 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)
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) 563internal Dictionary<string, string> GenerateDenyList(AssemblyTableInfo[] allowListAssemblyTableInfo, List<Exception> allowListErrors, List<string> allowListErrorFileNames) 593foreach (AssemblyTableInfo info in allowListAssemblyTableInfo) 689internal static string ReadFile(AssemblyTableInfo assemblyTableInfo, List<AssemblyEntry> assembliesList, List<Exception> errorsList, List<string> errorFilenamesList, List<AssemblyRemapping> remapEntries) 767private static void ParseRemapSection(AssemblyTableInfo assemblyTableInfo, string path, string redistName, XmlReader reader, List<AssemblyRemapping> mapping) 824private static void ParseFileListSection(AssemblyTableInfo assemblyTableInfo, string path, string redistName, XmlReader reader, Dictionary<string, AssemblyEntry> assemblyEntries, List<AssemblyRemapping> remapEntries) 868private static AssemblyEntry ReadFileListEntry(AssemblyTableInfo assemblyTableInfo, string path, string redistName, XmlReader reader, bool fullFusionNameRequired) 994var that = (AssemblyTableInfo)obj;
SystemState.cs (1)
250AssemblyTableInfo[] installedAssemblyTableInfos)