Skip to content

Commit 6316952

Browse files
authored
Merge pull request #181 from nojaf/replace-fake
Replace FAKE with Fun.Build
2 parents e0c475f + ad82907 commit 6316952

File tree

12 files changed

+244
-1406
lines changed

12 files changed

+244
-1406
lines changed

.config/dotnet-tools.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
"version": 1,
33
"isRoot": true,
44
"tools": {
5-
"fake-cli": {
6-
"version": "6.0.0",
7-
"commands": ["fake"]
8-
},
95
"paket": {
106
"version": "7.2.1",
117
"commands": ["paket"]

.github/workflows/build.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,15 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ubuntu-latest, windows-latest]
18-
dotnet: [7.0.404]
1918
runs-on: ${{ matrix.os }}
2019

2120
steps:
22-
- uses: actions/checkout@v1
21+
- uses: actions/checkout@v4
2322
- name: Setup .NET Core
24-
uses: actions/setup-dotnet@v1
25-
with:
26-
dotnet-version: ${{ matrix.dotnet }}
23+
uses: actions/setup-dotnet@v4
2724
- name: Restore .NET local tools
2825
run: dotnet tool restore
2926
- name: Restore packages
3027
run: dotnet paket restore
3128
- name: Build and test
32-
run: dotnet fake build target CIBuild
29+
run: dotnet fsi build.fsx -- -p CIBuild

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,6 @@ src/XPlot.Plotly/Tests/ConvertJS.fsx
276276
.paket/
277277
paket-files/
278278

279-
# FAKE
280-
.fake
281-
.ionide
279+
# Editors
280+
.ionide
281+
.idea

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,8 @@ http://fslaborg.github.io/XPlot/
6060

6161
## Release
6262

63-
.\build target NuGet
6463
set APIKEY=...
65-
..\FsLab\.nuget\NuGet.exe push bin\*.nupkg %APIKEY% -Source https://www.nuget.org
64+
dotnet fsi build.fsx -- -p Release
6665

6766
## Contact
6867

build.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ cls
33

44
dotnet tool restore
55
dotnet paket restore
6-
dotnet fake build %*
6+
dotnet fsi build.fsx -- %*

0 commit comments

Comments
 (0)