File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed
src/VisualBasicLanguageServer Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
55
66## [ Unreleased]
7- <<<<<<< HEAD
87* Use diagnostic url from Roslyn
98 - By @CoolCoderSuper https://github.com/razzmatazz/csharp-language-server/pull/227
109* Support loading slnx files
@@ -17,9 +16,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1716 - PR by @lapponiandevil in https://github.com/razzmatazz/csharp-language-server/pull/222
1817* Upgrade Ionide.LanguageServerProtocol to 0.7.0:
1918 - https://github.com/razzmatazz/csharp-language-server/pull/221
20- =======
21- * Remove csharp support and add vb support
22- >>>>>>> d791c78 (Add vb support)
2319* Reduce startup notifications by using "window/logMessage"
2420 - By @nikolightsaber in https://github.com/razzmatazz/csharp-language-server/pull/217
2521* Make sure ` .editorconfig ` settings are respected, add ` csharp.applyFormattingOptions ` override (defaults to false):
Original file line number Diff line number Diff line change @@ -82,10 +82,10 @@ module Workspace =
8282 match Path.GetExtension( change.Uri) with
8383 | " .vbproj" ->
8484 do ! context.WindowShowMessage " change to .vbproj detected, will reload solution"
85- context.Emit( SolutionReloadRequest ( TimeSpan.FromSeconds( 5 )))
85+ context.Emit( SolutionReloadRequest ( TimeSpan.FromSeconds( 5: int64 )))
8686 | " .sln" | " .slnx" ->
8787 do ! context.WindowShowMessage " change to .sln detected, will reload solution"
88- context.Emit( SolutionReloadRequest ( TimeSpan.FromSeconds( 5 )))
88+ context.Emit( SolutionReloadRequest ( TimeSpan.FromSeconds( 5: int64 )))
8989 | " .vb" ->
9090 match change.Type with
9191 | FileChangeType.Created ->
Original file line number Diff line number Diff line change 44 <PropertyGroup >
55 <OutputType >Exe</OutputType >
66 <Description >C# LSP language server</Description >
7- <TargetFramework >net8 .0</TargetFramework >
7+ <TargetFramework >net9 .0</TargetFramework >
88 <Description >VisualBasic LSP language server</Description >
99 <PackAsTool >true</PackAsTool >
1010 <ToolCommandName >vb-ls</ToolCommandName >
You can’t perform that action at this time.
0 commit comments