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 {
1717}
1818
1919export 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-
3020 const csharpExtension = vscode . extensions . getExtension < OmnisharpExtensionExports > ( 'ms-dotnettools.csharp' ) ;
3121 if ( ! csharpExtension ) {
3222 throw new Error ( 'Failed to find installation of ms-dotnettools.csharp' ) ;
You can’t perform that action at this time.
0 commit comments