Skip to content

Commit 4fac558

Browse files
committed
prep for new docs
1 parent 61c5afe commit 4fac558

12 files changed

Lines changed: 890 additions & 1137 deletions

File tree

.config/dotnet-tools.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": 1,
3+
"isRoot": true,
4+
"tools": {
5+
"paket": {
6+
"version": "5.247.4",
7+
"commands": [
8+
"paket"
9+
]
10+
},
11+
"fake-cli": {
12+
"version": "5.20.2",
13+
"commands": [
14+
"fake"
15+
]
16+
}
17+
}
18+
}

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,4 +199,3 @@ artifacts/
199199
# jest/fable directories
200200
tests/fable/dist/
201201
tests/fable/node_modules/
202-

.paket/paket.exe

-62.8 KB
Binary file not shown.

RELEASE_NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 3.0.1
2+
3+
* Move to only netstandard 2.1
4+
15
### 2.0.24 - 27.05.2020
26
* Adding ofIQueryable [#112](https://github.com/fsprojects/FSharp.Control.AsyncSeq/pull/112)
37

build.cmd

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
@echo off
22
cls
33

4-
.paket\paket.exe restore
4+
dotnet tool restore
5+
if errorlevel 1 (
6+
exit /b %errorlevel%
7+
)
8+
dotnet paket restore
59
if errorlevel 1 (
610
exit /b %errorlevel%
711
)
812

9-
packages\build\FAKE\tools\FAKE.exe build.fsx %*
13+
dotnet fake build.fsx %*

0 commit comments

Comments
 (0)