Refactor Visual Studio Code configuration: update .gitignore, add settings, tasks, and example JSON files

This commit is contained in:
2026-03-03 22:04:07 +01:00
parent c0020b5e9d
commit 311004790d
5 changed files with 46 additions and 20 deletions

26
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run FsMcp Debug",
"type": "shell",
"command": "dotnet run --project FsMcp/FsMcp.csproj -c Debug",
"options": {
"statusbar": {
"hide": false,
"label": "Run FsMcp Debug",
"color": "#3a96ff",
"icon": {
"id": "debug-start"
},
"running": {
"color": "#f7df06",
"icon": {
"id": "loading~spin"
}
}
}
}
}
]
}