2 instantiations of SwixDependency
Microsoft.DotNet.Build.Tasks.Workloads (2)
Swix\SwixComponent.cs (2)
120Dependencies.Add(new SwixDependency(id, minVersion, maxVersion)); 129Dependencies.Add(new SwixDependency($"{pack.Id.ToString().Replace(ShortNames)}.{pack.Version}", new NuGetVersion(pack.Version).Version, maxVersion: null));
4 references to SwixDependency
Microsoft.DotNet.Build.Tasks.Workloads (4)
Swix\ComponentSwixProject.cs (1)
67foreach (SwixDependency dependency in _component.Dependencies)
Swix\SwixDependency.cs (1)
40/// Creates a new <see cref="SwixDependency" /> dependency with an exact version.
Swix\SwixPackageBase.cs (2)
14public IList<SwixDependency> Dependencies 17} = new List<SwixDependency>();