CSharpAnalyzers / ExceptionalReSharper

Extension for ReSharper which analyzes thrown and documented C# exceptions and suggests improvements
Microsoft Public License
125 stars 30 forks source link

Change format of exception comment (specifically the type) #84

Open JoshHawley opened 5 years ago

JoshHawley commented 5 years ago

It is currently generating this: /// <exception cref="T:System.ObjectDisposedException">thrown when this object is already disposed</exception>

My issue is the overly explicit type. Is there a way to change it to just ObjectDisposedException? Maybe it is using a different setting somewhere in ReSharper?

In general I would like to be able to change the format of the generated XML comment for an exception. Is this possible?

Thanks, Josh