-
Notifications
You must be signed in to change notification settings - Fork 10.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat (Codespaces) - Added Commonly used tasks to
tasks.json
for VSC…
…ode users. (#37873) * feat (codespaces) - Add EditorConfig as pre-installed extension. * feat (codespaces/vscode) - Add commonly performed tasks to tasks.json * Addressed PR feedback. 1. Added C# XML documentation comments extension to suggested extension. 2. Added some more Omnisharp options to devcontainer based on our omnisharp.json file 3. Renamed tasks to Run all test projects. * Removed extra space * Formatted the Json file using inbuilt vs code formatter! * indent issues * Update build instruction * Keep 8 tabs as previosuly!
- Loading branch information
1 parent
94bc5e6
commit fa25640
Showing
3 changed files
with
90 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
{ | ||
"version": "2.0.0", | ||
|
||
"inputs": [ | ||
{ | ||
"type": "pickString", | ||
"default": "Debug", | ||
"options": ["Debug","Release"], | ||
"id": "configurationType", | ||
"description": "Select configuration type", | ||
} | ||
], | ||
"tasks": [ | ||
{ | ||
"label": "Restore projects", | ||
"type": "shell", | ||
"command": "./restore.sh", | ||
"windows": { | ||
"command": ".\\restore.cmd" | ||
}, | ||
"group": "build", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
} | ||
}, | ||
{ | ||
"label": "Build entire repository (Debug/Release)", | ||
"type": "shell", | ||
"command": "./eng/build.sh -Configuration ${input:configurationType}", | ||
"windows": { | ||
"command": ".\\eng\\build.cmd -Configuration ${input:configurationType}" | ||
}, | ||
"group": "build", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
} | ||
}, | ||
{ | ||
"label": "Run all test projects", | ||
"type": "shell", | ||
"command": "./eng/build.sh -test", | ||
"windows": { | ||
"command": ".\\eng\\build.cmd -test" | ||
}, | ||
"group": "test", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
} | ||
}, | ||
{ | ||
"label": "Pack assets", | ||
"type": "shell", | ||
"command": "./eng/build.sh --pack", | ||
"windows": { | ||
"command": ".\\eng\\build.cmd -pack" | ||
}, | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
} | ||
}, | ||
{ | ||
"label": "Clean artifacts", | ||
"type": "shell", | ||
"command": "./clean.sh", | ||
"windows": { | ||
"command": ".\\clean.cmd" | ||
}, | ||
"group": "none", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters