Skip to content

Commit 69f73fd

Browse files
committed
use .net 10 to build csharp-ls
1 parent 45620bd commit 69f73fd

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-24.04]
12-
dotnet: [9.0.x]
12+
dotnet: [10.0.x]
1313
runs-on: ${{ matrix.os }}
1414

1515
steps:

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [windows-latest, ubuntu-24.04]
14-
dotnet: [9.0.x]
14+
dotnet: [10.0.x]
1515
fail-fast: false
1616

1717
runs-on: ${{ matrix.os }}

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0",
3+
"version": "10.0",
44
"rollForward": "minor"
55
}
66
}

src/CSharpLanguageServer/CSharpLanguageServer.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<PropertyGroup>
55
<OutputType>Exe</OutputType>
6-
<TargetFramework>net9.0</TargetFramework>
6+
<TargetFramework>net10.0</TargetFramework>
77
<Description>C# LSP language server</Description>
88
<PackAsTool>true</PackAsTool>
99
<ToolCommandName>csharp-ls</ToolCommandName>

tests/CSharpLanguageServer.Tests/CSharpLanguageServer.Tests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<IsPackable>false</IsPackable>
55
<GenerateProgramFile>false</GenerateProgramFile>
66
<NoWarn>FS0988</NoWarn>

0 commit comments

Comments
 (0)