Reputation: 18237
Ok, so i was looking this tutorial in codeproject
website and in the video its shows a part when i click File-> Export Template
. But in my Visual studio doesn't appear like that, instead appears like this File-> Export Template as VSIX
an I cannot see the .zip generated from my template, instead generates a .vsix
that I can modify. Do I need to install another extension??. Or i need to do something else.
Upvotes: 1
Views: 431
Reputation: 63065
May be VS install issue. But you can define a keyboard shortcut that points to File.ExportTemplate
within Tools -> Options -> Keyboard and still try this feature.
Upvotes: 2
Reputation: 21
From the MSDN documentation "A VSIX package is a compressed file that follows the Open Packaging Conventions (OPC) standard" at http://msdn.microsoft.com/en-us/library/ff363239.aspx. You could probably rename the extesion to .zip and then open it open and poke around.
Upvotes: 2