Skip to content
Snippets Groups Projects
Commit 356b2f89 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

Add tasks file

parent 9c7e6848
No related branches found
No related tags found
2 merge requests!714Production Release | nshmp-haz,!713VS Code Setup
{
/*
* VS Code tasks for nshmp-haz.
*
* For more information on tasks, visit: https://code.visualstudio.com/docs/editor/tasks
*/
"version": "2.0.0",
"tasks": [
/*
* Task to automatically run the `./gradlew eclipse` task on startup to
* keep the `.classpath` file updated.
*/
{
"label": "Update Classpath File",
"type": "shell",
"command": "./gradlew eclipse",
"windows": {
"command": "gradle.bat eclipse"
},
"presentation": {
"close": true,
},
"group": "none",
"runOptions": {
"runOn": "folderOpen"
}
}
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment