Skip to content

Commit 94f3cb3

Browse files
committed
dotnet 10
1 parent 31e7a20 commit 94f3cb3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

buildtools/buildtools.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
BeforeTargets="CoreCompile">
2121

2222
<PropertyGroup>
23-
<FsLexPath Condition="'$(FsLexPath)' == ''">$(ArtifactsDir)\bin\fslex\Release\net9.0\linux-x64\fslex.dll</FsLexPath>
23+
<FsLexPath Condition="'$(FsLexPath)' == ''">$(ArtifactsDir)\bin\fslex\Release\net10.0\linux-x64\fslex.dll</FsLexPath>
2424
</PropertyGroup>
2525

2626
<!-- Create the output directory -->
@@ -44,7 +44,7 @@
4444
BeforeTargets="CoreCompile">
4545

4646
<PropertyGroup>
47-
<FsYaccPath Condition="'$(FsYaccPath)' == ''">$(ArtifactsDir)\bin\fsyacc\Release\net9.0\linux-x64\fsyacc.dll</FsYaccPath>
47+
<FsYaccPath Condition="'$(FsYaccPath)' == ''">$(ArtifactsDir)\bin\fsyacc\Release\net10.0\linux-x64\fsyacc.dll</FsYaccPath>
4848
</PropertyGroup>
4949

5050
<!-- Create the output directory -->

fcs/fcs-export/Program.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ open Buildalyzer
55

66
let getProjectOptionsFromProjectFile (isMain: bool) (projFile: string) =
77

8-
let tryGetResult (isMain: bool) (manager: AnalyzerManager) (maybeCsprojFile: string) =
8+
let tryGetResult (_isMain: bool) (manager: AnalyzerManager) (maybeCsprojFile: string) =
99

1010
let analyzer = manager.GetProject(maybeCsprojFile)
1111
let env = analyzer.EnvironmentFactory.GetBuildEnvironment(Environment.EnvironmentOptions(DesignTime=true,Restore=false))
@@ -132,6 +132,6 @@ let main argv =
132132
let input = "let a = 42"
133133
let sourceText = FSharp.Compiler.Text.SourceText.ofString input
134134
// parse script just to export metadata
135-
let parseRes, typedRes = parseAndCheckScript(file, sourceText)
135+
let _parseRes, _typedRes = parseAndCheckScript(file, sourceText)
136136
printfn "Exporting is done. Binaries can be found in ./temp/metadata/"
137137
0

fcs/fcs-export/fcs-export.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>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
77
</PropertyGroup>
88

0 commit comments

Comments
 (0)