Skip to content

Commit 09be247

Browse files
authored
chore(docs): build instructions to use dotnet fsi instead of fake-cli (#734)
1 parent 8cff1f2 commit 09be247

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ Package | Version
3434

3535
1. Make sure you've installed the .NET version defined in [global.json](global.json)
3636
2. Run `dotnet tool restore` to install all developer tools required to build the project
37-
3. Run `dotnet fake build -t Build` to build (which executes the `Build` target from the FAKE-based [build script](build.fsx))
38-
4. To run tests use `dotnet fake build -t Test`
39-
5. To build documentation use `dotnet fake build -t Docs`
37+
3. Run `dotnet fsi build.fsx -t Build` to build (which executes the `Build` target from the FAKE-based [build script](build.fsx))
38+
4. To run tests use `dotnet fsi build.fsx -t Test`
39+
5. To build documentation use `dotnet fsi build.fsx -t Docs`
4040

4141
## How to work with documentation
4242

4343
1. Make sure you've installed the .NET version defined in [global.json](global.json)
4444
2. Run `dotnet tool restore` to install all developer tools required to build the project
45-
3. Run `dotnet fake build` to build default target of [build script](build.fsx)
46-
4. Build documentation to make sure everything is fine with `dotnet fake build -t Docs`
45+
3. Run `dotnet fsi build.fsx` to build default target of [build script](build.fsx)
46+
4. Build documentation to make sure everything is fine with `dotnet fsi build.fsx -t Docs`
4747
5. Go to docs folder `cd docs` and start Fornax in watch mode `dotnet fornax watch`
4848
6. Your documentation should be now accessible on `localhost:8080` and will be regenerated on every file save
4949

0 commit comments

Comments
 (0)