Below is an reference tasks.json file showing a single task that runs an F# script.
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command": "dotnet fsi ./MyScript.fsx",
"label": "My Script",
"problemMatcher": [],
"options": {
"cwd": "${workspaceFolder}"
},
"presentation": {
"reveal": "silent",
"panel": "dedicated",
"showReuseMessage": false,
"clear": true
}
}
]
}