gh-Dimillian-Skills/macos-spm-app-packaging/assets/templates/bootstrap/Sources/MyApp/main.swift
Thomas Ricouard f07d884c74 Add macOS SwiftPM app packaging templates and docs
Introduce a set of templates, scripts, and documentation for scaffolding, building, packaging, signing, and notarizing SwiftPM-based macOS apps without Xcode. Includes bootstrap project skeleton, build and packaging scripts, signing/notarization helpers, and reference guides for setup, packaging, and release workflows.
2026-01-07 12:23:29 +01:00

11 lines
173 B
Swift

import SwiftUI
@main
struct MyApp: App {
var body: some Scene {
WindowGroup {
Text("Hello from MyApp")
.padding()
}
}
}