2 instantiations of DependentAssembly
Microsoft.Build.Tasks.Core (2)
AppConfig\RuntimeSection.cs (1)
32
var dependentAssembly = new
DependentAssembly
();
AssemblyDependency\ReferenceTable.cs (1)
1921
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 = [];
1612
IEnumerable<
DependentAssembly
> remappedAssembliesValue,
1836
out List<
DependentAssembly
> idealRemappings,
1916
var idealRemappingsList = new List<
DependentAssembly
>(assemblyNamesList.Count);
1921
var
remapping = new DependentAssembly
2495
foreach (
DependentAssembly
remappedAssembly in _remappedAssemblies)
AssemblyDependency\ResolveAssemblyReference.cs (14)
1065
List<
DependentAssembly
> idealAssemblyRemappings,
1170
DependentAssembly
idealRemapping = idealAssemblyRemappings[i];
2088
private List<
DependentAssembly
> GetAssemblyRemappingsFromAppConfig()
2355
List<
DependentAssembly
> appConfigRemappedAssemblies = null;
2426
List<
DependentAssembly
> autoUnifiedRemappedAssemblies = null;
2465
IReadOnlyCollection<
DependentAssembly
> allRemappedAssemblies = CombineRemappedAssemblies(appConfigRemappedAssemblies, autoUnifiedRemappedAssemblies);
2466
List<
DependentAssembly
> idealAssemblyRemappings = autoUnifiedRemappedAssemblies;
2516
List<
DependentAssembly
> remappings = AutoUnify ? autoUnifiedRemappedAssemblies : idealAssemblyRemappings;
2704
private static IReadOnlyCollection<
DependentAssembly
> CombineRemappedAssemblies(IReadOnlyCollection<
DependentAssembly
> first, IReadOnlyCollection<
DependentAssembly
> second)
2716
var combined = new List<
DependentAssembly
>(first.Count + second.Count);
2982
private void PopulateSuggestedRedirects(List<
DependentAssembly
> idealAssemblyRemappings, List<AssemblyNameReference> idealAssemblyRemappedReferences)
2989
DependentAssembly
idealRemapping = idealAssemblyRemappings[i];