5 instantiations of AssemblyTableInfo
Microsoft.Build.Tasks.Core (5)
AssemblyDependency\ReferenceTable.cs (1)
2088
assemblyTableInfos.Add(new
AssemblyTableInfo
(listPath, path));
RedistList.cs (4)
228
assemblyTableInfos[i] = new
AssemblyTableInfo
(redistListPaths[i], frameworkVersion20Path);
264
assemblyTableInfos[i] = new
AssemblyTableInfo
(redistListPaths[i], path);
281
assemblyTableInfos[i] = new
AssemblyTableInfo
(redistListPaths[i], referenceAssembliesPath);
992
return new
AssemblyTableInfo
(canonicalPath, FileUtilities.NormalizeForPathComparison(frameworkDirectory));
34 references to AssemblyTableInfo
Microsoft.Build.Tasks.Core (34)
AssemblyDependency\ReferenceTable.cs (1)
2080
var assemblyTableInfos = new List<
AssemblyTableInfo
>();
AssemblyDependency\ResolveAssemblyReference.cs (16)
2382
AssemblyTableInfo
[] installedAssemblyTableInfo = GetInstalledAssemblyTableInfo(_ignoreDefaultInstalledAssemblyTables, _installedAssemblyTables, new GetListPath(RedistList.GetRedistListPathsFromDisk), TargetFrameworkDirectories);
2383
AssemblyTableInfo
[] inclusionListSubsetTableInfo = null;
2438
AssemblyTableInfo
[] fullRedistAssemblyTableInfo = null;
2952
private void HandleProfile(
AssemblyTableInfo
[] installedAssemblyTableInfo, out
AssemblyTableInfo
[] fullRedistAssemblyTableInfo, out Dictionary<string, string> exclusionList, out RedistList fullFrameworkRedistList)
3083
private void DumpTargetProfileLists(
AssemblyTableInfo
[] installedAssemblyTableInfo,
AssemblyTableInfo
[] inclusionListSubsetTableInfo, ReferenceTable referenceTable)
3099
foreach (
AssemblyTableInfo
redistInfo in installedAssemblyTableInfo)
3110
foreach (
AssemblyTableInfo
inclusionListInfo in inclusionListSubsetTableInfo)
3220
private
AssemblyTableInfo
[] GetInstalledAssemblyTableInfo(bool ignoreInstalledAssemblyTables, ITaskItem[] assemblyTables, GetListPath GetAssemblyListPaths, string[] targetFrameworkDirectories)
3222
Dictionary<string,
AssemblyTableInfo
> tableMap = new Dictionary<string,
AssemblyTableInfo
>(StringComparer.OrdinalIgnoreCase);
3232
tableMap[listPath] =
AssemblyTableInfo
.CreateFromRelativePath(listPath, targetFrameworkDirectory, TaskEnvironment, Log);
3256
tableMap[installedAssemblyTable.ItemSpec] =
AssemblyTableInfo
.CreateFromRelativePath(installedAssemblyTable.ItemSpec, frameworkDirectory, TaskEnvironment, Log);
3259
AssemblyTableInfo
[] extensions = new
AssemblyTableInfo
[tableMap.Count];
RedistList.cs (16)
92
private RedistList(
AssemblyTableInfo
[] assemblyTableInfos)
104
foreach (
AssemblyTableInfo
assemblyTableInfo in assemblyTableInfos)
225
var assemblyTableInfos = new
AssemblyTableInfo
[redistListPaths.Length];
261
var assemblyTableInfos = new
AssemblyTableInfo
[redistListPaths.Length];
278
var assemblyTableInfos = new
AssemblyTableInfo
[redistListPaths.Length];
338
public static RedistList GetRedistList(
AssemblyTableInfo
[] assemblyTables)
564
internal Dictionary<string, string> GenerateDenyList(
AssemblyTableInfo
[] allowListAssemblyTableInfo, List<Exception> allowListErrors, List<string> allowListErrorFileNames)
594
foreach (
AssemblyTableInfo
info in allowListAssemblyTableInfo)
690
internal static string ReadFile(
AssemblyTableInfo
assemblyTableInfo, List<AssemblyEntry> assembliesList, List<Exception> errorsList, List<string> errorFilenamesList, List<AssemblyRemapping> remapEntries)
768
private static void ParseRemapSection(
AssemblyTableInfo
assemblyTableInfo, string path, string redistName, XmlReader reader, List<AssemblyRemapping> mapping)
825
private static void ParseFileListSection(
AssemblyTableInfo
assemblyTableInfo, string path, string redistName, XmlReader reader, Dictionary<string, AssemblyEntry> assemblyEntries, List<AssemblyRemapping> remapEntries)
869
private static AssemblyEntry ReadFileListEntry(
AssemblyTableInfo
assemblyTableInfo, string path, string redistName, XmlReader reader, bool fullFusionNameRequired)
982
/// Creates an <see cref="
AssemblyTableInfo
"/> from a potentially relative path,
989
internal static
AssemblyTableInfo
CreateFromRelativePath(string path, string frameworkDirectory, TaskEnvironment taskEnvironment, TaskLoggingHelper log)
1014
var
that = (
AssemblyTableInfo
)obj;
SystemState.cs (1)
255
AssemblyTableInfo
[] installedAssemblyTableInfos)