()
| 11 | export const csharpDevkitIntelliCodeExtensionId = 'ms-dotnettools.vscodeintellicode-csharp'; |
| 12 | |
| 13 | export function getCSharpDevKit(): vscode.Extension<CSharpDevKitExports> | undefined { |
| 14 | // Devkit is explicitly disabled via the option - we should ignore it even if it exists. |
| 15 | if (languageServerOptions.preferCSharpExtension) { |
| 16 | return undefined; |
| 17 | } |
| 18 | |
| 19 | return vscode.extensions.getExtension<CSharpDevKitExports>(csharpDevkitExtensionId); |
| 20 | } |
no outgoing calls
no test coverage detected