4 instantiations of RuntimeAssetGroup
xunit.console (4)
common\AssemblyResolution\Microsoft.Extensions.DependencyModel\DependencyContextJsonReader.cs (4)
400runtimeAssemblyGroups.Add(new RuntimeAssetGroup( 412nativeLibraryGroups.Add(new RuntimeAssetGroup( 421runtimeAssemblyGroups.Add(new RuntimeAssetGroup(string.Empty, targetLibrary.Runtimes)); 426nativeLibraryGroups.Add(new RuntimeAssetGroup(string.Empty, targetLibrary.Natives));
12 references to RuntimeAssetGroup
xunit.console (12)
common\AssemblyResolution\DependencyContextAssemblyCache.cs (4)
33readonly Dictionary<string, Tuple<RuntimeLibrary, RuntimeAssetGroup>> managedAssemblyMap; 37readonly Dictionary<string, Tuple<RuntimeLibrary, RuntimeAssetGroup>> unmanagedAssemblyMap; 230var assetGroup = libraryTuple.Item2; 275var assetGroup = libraryTuple.Item2;
common\AssemblyResolution\Microsoft.Extensions.DependencyModel\DependencyContextJsonReader.cs (2)
387var runtimeAssemblyGroups = new List<RuntimeAssetGroup>(); 388var nativeLibraryGroups = new List<RuntimeAssetGroup>();
common\AssemblyResolution\Microsoft.Extensions.DependencyModel\RuntimeLibrary.cs (6)
16IReadOnlyList<RuntimeAssetGroup> runtimeAssemblyGroups, 17IReadOnlyList<RuntimeAssetGroup> nativeLibraryGroups, 42IReadOnlyList<RuntimeAssetGroup> runtimeAssemblyGroups, 43IReadOnlyList<RuntimeAssetGroup> nativeLibraryGroups, 77public IReadOnlyList<RuntimeAssetGroup> RuntimeAssemblyGroups { get; } 79public IReadOnlyList<RuntimeAssetGroup> NativeLibraryGroups { get; }