You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: help/markdown/fake-gettingstarted.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,8 @@ There are various ways to install FAKE 5
23
23
24
24
* Use it as dotnet tool: Add `<DotNetCliToolReference Include="dotnet-fake" Version="5.0.0*" />` to your dependencies and run `dotnet fake ...` instead of `fake ...`, see [this example](https://github.com/matthid/fake-bootstrap/blob/master/dotnet-fake.csproj)
25
25
26
+
* Install fake as a global dotnet tool: run `dotnet tool install fake-cli -g` to install fake globally or `dotnet tool install fake-cli --tool-path your_tool_path` to install fake into `your_tool_path`. Pass `--version` to install a specific version of fake.
27
+
26
28
* Bootstrap via shell script (fake.cmd/fake.sh),
27
29
see this [example project](https://github.com/matthid/fake-bootstrap)
28
30
<divclass="alert alert-warning">
@@ -37,7 +39,6 @@ There are various ways to install FAKE 5
37
39
Once `fake` is available you can start creating your script:
38
40
39
41
* Create a new file `myscript.fsx` with the following contents:
0 commit comments