File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ osx_image: xcode11.2
9
9
mono :
10
10
- weekly
11
11
- latest
12
- - 6.0 .0
12
+ - 6.6 .0
13
13
14
- dotnet : 3.0 .100
14
+ dotnet : 3.1 .100
15
15
16
16
sudo : false
17
17
Original file line number Diff line number Diff line change @@ -64,8 +64,8 @@ Target.create "BuildVersion" (fun _ ->
64
64
65
65
Target.create " Build" ( fun _ ->
66
66
runDotnet __ SOURCE_ DIRECTORY__ " build" " ../src/buildtools/buildtools.proj -v n -c Proto"
67
- let fslexPath = __ SOURCE _ DIRECTORY __ + " / ../artifacts/bin/fslex/Proto/netcoreapp3.0 /fslex.dll"
68
- let fsyaccPath = __ SOURCE _ DIRECTORY __ + " / ../artifacts/bin/fsyacc/Proto/netcoreapp3.0 /fsyacc.dll"
67
+ let fslexPath = Path.GetFullPath <| Path.Combine (__ SOURCE _ DIRECTORY __, " ../artifacts/bin/fslex/Proto/netcoreapp3.1 /fslex.dll" )
68
+ let fsyaccPath = Path.GetFullPath <| Path.Combine (__ SOURCE _ DIRECTORY __, " ../artifacts/bin/fsyacc/Proto/netcoreapp3.1 /fsyacc.dll" )
69
69
runDotnet __ SOURCE_ DIRECTORY__ " build" ( sprintf " FSharp.Compiler.Service.sln -nodereuse:false -v n -c Release /p:DisableCompilerRedirection=true /p:FsLexPath=%s /p:FsYaccPath=%s " fslexPath fsyaccPath)
70
70
)
71
71
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 3.0 .100"
3
+ "version" : " 3.1 .100"
4
4
}
5
5
}
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFramework >netcoreapp2 .1</TargetFramework >
5
+ <TargetFramework >netcoreapp3 .1</TargetFramework >
6
6
<DefineConstants >INTERNALIZED_FSLEXYACC_RUNTIME;$(DefineConstant)</DefineConstants >
7
7
<DisableImplicitFSharpCoreReference >true</DisableImplicitFSharpCoreReference >
8
8
</PropertyGroup >
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFramework >netcoreapp2 .1</TargetFramework >
5
+ <TargetFramework >netcoreapp3 .1</TargetFramework >
6
6
<DefineConstants >INTERNALIZED_FSLEXYACC_RUNTIME;$(DefineConstant)</DefineConstants >
7
7
<DisableImplicitFSharpCoreReference >true</DisableImplicitFSharpCoreReference >
8
8
</PropertyGroup >
You can’t perform that action at this time.
0 commit comments