/ionide-vscode-fake

VS Code plugin for FAKE

Primary LanguageF#MIT LicenseMIT

#Ionide-VSCode: FAKE

It's part of Ionide plugin suite. Using FAKE (F# Make) from VS Code.

Join the chat at https://gitter.im/ionide/ionide-project -- Need Help? You can find us on Gitter

Features

  • Run any build target defined in Your project's FAKE build script

Configuration

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 or mono

  • 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

PATH settings

  • In case of using Mono version, mono must be in PATH.

Contributing and copyright

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.