Reputation: 48
I'm using visual studio 2019. After installing vsix workload I simply create a new vsix project that include package.cs and hit F5 to launch debugger. After all this work no break point is working. And let me say that my assembly is not loaded in Module explorer. I Changed the Project attribute (Include Debug Symbol in VSIX Container) to true and nothing changed
Any help appreciated
Upvotes: 0
Views: 559
Reputation: 582
The VSIX project is empty and there are no components installed VS exp.
You could follow this document to add a simple command, then you can see the assembly has been loaded by debugger.
Upvotes: 1