Merge pull request #31 from TrueCommerce/issue-#30
Add $(project) Variable - Closes #30
This commit is contained in:
commit
20016739fc
@ -97,7 +97,8 @@ export class XQueryExecutionProvider {
|
|||||||
args = args.map<string>((value: string) => {
|
args = args.map<string>((value: string) => {
|
||||||
return value
|
return value
|
||||||
.replace('$(script)', editor.document.uri.fsPath)
|
.replace('$(script)', editor.document.uri.fsPath)
|
||||||
.replace('$(input)', inputFile.fsPath);
|
.replace('$(input)', inputFile.fsPath)
|
||||||
|
.replace('$(project)', vsc.workspace.rootPath);
|
||||||
});
|
});
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user