1. I have installed Visual Studio 13
2. Instal GAX and GAT for VS 2013
3. Install Microsoft Visual Studio 2013 SDK-ENU
4. On my extension.vsixmanifest file i have change <VisualStudio Version="10.0"> to <VisualStudio Version="13.0">
<SupportedProducts>
<VisualStudio Version="13.0">
<Edition>Ultimate</Edition>
<Edition>Premium</Edition>
<Edition>Pro</Edition>
<Edition>Express_All</Edition>
</VisualStudio>
</SupportedProducts>
and under references node
<References>
<Reference Id="Microsoft.Practices.RecipeFramework.VisualStudio" MinVersion="2.0">
<Name>Guidance Automation Extensions</Name>
</Reference>
</References>
5. I tried to build the Solution in order to create vsix file. When I installed the vsix file it will prompt an error message
11/25/2013 7:14:36 PM - Microsoft VSIX Installer
11/25/2013 7:14:36 PM - -------------------------------------------
11/25/2013 7:14:36 PM - Initializing Install...
11/25/2013 7:14:36 PM - Extension Details...
11/25/2013 7:14:36 PM - Identifier :
11/25/2013 7:14:36 PM - Name :
11/25/2013 7:14:36 PM - Author :
11/25/2013 7:14:36 PM - Version :
11/25/2013 7:14:36 PM - Description :
11/25/2013 7:14:36 PM - Locale : en-US
11/25/2013 7:14:36 PM - MoreInfoURL :
11/25/2013 7:14:36 PM - InstalledByMSI : False
11/25/2013 7:14:36 PM - SupportedFrameworkVersionRange : [4.0,4.5]
11/25/2013 7:14:36 PM -
11/25/2013 7:14:36 PM - Supported Products :
11/25/2013 7:14:36 PM - Microsoft.VisualStudio.Ultimate
11/25/2013 7:14:36 PM - Version : [13.0]
11/25/2013 7:14:36 PM - Microsoft.VisualStudio.Premium
11/25/2013 7:14:36 PM - Version : [13.0]
11/25/2013 7:14:36 PM - Microsoft.VisualStudio.Pro
11/25/2013 7:14:36 PM - Version : [13.0]
11/25/2013 7:14:36 PM - Microsoft.VisualStudio.Express_All
11/25/2013 7:14:36 PM - Version : [13.0]
11/25/2013 7:14:36 PM -
11/25/2013 7:14:36 PM - References :
11/25/2013 7:14:36 PM - -------------------------------------------------------
11/25/2013 7:14:36 PM - Identifier : Microsoft.Practices.RecipeFramework.VisualStudio
11/25/2013 7:14:36 PM - Name : Guidance Automation Extensions
11/25/2013 7:14:36 PM - Version : [2.0,)
11/25/2013 7:14:36 PM - MoreInfoURL :
11/25/2013 7:14:36 PM - Nested : No
11/25/2013 7:14:36 PM -
11/25/2013 7:14:36 PM -
11/25/2013 7:14:36 PM - Searching for applicable products...
11/25/2013 7:14:36 PM - Found installed product - Microsoft Visual Studio 2010 Ultimate
11/25/2013 7:14:36 PM - Found installed product - Microsoft Visual Studio Ultimate 2013
11/25/2013 7:14:36 PM - Found installed product - Microsoft Visual Studio Premium 2013
11/25/2013 7:14:36 PM - Found installed product - Microsoft Visual Studio Professional 2013
11/25/2013 7:14:36 PM - Found installed product - Microsoft Visual Studio 2013 Shell (Integrated)
11/25/2013 7:14:36 PM - Found installed product - Global Location
11/25/2013 7:14:36 PM - VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed products.
at VSIXInstaller.App.InitializeInstall()
at System.Threading.Tasks.Task.InnerInvoke()
at System.Threading.Tasks.Task.Execute()
Am i missing something?