redo profiler feature move from protocolclient (#12000)

* redo profiler feature move from protocolclient

* remove commented code
This commit is contained in:
David Shiflet
2020-08-28 14:50:32 -04:00
committed by GitHub
parent d59063ebab
commit 94958236cd
5 changed files with 393 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ import * as path from 'path';
import { getCommonLaunchArgsAndCleanupOldLogFiles } from './utils';
import { Telemetry, LanguageClientErrorHandler } from './telemetry';
import { SqlOpsDataClient, ClientOptions } from 'dataprotocol-client';
import { TelemetryFeature, AgentServicesFeature, SerializationFeature, AccountFeature, SqlAssessmentServicesFeature } from './features';
import { TelemetryFeature, AgentServicesFeature, SerializationFeature, AccountFeature, SqlAssessmentServicesFeature, ProfilerFeature } from './features';
import { CredentialStore } from './credentialstore/credentialstore';
import { AzureResourceProvider } from './resourceProvider/resourceProvider';
import { SchemaCompareService } from './schemaCompare/schemaCompareService';
@@ -162,7 +162,8 @@ function getClientOptions(context: AppContext): ClientOptions {
DacFxService.asFeature(context),
CmsService.asFeature(context),
SqlAssessmentService.asFeature(context),
NotebookConvertService.asFeature(context)
NotebookConvertService.asFeature(context),
ProfilerFeature
],
outputChannel: new CustomOutputChannel()
};