Chris Bordeman
Chris Bordeman

Reputation: 235

VSIX loads in experimental instance (debug) but not in non-experimental

I've rebuilt this project twice from the ground up, and I can't figure out why my VSIX' menu items and Options pages are being loaded through debug mode but not by installing the .VSIX file manually. Nothing shows in the Output window and I'm not sure where to look for VS logging of this kind of stuff.

THIS WAS WORKING before, but stopped about a week ago.

I even created a Hyper-V W8.1 VM and installed VS2015 (final release) and installed the VSIX and it just doesn't seem to load at startup unless I'm debugging.

This is VS2015 final.

My source code is at https://github.com/cbordeman/Mvvm-Tools.

Upvotes: 2

Views: 410

Answers (1)

Chris Bordeman
Chris Bordeman

Reputation: 235

I figured it out. I was missing an Asset in my Assets section of my .vsixmanifest:

<Assets>
    <Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
</Assets>

Upvotes: 2

Related Questions