GhostDoc is a Visual Studio extension that automatically generates XML documentation comments for methods and properties based on their type, parameters, name, and other contextual information.
1
vote
1answer
98 views
R#: Stop it touching ghostdoc XML comments on Code Cleanup?
I am using GhostDoc to create my XML comments and I am very happy with the format. I use the following format (c#)
/// <summary>
/// Creates new client.
/// </summary>
/// ...
0
votes
1answer
55 views
GhostDoc element ordering / customization
How can I customize GhostDoc to do the following?
///<author>Moo</author>
///<summary>
/// Gets the user by ID.
///</summary>
///<param name=”ID”>The ID.</param>
...
1
vote
1answer
77 views
How do you add a blank commented line in T4 using Ghostdoc Pro in Visual Studio?
Inside of the "Rules" settings in GhostDoc Pro it allows me to use T4 to format my comments. However it randomly adds line breaks(which I have sorted out), and also will not allow me to add a single ...
12
votes
4answers
150 views
Is there a way to intelligently fix documentation in Eclipse?
Back in my C# days, I loved using a Visual Studio extension called "GhostDoc". Now that I'm a being used as a Java developer I'm using Eclipse. I can live without being able to have inferred ...
0
votes
1answer
91 views
What would be some particular benefits to using GhostDocs with C#
The whole point of GhostDocs is obviously to document your code. It asks you to name your methods well to do so. With well named methods however, theoritically shouldn't they be useful enough to be ...
1
vote
1answer
115 views
Using GhostDoc to generate Comments for attributes on properties
How can I configure GhostDoc to generate comments for attributes on properties such as this:
[Required(ErrorMessage = "Name is Required.")]
[StringLength(50, ErrorMessage = "Name must be less than 50 ...
0
votes
1answer
90 views
GhostDoc - Updating derived class comments
I have an interface (ISomeInterface) with full xml comments, and some derived classes with matching xml comments.
If I change the comment in the interface, is it possible to update the comments in ...
1
vote
1answer
530 views
Ghost doc to add “modified by” comment
Is there a way to get ghost doc to modify an existing XML comment for a method (made by Ghost doc) to add a "modified by" line when you re run it on the method?
I personally think this is what source ...
5
votes
6answers
3k views
how to comment javascript functions? [closed]
I am currently writing some client side java script code and coming from a .net background I always document/comment my methods, remarks, arguments etc. So now I want to document/commenting my ...
1
vote
1answer
396 views
.NET: XML documentation: using “cref” in <returns>, is this acceptable or not necessary?
I am using GhostDoc to document my methods etc... and its working well but it doesn't fill the <returns> ...
Can anyone tell me what i should be doing i.e
If it returns an object called ...
0
votes
2answers
160 views
GhostDoc public const documentation
When using ghostdoc on single line vars defs like
public const string DbCatName = "test";
ghostdoc adds a default header like :
/// <summary>
///
/// </summary>
but what I like to ...
1
vote
2answers
511 views
Unable to install ghostdoc, can you help?
I am unable to install ghostdoc.
The error message is "Microsoft Visual Studio.NET is not installed on your computer"
Visual Studio is installed on my computer.
Have you seen this problem? Is ...
10
votes
5answers
2k views
At what point do Stylecop settings stop being useful and start becoming annoying?
I work in a team where we use extensive ruleset in StyleCop and I am wondering what are the thoughts on the general point where such a tool stops being useful and starts becomes annoying. We also use ...
2
votes
1answer
721 views
How to use GhostDoc with Visual Web Developer Express?
i'm trying to use ghostdoc with vwd express 2008.
I know that vwd express doesn't support add in but i can't help asking if there's still a way to get it working?
or is there a ghostdoc equivalent ...
5
votes
2answers
5k views
View all TODO items in Visual Studio
I'm also using GhostDoc in Visual Studio 2008. How do I view all to-do items and if that's a function already in Visual Studio or in GhostDoc (documentation tool that I use)?
3
votes
2answers
735 views
Custom GhostDoc Rules
I am a huge fan of GhostDoc and use it in all of my development projects. Knowing that it supports custom rules I'd like to ask what custom rules have you written?
1
vote
2answers
866 views
Can I use GhostDoc to add documentation to an entire class or code file?
I love GhostDoc, but I want to be able to "Document This" for an entire file, and not just one member at a time. Is this possible?
8
votes
4answers
2k views
GhostDoc Equivalent for Eclipse(Java)
I'm a big fan of GhostDoc's automatic comment generation in Visual Studio so am looking for an plugin that does the same job with my Java code in Eclipse. Any recommendations?
8
votes
3answers
2k views
Is there anything like GhostDoc for C++
When I'm developing in C#, I heavily use GhostDoc to speed up the process of commenting my code. I'm currently working on a C++ project and I haven't found an equivalent tool. I know about Doxygen, ...
1
vote
1answer
628 views
Has anybody made a german config file for the GhostDoc AddIn?
Has anybody made a german version of the GhostDoc template textes? This would be a great help.
5
votes
5answers
2k views
Is there a GhostDoc like plug-in for CodeRush or ReSharper?
I have noticed that GhostDoc hasn't been updated in a long while. So I am curious if there is a plug-in for Resharper or CodeRush that will accomplish the same thing? Or even if this type of ...
1
vote
1answer
560 views
Ghostdoc-like plugin for IntelliJ IDEA
I've become lazy in my old age. For my C# work I've become quite reliant on Roland Weigelt's excellent GhostDoc plugin for Visual Studio.
Is anyone aware of a similar plugin for Java work in IntelliJ ...
