Skip to content

Commit d15f3db

Browse files
daalcantgfs
andauthoredMar 2, 2023
Update VS Code extension to use .NET language server (#453)
* Use new .NET language server * Bring over refactored vscode extension from gfs/VsCodeRewrite * Update dependencies and framework versions * Restructure vscode extension folders * Update vscode launch configs * Update .gitignore * Update vscode build scripts and configurations * Add debug logging and client/server trace option * Add xml as language * Move client-side processing to the language server * Add JSON to activation events for VS Code Client * Disable vscode release stage from pipeline --------- Co-authored-by: Gabe Stocco <98900+gfs@users.noreply.github.com>
1 parent 633aa3f commit d15f3db

File tree

108 files changed

+7545
-16822
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+7545
-16822
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
*.vsix
22
DevSkim-DotNet/Microsoft.DevSkim.sln.DotSettings.user
33
DevSkim-DotNet/Microsoft.DevSkim.CLI/output.json
4+
DevSkim-VSCode-Plugin/client/dist/*
45
DevSkim-VSCode-Plugin/devskimBinaries/*

‎.vscode/extensions.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4+
5+
// List of extensions which should be recommended for users of this workspace.
6+
"recommendations": [
7+
"dbaeumer.vscode-eslint"
8+
]
9+
}

0 commit comments

Comments
 (0)
Please sign in to comment.