-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWorkspace.swift
More file actions
30 lines (28 loc) · 1.1 KB
/
Copy pathWorkspace.swift
File metadata and controls
30 lines (28 loc) · 1.1 KB
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
27
28
29
30
import ProjectDescription
let workspace = Workspace(
name: "HGDGDS",
projects: [
"./**"
],
schemes: [
// .scheme(
// name: "Dev-HGDGDS",
// buildAction: .buildAction(targets: [.project(path: "./App", target: "HGDGDS")]),
// testAction: nil,
// runAction: .runAction(configuration: .debug),
// archiveAction: .archiveAction(configuration: .debug),
// profileAction: .profileAction(configuration: .debug),
// analyzeAction: .analyzeAction(configuration: .debug)
// ),
// .scheme(
// name: "PROD-HGDGDS",
// buildAction: .buildAction(targets: [.project(path: "./App", target: "HGDGDS")]),
// testAction: nil,
// runAction: .runAction(configuration: .release),
// archiveAction: .archiveAction(configuration: .release),
// profileAction: .profileAction(configuration: .release),
// analyzeAction: .analyzeAction(configuration: .release)
// ),
],
generationOptions: .options(autogeneratedWorkspaceSchemes: .disabled)
)