1 instantiation of Dependency
Microsoft.Extensions.DependencyModel (1)
DependencyContextJsonReader.cs (1)
468
dependencies.Add(new
Dependency
(Pool(name), Pool(version)));
22 references to Dependency
installer.tasks (1)
GenerateTestSharedFrameworkDepsFile.cs (1)
70
dependencies: Enumerable.Empty<
Dependency
>(),
Microsoft.DotNet.SharedFramework.Sdk (1)
src\GenerateSharedFrameworkDepsFile.cs (1)
91
Array.Empty<
Dependency
>(),
Microsoft.Extensions.DependencyModel (20)
CompilationLibrary.cs (2)
18
IEnumerable<
Dependency
> dependencies,
29
IEnumerable<
Dependency
> dependencies,
Dependency.cs (3)
10
public readonly struct Dependency : IEquatable<
Dependency
>
29
public bool Equals(
Dependency
other)
34
public override bool Equals([NotNullWhen(true)] object? obj) => obj is
Dependency
dependency && Equals(dependency);
DependencyContextJsonReader.cs (5)
395
IEnumerable<
Dependency
>? dependencies = null;
441
Dependencies = dependencies ?? Enumerable.Empty<
Dependency
>(),
451
private List<
Dependency
> ReadTargetLibraryDependencies(ref Utf8JsonReader reader)
453
var dependencies = new List<
Dependency
>();
886
public IEnumerable<
Dependency
> Dependencies;
DependencyContextWriter.cs (3)
196
private static void AddDependencies(IReadOnlyCollection<
Dependency
> dependencies, Utf8JsonWriter jsonWriter)
204
foreach (
Dependency
dependency in dependencies)
262
var dependencies = new HashSet<
Dependency
>();
Library.cs (4)
16
IEnumerable<
Dependency
> dependencies,
26
IEnumerable<
Dependency
> dependencies,
37
IEnumerable<
Dependency
> dependencies,
76
public IReadOnlyList<
Dependency
> Dependencies { get; }
RuntimeLibrary.cs (3)
19
IEnumerable<
Dependency
> dependencies,
42
IEnumerable<
Dependency
> dependencies,
93
IEnumerable<
Dependency
> dependencies,