From da4bacf86e0d3dd6ad7a96dfcb2963df1603abb5 Mon Sep 17 00:00:00 2001 From: Matthias Dittrich Date: Sun, 12 Aug 2018 13:34:51 +0200 Subject: [PATCH] more badges and smaller doc adjustments --- README.markdown | 5 +++-- help/markdown/fake-gettingstarted.md | 21 +++++++++------------ 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/README.markdown b/README.markdown index 041e2a05cdd..daf765f65c3 100644 --- a/README.markdown +++ b/README.markdown @@ -9,7 +9,7 @@ Visual Studio or MonoDevelop, which provide syntax highlighting and code complet The new DSL was designed to be succinct, typed, declarative, extensible and easy to use. -See the [project home page](http://fsharp.github.com/FAKE/) for tutorials and [API documentation](http://fsharp.github.io/FAKE/apidocs/v5/index.html). +See the [project home page](https://fake.build/) for tutorials and [API documentation](http://fake.build/apidocs/v5/index.html). # Build the project @@ -17,7 +17,7 @@ See the [project home page](http://fsharp.github.com/FAKE/) for tutorials and [A * Fake5: Install FAKE 5 (for example via `choco install fake -pre`) and run `fake build` [![Travis build status](https://travis-ci.org/fsharp/FAKE.png)](https://travis-ci.org/fsharp/FAKE) -[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/lk1dfo1qi99ri78f)](https://ci.appveyor.com/project/SteffenForkmann/fake) +[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/lk1dfo1qi99ri78f)](https://ci.appveyor.com/project/SteffenForkmann/fake) [![CircleCI build status](https://circleci.com/gh/fsharp/FAKE.svg?style=shield&circle-token=:circle-token)](https://circleci.com/gh/fsharp/FAKE) [![Gitlab CI build status](https://gitlab.com/matthid/FAKE/badges/release/next/build.svg)](https://gitlab.com/matthid/FAKE) > Note: The build of the "legacy" parts (FAKE 4) will most likely fail > @@ -32,6 +32,7 @@ Otherwise the test-suite will fail (However, the compilation should work) [![Issue Stats](http://www.issuestats.com/github/fsharp/FAKE/badge/pr)](http://www.issuestats.com/github/fsharp/FAKE) [![Issue Stats](http://www.issuestats.com/github/fsharp/FAKE/badge/issue)](http://www.issuestats.com/github/fsharp/FAKE) [![NuGet Badge](https://buildstats.info/nuget/FAKE)](https://www.nuget.org/packages/FAKE) +[![NuGet Badge](https://buildstats.info/nuget/Fake.Core.Target)](https://www.nuget.org/packages/Fake.Core.Target) [![NuGet Badge](https://buildstats.info/nuget/Fake.Core.Context)](https://www.nuget.org/packages/Fake.Core.Context) ## How to contribute code diff --git a/help/markdown/fake-gettingstarted.md b/help/markdown/fake-gettingstarted.md index 0716e1d2ac1..d9c5d6d53e2 100644 --- a/help/markdown/fake-gettingstarted.md +++ b/help/markdown/fake-gettingstarted.md @@ -62,17 +62,14 @@ There are various ways to install FAKE 5: Once `fake` is available you can start creating your script: * Create a new file `myscript.fsx` with the following contents: -```fsharp -#r "paket: -nuget Fake.Core.Target prerelease" -#load "./.fake/myscript.fsx/intellisense.fsx" -``` -
-
INFO
-

storage: none is currently required because of a bug, but it will be added by default.

-
-Where you can add all the [fake modules](fake-fake5-modules.html) you need. + ```fsharp + #r "paket: + nuget Fake.Core.Target prerelease" + #load "./.fake/myscript.fsx/intellisense.fsx" + ``` + + Where you can add all the [fake modules](fake-fake5-modules.html) you need. * run the script to restore your dependencies and setup the intellisense support: `fake run myscript.fsx`. This might take some seconds depending on your internet connection @@ -223,7 +220,7 @@ let buildDir = "./build/" // Targets Target.create "Clean" (fun _ -> - Shell.CleanDir buildDir + Shell.cleanDir buildDir ) Target.create "BuildApp" (fun _ -> @@ -279,7 +276,7 @@ let testDir = "./test/" // Targets Target.create "Clean" (fun _ -> - Shell.CleanDirs [buildDir; testDir] + Shell.cleanDirs [buildDir; testDir] ) Target.create "BuildApp" (fun _ ->