-
Notifications
You must be signed in to change notification settings - Fork 2
/
Projection.schema.json
50 lines (50 loc) · 2.21 KB
/
Projection.schema.json
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Defines how to project WinRT types into Swift",
"type": "object",
"properties": {
"modules": {
"description": "Defines the Swift modules to be generated.",
"type": "object",
"patternProperties": {
"^[a-zA-Z0-9_]+$": {
"description": "Defines a generated Swift module.",
"type": "object",
"properties": {
"assemblies": {
"description": "A list of name patterns for assemblies whose types contribute to this module.",
"type": "array",
"items": {
"type": "string"
}
},
"types": {
"title": "A list of name patterns for types to be included in the generated Swift module.",
"type": "array",
"items": {
"type": "string"
}
},
"spmLibraryName": {
"title": "A name to use for the Swift Package Manager library exposing this module, when generating Package.swift. Defaults to the module name.",
"type": "string"
},
"cmakeTargetName": {
"title": "A name to use for the CMake target exposing this module, when generating CMakeLists.txt. Defaults to the module name.",
"type": "string"
},
"fileNameInManifest": {
"title": "The filename of the dll which provides class activation for this module.",
"type": "string"
}
},
"required": [
"assemblies"
],
"additionalProperties": false
}
},
"additionalProperties": false
}
}
}