Skip to content

Commit 88bb19c

Browse files
Upgrade to .net 9
1 parent 6336644 commit 88bb19c

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

CHANGELOG.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ All notable changes to this project will be documented in this file.
44
The 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):

src/VisualBasicLanguageServer/Handlers/Workspace.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 ->

src/VisualBasicLanguageServer/VisualBasicLanguageServer.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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>

0 commit comments

Comments
 (0)