Revert "Add a command line interface for connecting to a SQL Server (#3047)"

This reverts commit 7f66087d8c.
This commit is contained in:
Karl Burtram
2018-10-31 14:39:46 -07:00
parent 711b7bf622
commit a747b6a500
7 changed files with 22 additions and 318 deletions

View File

@@ -1,17 +0,0 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
export interface ICommandLineProcessing {
_serviceBrand: any;
/**
* Interprets the various Azure Data Studio-specific command line switches and
* performs the requisite tasks such as connecting to a server
*/
processCommandLine() : void;
}
export const ICommandLineProcessing = createDecorator<ICommandLineProcessing>('commandLineService');