Skip to content

Commit e907e3e

Browse files
Merge pull request #3 from ConsultingMD/nikola/update-project
Nikola/update project
2 parents 9fd0246 + 683390b commit e907e3e

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

Package.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// swift-tools-version:6.0
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

4-
import Foundation
54
import PackageDescription
65

76
let package = Package(

README.md

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,37 @@ For even more detailed logging, enable verbose mode by setting the `SWIFTUI_DEBU
5454
- Thread details
5555
- System memory and processor usage
5656
- Uptime and elapsed time
57-
- Verbose mode is especially useful for diagnosing complex issues in large applications.
57+
58+
Verbose mode is especially useful for diagnosing complex issues in large applications.
5859

5960
## Installation
6061

61-
You can add swift-ui-debug-scan to your project using Swift Package Manager:
62+
Add this package to your project using Swift Package Manager:
63+
64+
```swift
65+
dependencies: [
66+
.package(url: "https://github.com/ConsultingMD/swift-ui-debug-scan", from: "0.1.0")
67+
]
68+
```
69+
70+
Then add the dependency to your target:
71+
72+
```swift
73+
.target(
74+
name: "YourTarget",
75+
dependencies: [
76+
.product(name: "SwiftUIDebugScan", package: "swift-ui-debug-scan")
77+
]
78+
)
79+
```
80+
81+
Alternatively, you can add the package directly in Xcode:
6282

6383
1. Open your project in Xcode.
64-
2. Go to File > Add Packages.
65-
3. Enter the repository URL for SwiftUIDebugScan.
66-
4. Select the version or branch you want to use and add the package to your project.
84+
2. Navigate to `File > Add Packages`.
85+
3. Enter the repository URL: `https://github.com/ConsultingMD/swift-ui-debug-scan`.
86+
4. Choose the version or branch you want to use.
87+
5. Add the package to your desired target.
6788

6889
## Contributing
6990

0 commit comments

Comments
 (0)