diff --git a/help/markdown/fake-gettingstarted.md b/help/markdown/fake-gettingstarted.md index b4a59d32909..86c9338261d 100644 --- a/help/markdown/fake-gettingstarted.md +++ b/help/markdown/fake-gettingstarted.md @@ -13,7 +13,7 @@ FAKE is completely written in F# and all build scripts will also be written in F There are various ways to install FAKE 5: -* Install FAKE as a global dotnet tool: +* Install FAKE as a global dotnet tool: * To install FAKE globally, run:
dotnet tool install fake-cli -g
@@ -23,9 +23,9 @@ There are various ways to install FAKE 5:
dotnet tool install fake-cli --tool-path your_tool_path
- Use `--version` to specify the version of FAKE. See the [`global_tool` branch of `fake-bootstrap`](https://github.com/FakeBuild/fake-bootstrap/tree/global_tool) for ideas to bootstrap in your CI process.
+ Use `--version` to specify the version of FAKE. See the [`global_tool`](https://github.com/FakeBuild/fake-bootstrap/tree/global_tool) branch of `fake-bootstrap` for ideas to bootstrap in your CI process.
-* Bootstrap via the [fake dotnet new template](fake-template.html). The template bootstraps FAKE and sets up a basic build-script.
+* Bootstrap via the `fake dotnet new` [template](fake-template.html). The template bootstraps FAKE and sets up a basic build-script.
* To install the template run:
dotnet new -i "fake-template::*"
@@ -37,24 +37,24 @@ There are various ways to install FAKE 5:
See the [template](fake-template.html) page for more information.
-* Install the 'fake' or 'fake-netcore' package for you system (currenty chocolatey).
+* Install the 'fake' or 'fake-netcore' package for your system (currenty chocolatey).
Example `choco install fake`
-* Use it as dotnet tool: Add ` ` to your dependencies and run `dotnet fake ...` instead of `fake ...`, see [this example](https://github.com/FakeBuild/fake-bootstrap/blob/master/dotnet-fake.csproj)
+* Use it as a dotnet tool: Add ` ` to your dependencies and run `dotnet fake ...` instead of `fake ...`, see [this example](https://github.com/FakeBuild/fake-bootstrap/blob/master/dotnet-fake.csproj)
-* Bootstrap via shell script (fake.cmd/fake.sh),
+* Bootstrap via a shell script (fake.cmd/fake.sh),
see this [example project](https://github.com/FakeBuild/fake-bootstrap)
WARNING
These scripts have no versioning story. You either need to take care of versions yourself (and lock them) or your builds might break on major releases.
-* Bootstrap via paket `clitool`, basically the same as `DotNetCliToolReference` but managed via paket. See the [`paket_clitool` branch of `fake-bootstrap`](https://github.com/FakeBuild/fake-bootstrap/tree/paket_clitool) in particular the [build.proj](https://github.com/FakeBuild/fake-bootstrap/blob/paket_clitool/build.proj) file.
+* Bootstrap via paket `clitool`, this is basically the same as `DotNetCliToolReference` but managed via paket. See the [`paket_clitool`](https://github.com/FakeBuild/fake-bootstrap/tree/paket_clitool) branch of `fake-bootstrap` in particular the [build.proj](https://github.com/FakeBuild/fake-bootstrap/blob/paket_clitool/build.proj) file.
## One note on Intellisense
-Whenever you update the dependencies (part of the example) delete the `