2 instantiations of DependentAssembly
Microsoft.Build.Tasks.Core (2)
AppConfig\RuntimeSection.cs (1)
32
var dependentAssembly = new
DependentAssembly
();
AssemblyDependency\ReferenceTable.cs (1)
1940
var remapping = new
DependentAssembly
23 references to DependentAssembly
Microsoft.Build.Tasks.Core (23)
AppConfig\RuntimeSection.cs (3)
32
var
dependentAssembly = new DependentAssembly();
48
internal List<
DependentAssembly
> DependentAssemblies { get; } = new List<
DependentAssembly
>();
AssemblyDependency\ReferenceTable.cs (6)
49
private IEnumerable<
DependentAssembly
> _remappedAssemblies = [];
1631
IEnumerable<
DependentAssembly
> remappedAssembliesValue,
1855
out List<
DependentAssembly
> idealRemappings,
1935
var idealRemappingsList = new List<
DependentAssembly
>(assemblyNamesList.Count);
1940
var
remapping = new DependentAssembly
2505
foreach (
DependentAssembly
remappedAssembly in _remappedAssemblies)
AssemblyDependency\ResolveAssemblyReference.cs (14)
1087
List<
DependentAssembly
> idealAssemblyRemappings,
1192
DependentAssembly
idealRemapping = idealAssemblyRemappings[i];
2123
private List<
DependentAssembly
> GetAssemblyRemappingsFromAppConfig()
2390
List<
DependentAssembly
> appConfigRemappedAssemblies = null;
2463
List<
DependentAssembly
> autoUnifiedRemappedAssemblies = null;
2502
IReadOnlyCollection<
DependentAssembly
> allRemappedAssemblies = CombineRemappedAssemblies(appConfigRemappedAssemblies, autoUnifiedRemappedAssemblies);
2503
List<
DependentAssembly
> idealAssemblyRemappings = autoUnifiedRemappedAssemblies;
2553
List<
DependentAssembly
> remappings = AutoUnify ? autoUnifiedRemappedAssemblies : idealAssemblyRemappings;
2741
private static IReadOnlyCollection<
DependentAssembly
> CombineRemappedAssemblies(IReadOnlyCollection<
DependentAssembly
> first, IReadOnlyCollection<
DependentAssembly
> second)
2753
var combined = new List<
DependentAssembly
>(first.Count + second.Count);
3019
private void PopulateSuggestedRedirects(List<
DependentAssembly
> idealAssemblyRemappings, List<AssemblyNameReference> idealAssemblyRemappedReferences)
3026
DependentAssembly
idealRemapping = idealAssemblyRemappings[i];