51 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);
Microsoft.Build.Tasks.UnitTests (45)
AssemblyDependency\Miscellaneous.cs (45)
2498AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2653AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2688AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2729AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2772AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2815AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2848AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2883AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2921AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 5315AssemblyTableInfo assemblyTableInfo = new AssemblyTableInfo(redistFile, "MyFrameworkDirectory"); 5549AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5573AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5581new AssemblyTableInfo("c:\\RandomDirectory.xml", "TargetFrameworkDirectory"), 5582new AssemblyTableInfo("c:\\AnotherRandomDirectory.xml", "TargetFrameworkDirectory") 5613AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5614AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(garbageSubsetFile, "TargetFrameworkDirectory"); 5658AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5659AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(subsetFile, "TargetFrameworkDirectory"); 5711AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5712AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(subsetFile, "TargetFrameworkDirectory"); 5756AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5757AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(subsetFile, "TargetFrameworkDirectory"); 5791AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5792AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(subsetFile, "TargetFrameworkDirectory"); 5877AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5878AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(goodSubsetFile, "TargetFrameworkDirectory"); 5910AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5911AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(goodSubsetFile, "TargetFrameworkDirectory"); 5953AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5954AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(goodSubsetFile, "TargetFrameworkDirectory"); 5955AssemblyTableInfo subsetListInfo2 = new AssemblyTableInfo(goodSubsetFile2, "TargetFrameworkDirectory"); 5994AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5995AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(goodSubsetFile, "TargetFrameworkDirectory"); 6026AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 6027AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(goodSubsetFile, "TargetFrameworkDirectory"); 6067AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 6068AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(goodSubsetFile, "TargetFrameworkDirectory"); 7890AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 7930AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 7958AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 7986AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 8026AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 8055AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 8084AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 8113AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist");
112 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)
Microsoft.Build.Tasks.UnitTests (82)
AssemblyDependency\Miscellaneous.cs (82)
2498AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2653AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2688AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2729AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2772AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2815AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2848AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2883AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 2921AssemblyTableInfo info = new AssemblyTableInfo(redistFile, String.Empty); 5315AssemblyTableInfo assemblyTableInfo = new AssemblyTableInfo(redistFile, "MyFrameworkDirectory"); 5316RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { assemblyTableInfo }); 5532RedistList redistList = RedistList.GetRedistList(Array.Empty<AssemblyTableInfo>()); 5535Dictionary<string, string> denyList = redistList.GenerateDenyList(Array.Empty<AssemblyTableInfo>(), allowListErrors, allowListErrorFileNames); 5549AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5550RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 5553Dictionary<string, string> denyList = redistList.GenerateDenyList(Array.Empty<AssemblyTableInfo>(), allowListErrors, allowListErrorFileNames); 5573AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5574RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 5579new AssemblyTableInfo[] 5613AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5614AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(garbageSubsetFile, "TargetFrameworkDirectory"); 5615RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 5618Dictionary<string, string> denyList = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo }, allowListErrors, allowListErrorFileNames); 5658AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5659AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(subsetFile, "TargetFrameworkDirectory"); 5660RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 5663Dictionary<string, string> denyList = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo }, allowListErrors, allowListErrorFileNames); 5711AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5712AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(subsetFile, "TargetFrameworkDirectory"); 5713RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 5716Dictionary<string, string> denyList = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo }, allowListErrors, allowListErrorFileNames); 5756AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5757AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(subsetFile, "TargetFrameworkDirectory"); 5758RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 5761Dictionary<string, string> denyList = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo }, allowListErrors, allowListErrorFileNames); 5791AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5792AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(subsetFile, "TargetFrameworkDirectory"); 5793RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 5796Dictionary<string, string> denyList = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo }, allowListErrors, allowListErrorFileNames); 5805Dictionary<string, string> denyList2 = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo }, allowListErrors, allowListErrorFileNames); 5877AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5878AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(goodSubsetFile, "TargetFrameworkDirectory"); 5879RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 5882Dictionary<string, string> denyList = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo }, allowListErrors, allowListErrorFileNames); 5910AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5911AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(goodSubsetFile, "TargetFrameworkDirectory"); 5912RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 5915Dictionary<string, string> denyList = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo }, allowListErrors, allowListErrorFileNames); 5925Dictionary<string, string> denyList2 = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo }, allowListErrors2, allowListErrorFileNames2); 5953AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5954AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(goodSubsetFile, "TargetFrameworkDirectory"); 5955AssemblyTableInfo subsetListInfo2 = new AssemblyTableInfo(goodSubsetFile2, "TargetFrameworkDirectory"); 5956RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 5960Dictionary<string, string> denyList = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo, subsetListInfo2 }, allowListErrors, allowListErrorFileNames); 5994AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 5995AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(goodSubsetFile, "TargetFrameworkDirectory"); 5996RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 5999Dictionary<string, string> denyList = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo }, allowListErrors, allowListErrorFileNames); 6026AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 6027AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(goodSubsetFile, "TargetFrameworkDirectory"); 6028RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 6031Dictionary<string, string> denyList = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo }, allowListErrors, allowListErrorFileNames); 6067AssemblyTableInfo redistListInfo = new AssemblyTableInfo(redistFile, "TargetFrameworkDirectory"); 6068AssemblyTableInfo subsetListInfo = new AssemblyTableInfo(goodSubsetFile, "TargetFrameworkDirectory"); 6069RedistList redistList = RedistList.GetRedistList(new AssemblyTableInfo[] { redistListInfo }); 6072Dictionary<string, string> denyList = redistList.GenerateDenyList(new AssemblyTableInfo[] { subsetListInfo }, allowListErrors, allowListErrorFilesNames); 7890AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 7891RedistList redist = RedistList.GetRedistList(new AssemblyTableInfo[] { tableInfo }); 7930AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 7931RedistList redist = RedistList.GetRedistList(new AssemblyTableInfo[] { tableInfo }); 7958AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 7959RedistList redist = RedistList.GetRedistList(new AssemblyTableInfo[] { tableInfo }); 7986AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 7987RedistList redist = RedistList.GetRedistList(new AssemblyTableInfo[] { tableInfo }); 8026AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 8027RedistList redist = RedistList.GetRedistList(new AssemblyTableInfo[] { tableInfo }); 8055AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 8056RedistList redist = RedistList.GetRedistList(new AssemblyTableInfo[] { tableInfo }); 8084AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 8085RedistList redist = RedistList.GetRedistList(new AssemblyTableInfo[] { tableInfo }); 8113AssemblyTableInfo tableInfo = new AssemblyTableInfo(redistFile, "DoesNotExist"); 8114RedistList redist = RedistList.GetRedistList(new AssemblyTableInfo[] { tableInfo });