I have a VS Code extension installed which runs a java service from extension location.
But I am getting below error while updating the VS Code to a new version because of the running jar.
"Failed to create file handle: The process cannot access the file because it is being used by another process."
I need to stop my service whenever the VS Code update happens ( Both automatic and manual updates ).
Is there any way to get control over VS Code update in my extension code?
Any help is much appreciated!