Using #CSharp? Disable #Copilot and Copilot Chat in #VSCode settings, so they are not automatically installed when installing #CsDevKit
It's as simple as:
{
"chat.disableAIFeatures": true,
"extensions.allowed": {
"*": true,
"github.copilot": false,
"github.copilot-chat": false
}
}
#DotNet