Skip to content

Commit

Permalink
Ready for publishing on github page
Browse files Browse the repository at this point in the history
  • Loading branch information
haren724 committed Jan 16, 2025
1 parent 14f56d2 commit 1d4ea89
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 74 deletions.
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.build
.index-build
DerivedData
/.previous-build
xcuserdata
.DS_Store
*~
\#*
.\#*
.*.sw[nop]
*.xcscmblueprint
/default.profraw
*.xcodeproj
Utilities/Docker/*.tar.gz
.swiftpm
Package.resolved
/build
*.pyc
.docc-build
.vscode
Utilities/InstalledSwiftPMConfiguration/config.json
.devcontainer
xcschememanagement.plist
*.xcscheme

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@
<dict>
<key>SchemeUserState</key>
<dict>
<key>Wallpaper_Player_Documentation.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>1</integer>
</dict>
<key>Wallpaper_Player_User_Documentation.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
Expand Down
10 changes: 8 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ import PackageDescription

let package = Package(
name: "Wallpaper_Player_User_Documentation",
products: [.library(name: "Wallpaper_Player_User_Documentation", targets: ["UserDocumentation"])],
targets: [.target(name: "UserDocumentation")]
products: [
.library(
name: "Wallpaper_Player_User_Documentation",
targets: ["UserDocumentation"])],
dependencies: [
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")],
targets: [
.target(name: "UserDocumentation")]
)

0 comments on commit 1d4ea89

Please sign in to comment.