Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Gobl Task ProviderNew to Visual Studio Code? Get it now.
Gobl Task Provider

Gobl Task Provider

kettek

|
51 installs
| (0) | Free
Gobl Task Provider for VSCode
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Gobl Task Provider

This extension provides task support for the gobl task system.

Gobl

Gobl is a task system written in Go. A brief example of a gobl.go file would be:

package main

import (
	. "github.com/kettek/gobl/gobl"
)

func main() {
	Task("build").
		Env("FOO=bar").
		Chdir("src").
		Exec("go", "build", "-v", "-o", "../bin/program")
	
	Task("run").
		Exec("./bin/program", "--with-option")

	Task("watch").
		Watch("src/*.go", "src/*/*.go").
		Run("build").
		Run("run")
}

See the pkg documentation for more steps and documentation.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft