1 instantiation of RedistList
Microsoft.Build.Tasks.Core (1)
RedistList.cs (1)
361
redistList = new
RedistList
(assemblyTables);
35 references to RedistList
Microsoft.Build.Tasks.Core (35)
AssemblyDependency\InstalledAssemblies.cs (2)
18
private readonly
RedistList
_redistList;
23
internal InstalledAssemblies(
RedistList
redistList)
AssemblyDependency\ReferenceTable.cs (9)
36
private static readonly Dictionary<string, Tuple<
RedistList
, string>> s_monikerToHighestRedistList = new Dictionary<string, Tuple<
RedistList
, string>>(StringComparer.OrdinalIgnoreCase);
1987
Tuple<
RedistList
, string> redistListOtherFramework = GetHighestVersionFullFrameworkForTFM(_targetFrameworkMoniker);
2007
private Tuple<
RedistList
, string> GetHighestVersionFullFrameworkForTFM(FrameworkNameVersioning targetFrameworkMoniker)
2009
RedistList
redistList = null;
2010
Tuple<
RedistList
, string> redistListAndOtherFrameworkName = null;
2043
string[] listPaths =
RedistList
.GetRedistListPathsFromDisk(path);
2055
redistList =
RedistList
.GetRedistList(assemblyTableInfos.ToArray());
2058
redistListAndOtherFrameworkName = new Tuple<
RedistList
, string>(redistList, otherFrameworkName);
AssemblyDependency\ResolveAssemblyReference.cs (9)
2201
AssemblyTableInfo[] installedAssemblyTableInfo = GetInstalledAssemblyTableInfo(_ignoreDefaultInstalledAssemblyTables, _installedAssemblyTables, new GetListPath(
RedistList
.GetRedistListPathsFromDisk), TargetFrameworkDirectories);
2205
RedistList
redistList = null;
2209
redistList =
RedistList
.GetRedistList(installedAssemblyTableInfo);
2258
RedistList
fullFrameworkRedistList = null;
2292
Log.LogWarningWithCodeFromResources("ResolveAssemblyReference.InvalidInstalledAssemblyTablesFile", filename,
RedistList
.RedistListFolder, e.Message);
2752
private void HandleProfile(AssemblyTableInfo[] installedAssemblyTableInfo, out AssemblyTableInfo[] fullRedistAssemblyTableInfo, out Dictionary<string, string> exclusionList, out
RedistList
fullFrameworkRedistList)
2770
fullRedistAssemblyTableInfo = GetInstalledAssemblyTableInfo(false, FullFrameworkAssemblyTables, new GetListPath(
RedistList
.GetRedistListPathsFromDisk), FullFrameworkFolders);
2774
fullFrameworkRedistList =
RedistList
.GetRedistList(fullRedistAssemblyTableInfo);
2808
Log.LogWarningWithCodeFromResources("ResolveAssemblyReference.InvalidProfileRedistLocation", filename,
RedistList
.RedistListFolder, e.Message);
ManifestUtil\AssemblyIdentity.cs (3)
386
var redistDictionary = new Dictionary<string,
RedistList
>();
400
redistDictionary.Add(path,
RedistList
.GetRedistListFromPath(path));
407
foreach (
RedistList
list in redistDictionary.Values)
RedistList.cs (10)
38
private static readonly Dictionary<string,
RedistList
> s_cachedRedistList = new Dictionary<string,
RedistList
>(StringComparer.OrdinalIgnoreCase);
215
public static
RedistList
GetFrameworkList20()
221
redistListPaths =
RedistList
.GetRedistListPathsFromDisk(frameworkVersion20Path);
238
public static
RedistList
GetFrameworkList30()
248
public static
RedistList
GetFrameworkList35()
256
public static
RedistList
GetRedistListFromPath(string path)
269
private static
RedistList
GetFrameworkListFromReferenceAssembliesPath(TargetDotNetFrameworkVersion version)
337
public static
RedistList
GetRedistList(AssemblyTableInfo[] assemblyTables)
356
if (s_cachedRedistList.TryGetValue(key, out
RedistList
redistList))
SystemState.cs (2)
78
private
RedistList
redistList;
254
redistList =
RedistList
.GetRedistList(installedAssemblyTableInfos);