2 instantiations of DependentAssembly
Microsoft.Build.Tasks.Core (2)
AppConfig\RuntimeSection.cs (1)
31
var dependentAssembly = new
DependentAssembly
();
AssemblyDependency\ReferenceTable.cs (1)
1961
var remapping = new
DependentAssembly
23 references to DependentAssembly
Microsoft.Build.Tasks.Core (23)
AppConfig\RuntimeSection.cs (3)
31
var
dependentAssembly = new DependentAssembly();
47
internal List<
DependentAssembly
> DependentAssemblies { get; } = new List<
DependentAssembly
>();
AssemblyDependency\ReferenceTable.cs (6)
60
private IEnumerable<
DependentAssembly
> _remappedAssemblies = [];
1652
IEnumerable<
DependentAssembly
> remappedAssembliesValue,
1876
out List<
DependentAssembly
> idealRemappings,
1956
var idealRemappingsList = new List<
DependentAssembly
>(assemblyNamesList.Count);
1961
var
remapping = new DependentAssembly
2526
foreach (
DependentAssembly
remappedAssembly in _remappedAssemblies)
AssemblyDependency\ResolveAssemblyReference.cs (14)
1233
List<
DependentAssembly
> idealAssemblyRemappings,
1338
DependentAssembly
idealRemapping = idealAssemblyRemappings[i];
2269
private List<
DependentAssembly
> GetAssemblyRemappingsFromAppConfig()
2536
List<
DependentAssembly
> appConfigRemappedAssemblies = null;
2626
List<
DependentAssembly
> autoUnifiedRemappedAssemblies = null;
2665
IReadOnlyCollection<
DependentAssembly
> allRemappedAssemblies = CombineRemappedAssemblies(appConfigRemappedAssemblies, autoUnifiedRemappedAssemblies);
2666
List<
DependentAssembly
> idealAssemblyRemappings = autoUnifiedRemappedAssemblies;
2716
List<
DependentAssembly
> remappings = AutoUnify ? autoUnifiedRemappedAssemblies : idealAssemblyRemappings;
2904
private static IReadOnlyCollection<
DependentAssembly
> CombineRemappedAssemblies(IReadOnlyCollection<
DependentAssembly
> first, IReadOnlyCollection<
DependentAssembly
> second)
2916
var combined = new List<
DependentAssembly
>(first.Count + second.Count);
3182
private void PopulateSuggestedRedirects(List<
DependentAssembly
> idealAssemblyRemappings, List<AssemblyNameReference> idealAssemblyRemappedReferences)
3189
DependentAssembly
idealRemapping = idealAssemblyRemappings[i];