MCPcopy Index your code
hub / github.com/dotnet/vscode-csharp / getCSharpDevKit

Function getCSharpDevKit

src/utils/getCSharpDevKit.ts:13–20  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

11export const csharpDevkitIntelliCodeExtensionId = 'ms-dotnettools.vscodeintellicode-csharp';
12
13export 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}

Calls

no outgoing calls

Tested by

no test coverage detected