Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove .vscode folder from gitignore
Add common tasks to tasks.json to faster execution
  • Loading branch information
ShreyasJejurkar committed Oct 21, 2022
commit 0da123b1c8888796a3fc6ad75b53b18e61b2fa01
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
*.suo
*.user
.vs/
.vscode/

# Build results
artifacts/
Expand Down
44 changes: 44 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Restore projects",
"type": "shell",
"command": "./restore.sh",
"windows": {
"command": ".\\restore.cmd"
},
"group": "build",
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Build entire repository",
"type": "shell",
"command": "./build.sh",
"windows": {
"command": ".\\build.cmd"
},
"group": "build",
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"label": "Run all test projects",
"type": "shell",
"command": "./test.sh",
"windows": {
"command": ".\\test.cmd"
},
"group": "test",
"presentation": {
"reveal": "always",
"panel": "new"
}
},
]
}