ionide / ionide-vscode-fake

VS Code plugin for FAKE

Home Page:http://ionide.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

Command Key Bindings

When creating Command Palette key bindings for FAKE the command names are:

  • fake.fakeBuild
  • fake.buildDefault (default binding is ctrl+f5)
  • fake.cancelBuild

For example, to launch the target list using shift+f5 add the following to the VS Code keybindings.json file:

[
    { "key": "shift+f5", "command": "fake.fakeBuild" }
]

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.

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

About

VS Code plugin for FAKE

http://ionide.io

License:MIT License


Languages

Language:F# 93.9%Language:Shell 4.6%Language:Batchfile 1.6%