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
It says "This documentation is for FAKE.exe version 5.0 or later." and I've got fake 5.0.0-beta029.
The first code snippet where targets are defined doesn't work because Target.Create and Target.RunOrDefault don't exist:
#r "paket:
nuget Fake.Core.Target //"
#load "./.fake/build.fsx/intellisense.fsx"
open Fake.Core
// Default target
Target.Create "Default" (fun _ ->
Trace.trace "Hello World from FAKE"
)
// start build
Target.RunOrDefault "Default"
It seems like Target.Create should be Target.create (lower case) and Target.RunOrDefault should be Target.runOrDefault. fake build works when I use the lower case functions.
Is the documentation not really up to version 5.0 or did I do something wrong?
The text was updated successfully, but these errors were encountered:
I'm currently testing fake for a new project and started following the getting started tutorial at https://fake.build/fake-gettingstarted.html.
It says "This documentation is for FAKE.exe version 5.0 or later." and I've got fake 5.0.0-beta029.
The first code snippet where targets are defined doesn't work because Target.Create and Target.RunOrDefault don't exist:
It seems like Target.Create should be Target.create (lower case) and Target.RunOrDefault should be Target.runOrDefault. fake build works when I use the lower case functions.
Is the documentation not really up to version 5.0 or did I do something wrong?
The text was updated successfully, but these errors were encountered: