Stabilize iOS/watchOS/tvOS apps and add cross-platform audit remediation
This commit is contained in:
35
SharedCore/Package.swift
Normal file
35
SharedCore/Package.swift
Normal file
@@ -0,0 +1,35 @@
|
||||
// swift-tools-version: 5.9
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "SharedCore",
|
||||
platforms: [
|
||||
.iOS(.v16),
|
||||
.watchOS(.v9),
|
||||
.tvOS(.v16),
|
||||
.macOS(.v13)
|
||||
],
|
||||
products: [
|
||||
.library(
|
||||
name: "SharedCore",
|
||||
targets: ["SharedCore"]
|
||||
)
|
||||
],
|
||||
targets: [
|
||||
.target(
|
||||
name: "SharedCore"
|
||||
),
|
||||
.testTarget(
|
||||
name: "SharedCoreiOSTests",
|
||||
dependencies: ["SharedCore"]
|
||||
),
|
||||
.testTarget(
|
||||
name: "SharedCoreWatchOSTests",
|
||||
dependencies: ["SharedCore"]
|
||||
),
|
||||
.testTarget(
|
||||
name: "SharedCoreTVOSTests",
|
||||
dependencies: ["SharedCore"]
|
||||
)
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user