FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
MetaCodable/Examples/Project.swift at main · easi6dev/MetaCodable · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
easi6dev
/
MetaCodable
Public
forked from
SwiftyLab/MetaCodable
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
MetaCodable
/
Examples
/
Project.swift
Copy path
More file actions
More file actions
Latest commit
History
History
History
48 lines (46 loc) · 1.57 KB
Breadcrumbs
MetaCodable
/
Examples
/
Project.swift
Copy path
File metadata and controls
48 lines (46 loc) · 1.57 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
import
ProjectDescription
let
defaultSettings
:
SettingsDictionary
=
[
:
]
.
codeSignIdentity
(
"
_
"
)
let
project
=
Project
(
name
:
"
MetaCodable
"
,
packages
:
[
.
local
(
path
:
"
../
"
)
]
,
targets
:
[
.
target
(
name
:
"
MetaCodablemacOS
"
,
destinations
:
.
macOS
,
product
:
.
app
,
bundleId
:
"
io.SwiftyLab.MetaCodable
"
,
deploymentTargets
:
.
macOS
(
"
11.0
"
)
,
sources
:
[
"
App/Sources/**
"
]
,
resources
:
[
"
App/Resources/**
"
]
,
dependencies
:
[
]
)
,
.
target
(
name
:
"
MetaCodableiOS
"
,
destinations
:
.
iOS
,
product
:
.
app
,
bundleId
:
"
io.SwiftyLab.MetaCodable
"
,
deploymentTargets
:
.
iOS
(
"
14.0
"
)
,
sources
:
[
"
App/Sources/**
"
]
,
resources
:
[
"
App/Resources/**
"
]
,
dependencies
:
[
]
,
settings
:
.
settings
(
base
:
defaultSettings
)
)
,
.
target
(
name
:
"
MetaCodableMultiPlatform
"
,
destinations
:
[
.
mac
,
.
iPhone
]
,
product
:
.
app
,
bundleId
:
"
io.SwiftyLab.MetaCodable
"
,
deploymentTargets
:
.
multiplatform
(
iOS
:
"
14.0
"
,
macOS
:
"
11.0
"
)
,
sources
:
[
"
App/Sources/**
"
]
,
resources
:
[
"
App/Resources/**
"
]
,
dependencies
:
[
.
package
(
product
:
"
MetaCodable
"
,
type
:
.
runtime
)
,
.
package
(
product
:
"
HelperCoders
"
,
type
:
.
runtime
)
,
.
package
(
product
:
"
MetaProtocolCodable
"
,
type
:
.
plugin
)
,
]
,
settings
:
.
settings
(
base
:
defaultSettings
)
)
,
]
)
Back
|
FazBrowse Home
|
New Git URL