#Ionide-VSCode: FAKE
It's part of Ionide plugin suite. Using FAKE (F# Make) from VS Code.
-- Need Help? You can find us on Gitter
- Run any build target defined in Your project's FAKE build script
ionide-fake
allows the user to override the default conventions used to find and run FAKE builds. To do so You need to create an .ionide
file in the root folder of Your project opened by Atom. The configuration file uses the TOML language.
Here is the default configuration values used if the .ionide
file doesn't exist or some entry is missing:
[Fake]
linuxPrefix = "mono"
command = "build.cmd"
build = "build.fsx"
-
Linux Prefix - command used as prefix on Linux / Mac - usually
sh
ormono
-
Command - command executed as build taking build name as parameter - usually
build.cmd
,build.sh
,build.ps1
-
Build - FAKE build script, which is parsed to obtain list of possible builds - usually
build.fsx
,fake.fsx
- In case of using Mono version,
mono
must be in PATH.
The project is hosted on GitHub where you can report issues, fork the project and submit pull requests.
The library is available under MIT license, which allows modification and redistribution for both commercial and non-commercial purposes.