Skip to content

Commit

Permalink
Remove AzureStorageBlob from Package.swift (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjprescott authored Sep 18, 2020
1 parent 2152d62 commit 4190516
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ let package = Package(
.macOS(.v10_15), .iOS(.v12), .tvOS(.v12)
],
products: [
.library(name: "AzureCore", targets: ["AzureCore"]),
.library(name: "AzureStorageBlob", targets: ["AzureStorageBlob"])
.library(name: "AzureCore", targets: ["AzureCore"])
],
dependencies: [],
targets: [
Expand All @@ -47,24 +46,12 @@ let package = Package(
path: "sdk/core/AzureCore",
sources: ["Source"]
),
.target(
name: "AzureStorageBlob",
dependencies: ["AzureCore"],
path: "sdk/storage/AzureStorageBlob",
sources: ["Source"]
),
// Test targets
.testTarget(
name: "AzureCoreTests",
dependencies: ["AzureCore"],
path: "sdk/core/AzureCore",
sources: ["Tests"]
),
.testTarget(
name: "AzureStorageBlobTests",
dependencies: ["AzureStorageBlob"],
path: "sdk/storage/AzureStorageBlob",
sources: ["Tests"]
)
],
swiftLanguageVersions: [.v5]
Expand Down

0 comments on commit 4190516

Please sign in to comment.