-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.yml
More file actions
52 lines (52 loc) · 1.46 KB
/
project.yml
File metadata and controls
52 lines (52 loc) · 1.46 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: StockTicker
options:
bundleIdPrefix: com.stockticker
deploymentTarget:
macOS: "14.0"
xcodeVersion: "16.0"
generateEmptyDirectories: true
settings:
base:
SWIFT_VERSION: "6.0"
MACOSX_DEPLOYMENT_TARGET: "14.0"
targets:
StockTicker:
type: application
platform: macOS
sources:
- StockTicker
settings:
base:
INFOPLIST_FILE: StockTicker/Info.plist
CODE_SIGN_ENTITLEMENTS: StockTicker/StockTicker.entitlements
PRODUCT_BUNDLE_IDENTIFIER: com.stockticker.app
PRODUCT_NAME: StockTicker
ENABLE_HARDENED_RUNTIME: true
info:
path: StockTicker/Info.plist
properties:
LSUIElement: true
CFBundleName: StockTicker
CFBundleDisplayName: Stock Ticker
CFBundleIdentifier: com.stockticker.app
CFBundleVersion: "1"
CFBundleShortVersionString: "1.0"
LSMinimumSystemVersion: "14.0"
entitlements:
path: StockTicker/StockTicker.entitlements
properties:
com.apple.security.app-sandbox: true
com.apple.security.network.client: true
StockTickerTests:
type: bundle.unit-test
platform: macOS
sources:
- StockTickerTests
dependencies:
- target: StockTicker
settings:
base:
PRODUCT_BUNDLE_IDENTIFIER: com.stockticker.tests
GENERATE_INFOPLIST_FILE: true
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/StockTicker.app/Contents/MacOS/StockTicker"
BUNDLE_LOADER: "$(TEST_HOST)"