Support for Visual Studio Code Insiders

This commit is contained in:
VNC
2020-12-28 21:12:52 +01:00
parent dc1360422f
commit e0c362856e
4 changed files with 31 additions and 7 deletions

View File

@@ -13,6 +13,7 @@ private:
String _execPath;
String _workspacePath;
bool _isInsiders;
public:
@@ -20,7 +21,8 @@ public:
/// Initializes a new instance of the <see cref="VisualStudioEditor"/> class.
/// </summary>
/// <param name="execPath">Executable file path</param>
VisualStudioCodeEditor(const String& execPath);
/// <param name="isInsiders">Is insiders edition</param>
VisualStudioCodeEditor(const String& execPath, const bool isInsiders);
public: