mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-12 23:41:44 +08:00
0084acc75d
* [vcpkg ci] add macos scripts to vcpkg repo * CR changes * docs stuff
62 lines
1.2 KiB
JSON
62 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
|
"type": "object",
|
|
"definitions": {
|
|
"sha256": {
|
|
"type": "string",
|
|
"pattern": "[A-Z0-9]{64}"
|
|
}
|
|
},
|
|
"required": [
|
|
"Applications",
|
|
"VBoxExtensions"
|
|
],
|
|
"properties": {
|
|
"Applications": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"Name": {
|
|
"type": "string"
|
|
},
|
|
"TestCommand": {
|
|
"type": "string"
|
|
},
|
|
"DmgUrl": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
},
|
|
"Sha256": {
|
|
"$ref": "#/definitions/sha256"
|
|
},
|
|
"InstallerPath": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"VBoxExtensions": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"Name": {
|
|
"type": "string"
|
|
},
|
|
"FullName": {
|
|
"type": "string"
|
|
},
|
|
"Url": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
},
|
|
"Sha256": {
|
|
"$ref": "#/definitions/sha256"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|