Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Task Provider for fabricNew to Visual Studio Code? Get it now.
Task Provider for fabric

Task Provider for fabric

Michel Albert

|
190 installs
| (0) | Free
Allows running task defined in a fabfile directly from VS-Code
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

VS-Code Task Provider for fabric

GitHub GitHub issues GitHub Repo stars GitHub package.json version

Source Code, Issues & Feedback

  • Repository
  • Issue Tracker

Description

This extension provides VS-Code task executions for tasks defined using "fabric" (https://www.fabfile.org).

Demo
(demo)

Usage

  • Install the extension
  • Define tasks in a fabfile (default: fabfile.py in the workspace folder)
  • Execute the "Tasks: Run Task" command in VS-Code (default shortcut: CTRL+SHIFT+P)
  • Select "fabric"
  • Select the task to run

Command-Line Arguments

Some tasks require arguments. To add arguments to the task, configure a task (using the gear icon at the right of the task-name) and add the key args to the task definition.

Example

// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
  "version": "2.0.0",
  "tasks": [
    {
      "type": "fabric",
      "task": "the-task-name",
      "args": ["--port", "8080"],
      "problemMatcher": [],
      "label": "Run something"
    }
  ]
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft