mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-28 04:23:32 +01:00
Better template properties order
This commit is contained in:
@@ -54,6 +54,7 @@ const msbuild: TaskEntry = {
|
||||
'\t"tasks": [',
|
||||
'\t\t{',
|
||||
'\t\t\t"taskName": "build",',
|
||||
'\t\t\t"type": "process",',
|
||||
'\t\t\t"command": "msbuild",',
|
||||
'\t\t\t"args": [',
|
||||
'\t\t\t\t// Ask msbuild to generate full paths for file names.',
|
||||
@@ -86,8 +87,8 @@ const command: TaskEntry = {
|
||||
'\t"tasks": [',
|
||||
'\t\t{',
|
||||
'\t\t\t"taskName": "echo",',
|
||||
'\t\t\t"command": "echo Hello",',
|
||||
'\t\t\t"type": "shell"',
|
||||
'\t\t\t"type": "shell",',
|
||||
'\t\t\t"command": "echo Hello"',
|
||||
'\t\t}',
|
||||
'\t]',
|
||||
'}'
|
||||
@@ -108,14 +109,14 @@ const maven: TaskEntry = {
|
||||
'\t"tasks": [',
|
||||
'\t\t{',
|
||||
'\t\t\t"taskName": "verify",',
|
||||
'\t\t\t"command": "mvn -B verify",',
|
||||
'\t\t\t"type": "shell",',
|
||||
'\t\t\t"command": "mvn -B verify",',
|
||||
'\t\t\t"group": "build"',
|
||||
'\t\t},',
|
||||
'\t\t{',
|
||||
'\t\t\t"taskName": "test",',
|
||||
'\t\t\t"command": "mvn -B test",',
|
||||
'\t\t\t"type": "shell",',
|
||||
'\t\t\t"command": "mvn -B test",',
|
||||
'\t\t\t"group": "test"',
|
||||
'\t\t}',
|
||||
'\t]',
|
||||
|
||||
Reference in New Issue
Block a user