Open Scmp file in Schema Compare extension (#20435)

* Open Scmp file in Schema Compare extension

* Address comments and fix failing test

* Addressed comment
This commit is contained in:
Sakshi Sharma
2022-08-24 09:50:22 -07:00
committed by GitHub
parent 87e406caca
commit dc8d703c25
5 changed files with 32 additions and 2 deletions

View File

@@ -42,6 +42,10 @@
{
"command": "schemaCompare.runComparison",
"title": "%schemaCompare.runComparison%"
},
{
"command": "schemaCompare.openInScmp",
"title": "%schemaCompare.openInScmp%"
}
],
"languages": [
@@ -91,6 +95,17 @@
{
"command": "schemaCompare.runComparison",
"when": "false"
},
{
"command": "schemaCompare.openInScmp",
"when": "false"
}
],
"explorer/context": [
{
"command": "schemaCompare.openInScmp",
"when": "resourceExtname == .scmp",
"group": "navigation"
}
]
}