Why can my VisualStudio extension not be found in VS 2013 gallery search (but in VS 2010 and VS 2012)? -


after testing , uploading release 2.4 of extension switchstartupproject (source code) visual studio gallery, noticed in vs 2013 neither appears in extension search results when searching appropriate keywords (e.g. switch startup), nor show available update when earlier version of installed.

but extension works in vs 2013 when vsix file downloaded , installed. visual studio gallery page shows supports vs 2013. , in vs 2012 , vs 2010 both search , update indication works.

the extension supports vs versions 2010, 2012, 2013 (and 2014 ctp) using version 1 vsix manifest:

... <supportedproducts>   <visualstudio version="10.0">     <edition>ultimate</edition>     <edition>premium</edition>     <edition>pro</edition>   </visualstudio>   <visualstudio version="11.0">     <edition>ultimate</edition>     <edition>premium</edition>     <edition>pro</edition>   </visualstudio>   <visualstudio version="12.0">     <edition>ultimate</edition>     <edition>premium</edition>     <edition>pro</edition>   </visualstudio>   <visualstudio version="14.0">     <edition>ultimate</edition>     <edition>premium</edition>     <edition>pro</edition>   </visualstudio> </supportedproducts> ... 

any idea how make appear in vs 2013 extension search?

at moment there bug in visual studio gallery stops extensions being seen in 2013 if have support dev14. has been going on few weeks , there hasn't been status updates on issue (or public acknowledgement such issue exists).

the best work around @ moment publish extension on gallery twice

  1. the normal project without dev14 support
  2. a special temporary version of project supports dev14

this approach i've been taking vsvim.


Comments

Popular posts from this blog

google api - Incomplete response from Gmail API threads.list -

Installing Android SQLite Asset Helper -

Qt Creator - Searching files with Locator including folder -