-
Notifications
You must be signed in to change notification settings - Fork 185
Add utility to check java project settings #264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| public static final String VALIDATE_LAUNCHCONFIG = "vscode.java.validateLaunchConfig"; | ||
| public static final String RESOLVE_MAINMETHOD = "vscode.java.resolveMainMethod"; | ||
| public static final String INFER_LAUNCH_COMMAND_LENGTH = "vscode.java.inferLaunchCommandLength"; | ||
| public static final String DETECT_PREVIEW_FLAG = "vscode.java.detectEnablePreviewFeaturesFlag"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this could be a more common API about fetch settings.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new API will return the java project settings map, and delay the check to the client side.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line is not necessary now.
yaohaizh
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we provide a more generic version of API
1c7de7d to
b1b0fa3
Compare
...ebug.plugin/src/main/java/com/microsoft/java/debug/plugin/internal/ProjectConfigHandler.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Jinbo Wang <jinbwan@microsoft.com>
a5a84b7 to
60034b0
Compare
Signed-off-by: Jinbo Wang jinbwan@microsoft.com
This is the utility for the PR microsoft/vscode-java-debug#561