-
Notifications
You must be signed in to change notification settings - Fork 2
/
Package.swift
26 lines (24 loc) · 918 Bytes
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "UpgradeAlert", // Set the name of the package
platforms: [.iOS(.v17), .macOS(.v14)], // Set the supported platforms
products: [
.library(
name: "UpgradeAlert", // Set the name of the library
targets: ["UpgradeAlert"]) // Set the library target
],
dependencies: [], // Set the package dependencies
targets: [
.target(
name: "UpgradeAlert", // Set the target name
dependencies: []), // Set the target dependencies
.testTarget(
name: "UpgradeAlertTests", // Set the test target name
dependencies: ["UpgradeAlert"]) // Set the test target dependencies
]
)
/*,*/
/*swiftLanguageVersions: [.v5],*/
/*url: "https://github.com/sentryco/UpgradeAlert",*/
/*description: "A Swift package for showing upgrade alerts."*/