1 instantiation of RedistList
Microsoft.Build.Tasks.Core (1)
RedistList.cs (1)
362
redistList = new
RedistList
(assemblyTables);
36 references to RedistList
Microsoft.Build.Tasks.Core (36)
AssemblyDependency\InstalledAssemblies.cs (3)
6
using static Microsoft.Build.Tasks.
RedistList
;
17
private readonly
RedistList
_redistList;
22
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);
2027
Tuple<
RedistList
, string> redistListOtherFramework = GetHighestVersionFullFrameworkForTFM(_targetFrameworkMoniker);
2047
private Tuple<
RedistList
, string> GetHighestVersionFullFrameworkForTFM(FrameworkNameVersioning targetFrameworkMoniker)
2049
RedistList
redistList = null;
2050
Tuple<
RedistList
, string> redistListAndOtherFrameworkName = null;
2083
string[] listPaths =
RedistList
.GetRedistListPathsFromDisk(path);
2095
redistList =
RedistList
.GetRedistList(assemblyTableInfos.ToArray());
2098
redistListAndOtherFrameworkName = new Tuple<
RedistList
, string>(redistList, otherFrameworkName);
AssemblyDependency\ResolveAssemblyReference.cs (9)
2382
AssemblyTableInfo[] installedAssemblyTableInfo = GetInstalledAssemblyTableInfo(_ignoreDefaultInstalledAssemblyTables, _installedAssemblyTables, new GetListPath(
RedistList
.GetRedistListPathsFromDisk), TargetFrameworkDirectories);
2386
RedistList
redistList = null;
2390
redistList =
RedistList
.GetRedistList(installedAssemblyTableInfo);
2439
RedistList
fullFrameworkRedistList = null;
2473
Log.LogWarningWithCodeFromResources("ResolveAssemblyReference.InvalidInstalledAssemblyTablesFile", filename,
RedistList
.RedistListFolder, e.Message);
2952
private void HandleProfile(AssemblyTableInfo[] installedAssemblyTableInfo, out AssemblyTableInfo[] fullRedistAssemblyTableInfo, out Dictionary<string, string> exclusionList, out
RedistList
fullFrameworkRedistList)
2970
fullRedistAssemblyTableInfo = GetInstalledAssemblyTableInfo(false, FullFrameworkAssemblyTables, new GetListPath(
RedistList
.GetRedistListPathsFromDisk), _fullFrameworkFolders.ToStringArray());
2974
fullFrameworkRedistList =
RedistList
.GetRedistList(fullRedistAssemblyTableInfo);
3008
Log.LogWarningWithCodeFromResources("ResolveAssemblyReference.InvalidProfileRedistLocation", filename,
RedistList
.RedistListFolder, e.Message);
ManifestUtil\AssemblyIdentity.cs (3)
402
var redistDictionary = new Dictionary<string,
RedistList
>();
416
redistDictionary.Add(path,
RedistList
.GetRedistListFromPath(path));
423
foreach (
RedistList
list in redistDictionary.Values)
RedistList.cs (10)
39
private static readonly Dictionary<string,
RedistList
> s_cachedRedistList = new Dictionary<string,
RedistList
>(StringComparer.OrdinalIgnoreCase);
216
public static
RedistList
GetFrameworkList20()
222
redistListPaths =
RedistList
.GetRedistListPathsFromDisk(frameworkVersion20Path);
239
public static
RedistList
GetFrameworkList30()
249
public static
RedistList
GetFrameworkList35()
257
public static
RedistList
GetRedistListFromPath(string path)
270
private static
RedistList
GetFrameworkListFromReferenceAssembliesPath(TargetDotNetFrameworkVersion version)
338
public static
RedistList
GetRedistList(AssemblyTableInfo[] assemblyTables)
357
if (s_cachedRedistList.TryGetValue(key, out
RedistList
redistList))
SystemState.cs (2)
78
private
RedistList
redistList;
257
redistList =
RedistList
.GetRedistList(installedAssemblyTableInfos);