From 0ffe13d765d4a6d0a3981e7244ac1c918b4233c8 Mon Sep 17 00:00:00 2001 From: hamad12a <54325150+hamad12a@users.noreply.github.com> Date: Wed, 30 Mar 2022 14:44:55 +0100 Subject: [PATCH] Add Virtual Workspaces Support feature I noticed that in the case of loading remote workspace file the extension is disabled by default and VS reports that it does not support virtual workspace which is not true because logging directly through the terminal I could run code over ssh session which is the case not dealing with workspace files. --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index 2d1052f..f3667f8 100644 --- a/package.json +++ b/package.json @@ -379,5 +379,10 @@ "mocha": "^6.1.4", "tslint": "^5.5.0", "typescript": "^3.8.3" + }, + "capabilities": { + "virtualWorkspaces": { + "supported": true + } } }