-
Notifications
You must be signed in to change notification settings - Fork 30.4k
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
I cannot build my VSCode extension project in VSCode after update to 1.76 #175833
Comments
Can you give some more details? What happens? What does your build task do? Can you share the project? Any error messages in devtools (Help > Toggle Developer Tools)? |
Have the same issue |
@StephaneAdeso Can you provide the above additional information? |
Today i decided to start an extension project. I installed the dependencies following the https://code.visualstudio.com/api/get-started/your-first-extension guide. I also have to say that i tried an old theme project ( 8 month old) and i was able to launch it with F5 without any problem. I also tried the launch.json that you shared in Stackoverflow https://stackoverflow.com/questions/75619530/f5-not-working-in-vscode-extension-development/75619753#75619753 and it works perfectly. So i am pretty sure there is something wrong in the launch.json that is generated by default. You can see my files and version in the stackoverflow post. |
No output error messages on the devtools when i press F5 |
there you have the files that was autogenerated and dont work. i have changed anything since Yo-code created the project. launch.json
tasks.json
package.json
|
Is there a detailed documentation of how to configure a launch.json ? where you can consult all the available parameters and how they work. this is not enaugh detailed |
I'm also hitting this and can confirm that nothing "dubious" is showing in the console of the development tools. As a matter of fact, there is almost nothing there. (Which is odd, because it's normally full of output from the extension host, extensions, etc.) Additional information is that it appears (at least for our extension) that the extension activates (when it's not supposed to) and then seems to just "stop" being executed. Here's "all" of the console output from the extension host developer tools console [Extension Host] STOPPED on first line for debugging on port 53603 |
I can confirm the issue in v1.76 that nothing happens when pressing the F5 key. |
This is probably due to a misbehaving extension, please run the "Start Extension Bisect" command to figure out which one it might be |
Possibly same issue as #175202. F5 build tasks seem to activate too many extensions |
Same as #175976. I have a little more info there. |
The start extension bisec is just awsome. i just did it and i found that its because of java extension. i posted the bug here microsoft/vscode-java-dependency#721 |
i tried to use F5 after disabling the java plugin, but F5 still not working. |
Maybe there's a second one then. |
i disabled the java extension, but it didn't work. so i executed bisec again and it detected the Material icon extension. so i disabled it and it didn't work. Still having the F5 issue. i think there is something more behind all this. |
i commented the
and now I have it like this:
|
I can confirm that after 1.76.1 update, F5 is still broke. |
It sounds like there might be an issue with your build task then. |
As I mentioned above, the project is made from scratch with the yo-code plugin. The task is the one that comes by default. |
Pretty sure this is fixed in insider's - can you pls try to repro there and let me know? |
This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines. Happy Coding! |
I have the same problem on macOS Ventura 13.1 and VS Code 1.77.3 It seems to be partly/mostly related to other extensions. Sometimes I get nothing happening at all. Sometimes I get a bunch of errors from totally unrelated extensions. I believe I have mostly on the default or most popular extension for each of about a dozen programming languages. I use vscode for programming but I'm quite clueless on how to get things working for run/debug configurations. |
I'm making a vscode extension.
When I use version 1.75.0, In the project root path, I could build and run [Extension Development Host] by pressing F5.
However, after updating to 1.76, I cannot build my VSCode extension project in VSCode. No alert, No OUTPUT, No DEBUG CONOLE.
So now, I'm using 1.75.0, It works very well.
I think version 1.76 has some bugs.
Steps to Reproduce:
The text was updated successfully, but these errors were encountered: