File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
test/omnisharp/omnisharpIntegrationTests Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -17,16 +17,6 @@ export interface ActivationResult {
17
17
}
18
18
19
19
export async function activateCSharpExtension ( ) : Promise < ActivationResult > {
20
- const configuration = vscode . workspace . getConfiguration ( ) ;
21
- await configuration . update (
22
- 'omnisharp.enableLspDriver' ,
23
- process . env . OMNISHARP_DRIVER === 'lsp' ? true : false ,
24
- vscode . ConfigurationTarget . WorkspaceFolder
25
- ) ;
26
- if ( process . env . OMNISHARP_LOCATION ) {
27
- await configuration . update ( 'path' , process . env . OMNISHARP_LOCATION , vscode . ConfigurationTarget . WorkspaceFolder ) ;
28
- }
29
-
30
20
const csharpExtension = vscode . extensions . getExtension < OmnisharpExtensionExports > ( 'ms-dotnettools.csharp' ) ;
31
21
if ( ! csharpExtension ) {
32
22
throw new Error ( 'Failed to find installation of ms-dotnettools.csharp' ) ;
You can’t perform that action at this time.
0 commit comments