File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 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 -->
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 -->
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ open Buildalyzer
55
66let 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
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <OutputType >Exe</OutputType >
5- <TargetFramework >net9 .0</TargetFramework >
5+ <TargetFramework >net10 .0</TargetFramework >
66 <DisableImplicitFSharpCoreReference >true</DisableImplicitFSharpCoreReference >
77 </PropertyGroup >
88
You can’t perform that action at this time.
0 commit comments