Skip to content

Commit f87d065

Browse files
committed
Avoid extension ID clash, add default build task
Using the same extension ID as flash-debugger (vshaxe.haxe-debug) seems to cause some issues if you have both installed.
1 parent 671bee5 commit f87d065

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.vscode/tasks.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "hxml",
6+
"file": "build.hxml",
7+
"group": {
8+
"kind": "build",
9+
"isDefault": true
10+
}
11+
}
12+
]
13+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "haxe-debug",
2+
"name": "hxcpp-debugger",
33
"displayName": "HXCPP Debugger",
44
"version": "1.2.0",
55
"publisher": "vshaxe",

0 commit comments

Comments
 (0)