Skip to content

Commit 39f56ef

Browse files
committed
fix build?
1 parent 20c76f1 commit 39f56ef

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]
1010
},
1111
"fantomas": {
12-
"version": "6.2.3",
12+
"version": "7.0.1",
1313
"commands": [
1414
"fantomas"
1515
]

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
global-json-file: global.json
2222
dotnet-version: |
2323
8.x
24-
6.x
24+
9.x
2525
- name: Run build
2626
run: dotnet build -c Release src
2727
- name: Run tests

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
"Ionide",
88
"Newtonsoft",
99
"Supertypes"
10-
]
10+
],
11+
"editor.formatOnSave": true
1112
}

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.100",
4-
"rollForward": "major"
3+
"version": "9.0.100",
4+
"rollForward": "latestMinor"
55
}
66
}

tests/Ionide.LanguageServerProtocol.Tests.fsproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
66
<GenerateProgramFile>false</GenerateProgramFile>
77
</PropertyGroup>
88

tools/MetaModelGenerator/Common.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module FileWriters =
66

77
let writeIfChanged outputPath text =
88
async {
9-
let writeToFile path contents = File.WriteAllTextAsync(path, contents)
9+
let writeToFile (path: string) (contents: string) = File.WriteAllTextAsync(path, contents)
1010

1111
let! existingFile =
1212
async {

tools/MetaModelGenerator/MetaModelGenerator.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<PackageReference Include="Argu" Version="*" />

0 commit comments

Comments
 (0)