File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ set -e
3
+
4
+ # Build F# compiler service, which is assumed to be in a sibling directory named 'FSharp.Compiler.Service'
5
+ cd ../FSharp.Compiler.Service/
6
+ fcs/build.sh NuGet
7
+
8
+ # Copy result of previous step to nuget/, a local nuget feed
9
+ cd ../fsharp-language-server
10
+ rm -rf nuget/fsharp.compiler.service
11
+ nuget add ../FSharp.Compiler.Service/release/fcs/FSharp.Compiler.Service.24.0.1.nupkg -Source ./nuget
Original file line number Diff line number Diff line change 4
4
<OutputType >Exe</OutputType >
5
5
<TargetFramework >netcoreapp2.0</TargetFramework >
6
6
<RuntimeIdentifiers >win10-x64;osx.10.11-x64</RuntimeIdentifiers >
7
+ <RestoreSources >$(RestoreSources);../../nuget</RestoreSources >
7
8
</PropertyGroup >
8
9
9
10
<ItemGroup >
18
19
</ItemGroup >
19
20
20
21
<ItemGroup >
21
- <PackageReference Include =" FSharp.Compiler.Service" Version =" 23 .0.3 " />
22
+ <PackageReference Include =" FSharp.Compiler.Service" Version =" 24 .0.1 " />
22
23
<PackageReference Include =" HtmlAgilityPack" Version =" 1.8.4" />
23
24
</ItemGroup >
24
25
You can’t perform that action at this time.
0 commit comments