forked from external/vscode-xml
Add $(project) Variable - Closes #30
This commit is contained in:
parent
d21d7404b8
commit
ba54b8a83f
1 changed files with 2 additions and 1 deletions
|
@ -97,7 +97,8 @@ export class XQueryExecutionProvider {
|
|||
args = args.map<string>((value: string) => {
|
||||
return value
|
||||
.replace('$(script)', editor.document.uri.fsPath)
|
||||
.replace('$(input)', inputFile.fsPath);
|
||||
.replace('$(input)', inputFile.fsPath)
|
||||
.replace('$(project)', vsc.workspace.rootPath);
|
||||
});
|
||||
|
||||
try {
|
||||
|
|
Loading…
Add table
Reference in a new issue