Skip to content

Commit

Permalink
Fix OpenFolderSchema.json to comply with schema (#1112)
Browse files Browse the repository at this point in the history
  • Loading branch information
WardenGnaw committed Mar 9, 2021
1 parent 7c10202 commit 892d42f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/MIDebugPackage/OpenFolderSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,14 @@
"type": "object",
"description": "Optional source file mappings passed to the debug engine. Format: '{ \"<Compiler source location>\": \"<Editor source location>\" }' OR '{ \"<Compiler source location>\": { \"editorPath\": \"<Editor source location>\", \"useForBreakpoints\": true } }'. \nExample: '{ \"/home/user/foo\": \"C:\\foo\" }' OR '{ \"/home/user/foo\": { \"editorPath\": \"c:\\foo\", \"useForBreakpoints\": true } }'.",
"additionalProperties": {
"anyOf": {
"type": "string",
"$ref": "#/definitions/cpp_schema/definitions/sourceFileMapOptions"
}
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/cpp_schema/definitions/sourceFileMapOptions"
}
]
}
},
"MIMode": {
Expand Down

0 comments on commit 892d42f

Please sign in to comment.