From df75f1ad302ef913de24b5524ec8f725e93cbc07 Mon Sep 17 00:00:00 2001 From: Tamas Vajk Date: Thu, 30 Jul 2020 15:01:05 +0200 Subject: [PATCH] Turn off C# auto-compile If the C# extension is installed, then it reports 25k+ errors on the C# extractor until it is properly built. This is pure noise for the users of this repo, so this commit disables the C# compilation altogether. --- vscode-codeql-starter.code-workspace | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vscode-codeql-starter.code-workspace b/vscode-codeql-starter.code-workspace index 755fd8c..62fe54e 100644 --- a/vscode-codeql-starter.code-workspace +++ b/vscode-codeql-starter.code-workspace @@ -24,5 +24,8 @@ { "path": "ql" } - ] + ], + "settings": { + "omnisharp.autoStart": false + } }