Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Package.swift
  • Loading branch information
intitni committed Oct 12, 2025
commit 71bdcf5f8f1e6356b41bcccecb17a79d9d32ffe8
6 changes: 3 additions & 3 deletions Core/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ let package = Package(
.product(name: "SuggestionBasic", package: "Tool"),
.product(name: "Logger", package: "Tool"),
.product(name: "Preferences", package: "Tool"),
].pro([
"ProClient",
].proCore([
"LicenseManagement",
])
),
.target(
Expand Down Expand Up @@ -348,7 +348,7 @@ extension [Target.Dependency] {
extension [Package.Dependency] {
var pro: [Package.Dependency] {
if isProIncluded {
return self + [.package(path: "../../Pro")]
return self + [.package(path: "../../Pro"), .package(path: "../../Pro/ProCore")]
}
return self
}
Expand Down