This is an automated email from the ASF dual-hosted git repository.
carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 982d5e9 more vscode updates
982d5e9 is described below
commit 982d5e9b0ca3c4f1b12c909d95b0a44ef23cd918
Author: Carlos Rovira <[email protected]>
AuthorDate: Sat Sep 8 15:07:11 2018 +0200
more vscode updates
---
frameworks/projects/Core/.vscode/tasks.json | 73 +++++++++++++++++++++++++---
frameworks/projects/Jewel/.vscode/tasks.json | 70 +++++++++++++++++++++++---
2 files changed, 129 insertions(+), 14 deletions(-)
diff --git a/frameworks/projects/Core/.vscode/tasks.json
b/frameworks/projects/Core/.vscode/tasks.json
index f207ad4..4a047cb 100644
--- a/frameworks/projects/Core/.vscode/tasks.json
+++ b/frameworks/projects/Core/.vscode/tasks.json
@@ -1,9 +1,66 @@
{
- // See https://go.microsoft.com/fwlink/?LinkId=733558
- // for the documentation about the tasks.json format
- "version": "0.1.0",
- "command": "mvn",
- "args": ["clean", "install", "-DskipTests"],
- "isShellCommand": true,
- "showOutput": "always"
-}
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
+ // for the documentation about the tasks.json format
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "Build Debug with AS3 Extension",
+ "type": "actionscript",
+ "debug": true,
+ "problemMatcher": [
+ "$nextgenas_nomatch"
+ ],
+ "group": "build"
+ },
+ {
+ "label": "Build with Maven",
+ "type": "shell",
+ "command": "mvn",
+ "args": [
+ "clean",
+ "install",
+ "-DskipTests"
+ ],
+ "group": "build",
+ "presentation": {
+ "reveal": "always",
+ "panel": "new"
+ },
+ "problemMatcher": []
+ },
+ {
+ "label": "Build Release with AS3 Extension",
+ "type": "actionscript",
+ "debug": false,
+ "problemMatcher": [
+ "$nextgenas_nomatch"
+ ],
+ "group": "build"
+ },
+ {
+ "label": "build with asconfigc",
+ "type": "shell",
+ "command": "asconfigc",
+ "windows": {
+ "args": [
+ "--sdk=C:\\Apache\\royale-asjs"
+ ]
+ },
+ "osx": {
+ "args": [
+ "--sdk=${env:ROYALE_HOME}"
+ ]
+ },
+ "presentation": {
+ "echo": true,
+ "reveal": "always",
+ "focus": true,
+ "panel": "dedicated"
+ },
+ "problemMatcher": [
+ "$nextgenas_nomatch"
+ ],
+ "group": "build"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/frameworks/projects/Jewel/.vscode/tasks.json
b/frameworks/projects/Jewel/.vscode/tasks.json
index 5d6198d..4a047cb 100644
--- a/frameworks/projects/Jewel/.vscode/tasks.json
+++ b/frameworks/projects/Jewel/.vscode/tasks.json
@@ -1,8 +1,66 @@
{
- // for the documentation about the tasks.json format
- "version": "0.1.0",
- "command": "mvn",
- "args": ["clean", "install", "-DskipTests"],
- "isShellCommand": true,
- "showOutput": "always"
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
+ // for the documentation about the tasks.json format
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "Build Debug with AS3 Extension",
+ "type": "actionscript",
+ "debug": true,
+ "problemMatcher": [
+ "$nextgenas_nomatch"
+ ],
+ "group": "build"
+ },
+ {
+ "label": "Build with Maven",
+ "type": "shell",
+ "command": "mvn",
+ "args": [
+ "clean",
+ "install",
+ "-DskipTests"
+ ],
+ "group": "build",
+ "presentation": {
+ "reveal": "always",
+ "panel": "new"
+ },
+ "problemMatcher": []
+ },
+ {
+ "label": "Build Release with AS3 Extension",
+ "type": "actionscript",
+ "debug": false,
+ "problemMatcher": [
+ "$nextgenas_nomatch"
+ ],
+ "group": "build"
+ },
+ {
+ "label": "build with asconfigc",
+ "type": "shell",
+ "command": "asconfigc",
+ "windows": {
+ "args": [
+ "--sdk=C:\\Apache\\royale-asjs"
+ ]
+ },
+ "osx": {
+ "args": [
+ "--sdk=${env:ROYALE_HOME}"
+ ]
+ },
+ "presentation": {
+ "echo": true,
+ "reveal": "always",
+ "focus": true,
+ "panel": "dedicated"
+ },
+ "problemMatcher": [
+ "$nextgenas_nomatch"
+ ],
+ "group": "build"
+ }
+ ]
}
\ No newline at end of file