Arash Jafarzadeh
Arash Jafarzadeh

Reputation: 48

Problem in debugging VSIX (visual studio extension)

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

Answers (1)

Dylan
Dylan

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.

enter image description here

Upvotes: 1

Related Questions