Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions KustoExplorerVscode.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Solution>
<Folder Name="/root/">
<File Path=".github/workflows/ci.yml" />
<File Path="CONTRIBUTING.md" />
<File Path="LICENSE" />
Comment thread
mattwar marked this conversation as resolved.
<File Path="README.md" />
<File Path="SECURITY.md" />
</Folder>
<Project Path="src/Client/Client.esproj">
<Build />
<Deploy />
</Project>
<Project Path="src/Server/Server.csproj" />
<Project Path="src/ServerTests/ServerTests.csproj" />
</Solution>
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

## Using this Repository

- src/KustoExplorerVscode.slnx - Visual Studio solution file for the entire extension
- KustoExplorerVscode.slnx - Visual Studio solution file for the entire extension
- src/Client - TypeScript vscode extension
- src/Server - C# LSP Server
- src/ServerTests - C# Tests for the server codebase
Expand All @@ -38,8 +38,9 @@ Some other custom features are also implemented here, but eventually most of the

### Debugging the Server
1. Run the extension in debug mode as described above, which will also launch the server in debug mode
1. Open `src/KustoExplorerVscode.slnx` in Visual Studio
2. Attach to the dotnet.exe process associated with the extension
2. Attach to the server process using one of the following:
- **Visual Studio**: Open `KustoExplorerVscode.slnx` and attach to the dotnet.exe process associated with the extension
- **VS Code**: Open the repository root folder, then run command `Debug: Attach to a .NET 5+ or .NET Core process` (Ctrl+Shift+P) and select the `Server` process

### Creating the VSIX installer

Expand Down
1 change: 1 addition & 0 deletions src/Client/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true
15 changes: 0 additions & 15 deletions src/KustoExplorerVscode.slnx

This file was deleted.

Loading