Static Methodswift-package-manager 6.0.1PackageDescription
byName(name:)
Creates a dependency that resolves to either a target or a product with the specified name.
Target.swift:1272This declaration was obsoleted in SwiftPM 5.3.
static func byName(name: String) -> Target.Dependency
Parameters
- name
The name of the dependency, either a target or a product.
Returns
A Target.Dependency
instance. The Swift Package Manager creates the by-name dependency after it has loaded the package graph.
See also
static func product(name: String, package: String, condition: TargetDependencyCondition?
) -> Target.Dependency Creates a target dependency on a product from a package dependency.
static func product(name: String, package: String?
) -> Target.Dependency Creates a dependency on a product from a package dependency.
static func product(name: String, package: String
) -> Target.Dependency Creates a dependency on a product from a package dependency.
static func product(name: String, package: String, moduleAliases: [String : String]?, condition: TargetDependencyCondition?
) -> Target.Dependency Creates a target dependency on a product from a package dependency.
static func target(name: String, condition: TargetDependencyCondition?
) -> Target.Dependency Creates a dependency on a target in the same package.
static func target(name: String
) -> Target.Dependency Creates a dependency on a target in the same package.
static func byName(name: String, condition: TargetDependencyCondition?
) -> Target.Dependency Creates a dependency that resolves to either a target or a product with the specified name.
struct TargetDependencyCondition
A condition that limits the application of a target’s dependency.
init(stringLiteral: String
) Creates a target dependency instance with the given value.
init(extendedGraphemeClusterLiteral: Self.StringLiteralType
) init(unicodeScalarLiteral: Self.ExtendedGraphemeClusterLiteralType
)