Adpot new vscode debug activation event (#196)
Signed-off-by: Jinbo Wang <jinbwan@microsoft.com>
This commit is contained in:
parent
34f7376a65
commit
80cceab24e
|
@ -18,7 +18,7 @@ A lightweight Java Debugger based on [Java Debug Server](https://github.com/Micr
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
- JDK (version 1.8.0 or later)
|
- JDK (version 1.8.0 or later)
|
||||||
- VS Code (version 1.17.0 or later)
|
- VS Code (version 1.19.0 or later)
|
||||||
- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) (version 0.14.0 or later)
|
- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) (version 0.14.0 or later)
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
"debugger"
|
"debugger"
|
||||||
],
|
],
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.17.0"
|
"vscode": "^1.19.0"
|
||||||
},
|
},
|
||||||
"license": "SEE LICENSE IN LICENSE.txt",
|
"license": "SEE LICENSE IN LICENSE.txt",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -30,7 +30,8 @@
|
||||||
],
|
],
|
||||||
"activationEvents": [
|
"activationEvents": [
|
||||||
"onLanguage:java",
|
"onLanguage:java",
|
||||||
"onDebug"
|
"onDebugInitialConfigurations",
|
||||||
|
"onDebugResolve:java"
|
||||||
],
|
],
|
||||||
"main": "./out/src/extension",
|
"main": "./out/src/extension",
|
||||||
"contributes": {
|
"contributes": {
|
||||||
|
|
Loading…
Reference in New Issue