I successfully installed GhostDoc to Visual Studio 2012 (Express Edition). Unfortunately, when I'm starting Visual Studio after installation, I don't see icon "Document this". I can't use Ctrl+Shift+D to document code and, if I click right button on name of class, I don't see "Document this". Can anyone tell me why?
Asked
Active
Viewed 621 times
0
-
1This may be better answered by the GhostDoc folks. Here's the link to their support forums: http://community.submain.com/ – JNYRanger Apr 02 '14 at 22:25
-
The problem was that Express editions of Visual Studio don't support Add-In extensibility - a Microsoft restriction. – makcis Apr 02 '14 at 22:43
-
1@makcis add your comment as an answer to your question. – Black Frog Apr 02 '14 at 23:40
1 Answers
0
Express Editions of Visual Studio only support extensions which have been especially approved by Microsoft for use in those editions. The only real cases where you can extend these editions is the following:
- You can add new Project or Project Item templates, provided they are prepared without additional functionality.
- You can install the NuGet Package Manager extension, which has special installation privileges for Express Editions starting in Visual Studio 2012.

Sam Harwell
- 97,721
- 20
- 209
- 280
-
-
@makcis It can't. It's completely unrelated to GhostDoc and only mentioned here so that I could provide a complete answer. – Sam Harwell Apr 03 '14 at 19:21