Use URIs instead of strings while passing environment to Extensionhost

This commit is contained in:
Sandeep Somavarapu
2018-09-05 17:28:50 +02:00
parent e659ffd6ac
commit 546032756a
5 changed files with 23 additions and 14 deletions

View File

@@ -46,10 +46,10 @@ import { CancellationToken } from 'vs/base/common/cancellation';
export interface IEnvironment {
isExtensionDevelopmentDebug: boolean;
appRoot: string;
appSettingsHome: string;
appRoot: URI;
appSettingsHome: URI;
extensionDevelopmentLocationURI: URI;
extensionTestsPath: string;
extensionTestsPath: URI;
}
export interface IWorkspaceData {