File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ export function readOptions(): Options {
2424 const omnisharpConfig = vscode . workspace . getConfiguration ( 'omnisharp' ) ;
2525 const csharpConfig = vscode . workspace . getConfiguration ( 'csharp' ) ;
2626
27- const path = omnisharpConfig . has ( 'path ' )
28- ? omnisharpConfig . get < string > ( 'path ' )
29- : csharpConfig . get < string > ( 'omnisharp ' ) ;
27+ const path = csharpConfig . has ( 'omnisharp ' )
28+ ? csharpConfig . get < string > ( 'omnisharp ' )
29+ : omnisharpConfig . get < string > ( 'path ' ) ;
3030
31- const useMono = omnisharpConfig . has ( 'useMono ' )
32- ? omnisharpConfig . get < boolean > ( 'useMono ' )
33- : csharpConfig . get < boolean > ( 'omnisharpUsesMono ' ) ;
31+ const useMono = csharpConfig . has ( 'omnisharpUsesMono ' )
32+ ? csharpConfig . get < boolean > ( 'omnisharpUsesMono ' )
33+ : omnisharpConfig . get < boolean > ( 'useMono ' ) ;
3434
3535 const loggingLevel = omnisharpConfig . get < string > ( 'loggingLevel' ) ;
3636 const autoStart = omnisharpConfig . get < boolean > ( 'autoStart' , true ) ;
You can’t perform that action at this time.
0 commit comments