Skip to content

Commit e33fa40

Browse files
committed
Update TFM to .NET 9.0
1 parent 5f620c5 commit e33fa40

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.vscode/launch.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"type": "coreclr",
1010
"request": "launch",
1111
"preLaunchTask": "build",
12-
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net8.0/fable.dll",
12+
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net9.0/fable.dll",
1313
"args": [
1414
"src/quicktest-dart",
1515
"--lang",
@@ -29,7 +29,7 @@
2929
"type": "coreclr",
3030
"request": "launch",
3131
"preLaunchTask": "build",
32-
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net8.0/fable.dll",
32+
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net9.0/fable.dll",
3333
"args": [
3434
"src/quicktest",
3535
"--exclude",
@@ -45,7 +45,7 @@
4545
"type": "coreclr",
4646
"request": "launch",
4747
"preLaunchTask": "build",
48-
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net8.0/fable.dll",
48+
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net9.0/fable.dll",
4949
"args": [
5050
"src/quicktest",
5151
"--lang",
@@ -62,7 +62,7 @@
6262
"type": "coreclr",
6363
"request": "launch",
6464
"preLaunchTask": "build",
65-
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net8.0/fable.dll",
65+
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net9.0/fable.dll",
6666
"args": [
6767
"src/quicktest-py",
6868
"--lang",
@@ -82,7 +82,7 @@
8282
"type": "coreclr",
8383
"request": "launch",
8484
"preLaunchTask": "build",
85-
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net8.0/fable.dll",
85+
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net9.0/fable.dll",
8686
"args": [
8787
"src/quicktest-rust",
8888
"--lang",
@@ -102,7 +102,7 @@
102102
"type": "coreclr",
103103
"request": "launch",
104104
"preLaunchTask": "build",
105-
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net8.0/fable.dll",
105+
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net9.0/fable.dll",
106106
"args": [
107107
"src/quicktest-rust",
108108
"--lang",
@@ -124,7 +124,7 @@
124124
"type": "coreclr",
125125
"request": "launch",
126126
"preLaunchTask": "build",
127-
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net8.0/fable.dll",
127+
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net9.0/fable.dll",
128128
"args": [
129129
"src/quicktest-rust",
130130
"--lang",
@@ -191,7 +191,7 @@
191191
"type": "coreclr",
192192
"request": "launch",
193193
"preLaunchTask": "build",
194-
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net8.0/fable.dll",
194+
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net9.0/fable.dll",
195195
"args": [
196196
"src/fable-library-dart",
197197
"--outDir", "temp/fable-library-dart",
@@ -207,7 +207,7 @@
207207
"type": "coreclr",
208208
"request": "launch",
209209
"preLaunchTask": "build",
210-
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net8.0/fable.dll",
210+
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net9.0/fable.dll",
211211
"args": [
212212
"src/fable-library-ts",
213213
"--outDir", "temp/fable-library-ts",
@@ -225,7 +225,7 @@
225225
"type": "coreclr",
226226
"request": "launch",
227227
"preLaunchTask": "build",
228-
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net8.0/fable.dll",
228+
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net9.0/fable.dll",
229229
"args": [
230230
"src/fable-library-py/fable_library",
231231
"--outDir", "temp/fable-library-py/fable_library",
@@ -241,7 +241,7 @@
241241
"type": "coreclr",
242242
"request": "launch",
243243
"preLaunchTask": "build",
244-
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net8.0/fable.dll",
244+
"program": "${workspaceFolder}/src/Fable.Cli/bin/Debug/net9.0/fable.dll",
245245
"args": [
246246
"src/fable-library-rust/src",
247247
"--outDir", "temp/fable-library-rust/src",
@@ -258,7 +258,7 @@
258258
"type": "coreclr",
259259
"request": "launch",
260260
"preLaunchTask": "build",
261-
"program": "${workspaceRoot}/src/Fable.Cli/bin/Debug/net8.0/fable.dll",
261+
"program": "${workspaceRoot}/src/Fable.Cli/bin/Debug/net9.0/fable.dll",
262262
"args": [
263263
"--outDir", "${workspaceRoot}/../fable-test",
264264
"--fableLib", "${workspaceRoot}/temp/fable-library-rust",

src/Directory.Build.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<CodeRoot>$([System.IO.Path]::GetDirectoryName($(DirectoryBuildTargetsPath)))</CodeRoot>
44
<FSharpAnalyzersOtherFlags>--analyzers-path &quot;$(PkgG-Research_FSharp_Analyzers)/analyzers/dotnet/fs&quot;</FSharpAnalyzersOtherFlags>
55
<FSharpAnalyzersOtherFlags>$(FSharpAnalyzersOtherFlags) --analyzers-path &quot;$(PkgIonide_Analyzers)/analyzers/dotnet/fs&quot;</FSharpAnalyzersOtherFlags>
6-
<FSharpAnalyzersOtherFlags>$(FSharpAnalyzersOtherFlags) --analyzers-path &quot;$(CodeRoot)/Fable.Analyzers/bin/Release/net8.0&quot;</FSharpAnalyzersOtherFlags>
6+
<FSharpAnalyzersOtherFlags>$(FSharpAnalyzersOtherFlags) --analyzers-path &quot;$(CodeRoot)/Fable.Analyzers/bin/Release/net9.0&quot;</FSharpAnalyzersOtherFlags>
77
<SarifOutput>$(CodeRoot)/reports/</SarifOutput>
88
<FSharpAnalyzersOtherFlags>$(FSharpAnalyzersOtherFlags) --code-root &quot;$(CodeRoot)&quot;</FSharpAnalyzersOtherFlags>
99
<FSharpAnalyzersOtherFlags>$(FSharpAnalyzersOtherFlags) --report &quot;$(SarifOutput)$(MSBuildProjectName)-$(TargetFramework).sarif&quot;</FSharpAnalyzersOtherFlags>

src/Fable.Analyzers/Fable.Analyzers.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

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
</PropertyGroup>
77

src/Fable.Cli/Fable.Cli.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
55
<OutputType>Exe</OutputType>
6-
<TargetFramework>net8.0</TargetFramework>
6+
<TargetFramework>net9.0</TargetFramework>
77
<!-- Allow users with newer dotnet SDK to run Fable, see #1910 -->
88
<RollForward>Major</RollForward>
99
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>

src/Fable.Compiler/Fable.Compiler.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

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
77
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>

0 commit comments

Comments
 (0)