2 instantiations of DependentAssembly
Microsoft.Build.Tasks.Core (2)
AppConfig\RuntimeSection.cs (1)
32
var dependentAssembly = new
DependentAssembly
();
AssemblyDependency\ReferenceTable.cs (1)
1933
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 = [];
1624
IEnumerable<
DependentAssembly
> remappedAssembliesValue,
1848
out List<
DependentAssembly
> idealRemappings,
1928
var idealRemappingsList = new List<
DependentAssembly
>(assemblyNamesList.Count);
1933
var
remapping = new DependentAssembly
2498
foreach (
DependentAssembly
remappedAssembly in _remappedAssemblies)
AssemblyDependency\ResolveAssemblyReference.cs (14)
1093
List<
DependentAssembly
> idealAssemblyRemappings,
1198
DependentAssembly
idealRemapping = idealAssemblyRemappings[i];
2129
private List<
DependentAssembly
> GetAssemblyRemappingsFromAppConfig()
2396
List<
DependentAssembly
> appConfigRemappedAssemblies = null;
2469
List<
DependentAssembly
> autoUnifiedRemappedAssemblies = null;
2508
IReadOnlyCollection<
DependentAssembly
> allRemappedAssemblies = CombineRemappedAssemblies(appConfigRemappedAssemblies, autoUnifiedRemappedAssemblies);
2509
List<
DependentAssembly
> idealAssemblyRemappings = autoUnifiedRemappedAssemblies;
2559
List<
DependentAssembly
> remappings = AutoUnify ? autoUnifiedRemappedAssemblies : idealAssemblyRemappings;
2747
private static IReadOnlyCollection<
DependentAssembly
> CombineRemappedAssemblies(IReadOnlyCollection<
DependentAssembly
> first, IReadOnlyCollection<
DependentAssembly
> second)
2759
var combined = new List<
DependentAssembly
>(first.Count + second.Count);
3025
private void PopulateSuggestedRedirects(List<
DependentAssembly
> idealAssemblyRemappings, List<AssemblyNameReference> idealAssemblyRemappedReferences)
3032
DependentAssembly
idealRemapping = idealAssemblyRemappings[i];