tags:

views:

4

answers:

1

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 have is

/// <summary></summary>

Does anybody know how to do this?

A: 

As far as I'm aware you can't get GhostDoc to do that for you - I believe the format it uses is pretty much fixed.

AtomineerUtils will do exactly what you want though.

Jason Williams