- Save settings profile

- Switch settings profile
- Remove settings profile
- Status bar entry
This commit is contained in:
Sandeep Somavarapu
2022-05-23 00:57:58 +02:00
parent 0ccc294e64
commit 86d085dbca
55 changed files with 639 additions and 142 deletions

View File

@@ -110,7 +110,7 @@ export async function setupServerServices(connectionToken: ServerConnectionToken
fileService.registerProvider(Schemas.file, disposables.add(new DiskFileSystemProvider(logService)));
// Configuration
const userDataProfilesService = new UserDataProfilesService(undefined, environmentService, logService);
const userDataProfilesService = new UserDataProfilesService(undefined, undefined, environmentService, fileService, logService);
const configurationService = new ConfigurationService(userDataProfilesService, fileService);
services.set(IConfigurationService, configurationService);
configurationService.initialize(environmentService.machineSettingsResource);