What's new? | Help | Directory | Sign in
Google
                
Show all Featured Downloads:
CR_Documentor-2.1.0.0.zip
Join project
Project owners:
  travis.illig
Project members:
RoryBecker

CR_Documentor

Writing XML documentation comments in .NET can be troublesome sometimes because you can't really see what it's going to look like - you have to compile the code, then take the extracted XML doc and feed it to a rendering engine like Sandcastle, then wait for the compiled help to come out so you can read it.

CR_Documentor is a plugin for DXCore that allows you to preview what the documentation will look like when it's rendered - in a tool window inside Visual Studio.

Version 2.1.0.0 fixes the security warning issue

Version 2.1.0.0 includes the fix for  Issue #1  - the JavaScript security warning problem. We now host a tiny internal web server, so as long as you can hit localhost without a security issue, you'll be able to see the preview without an issue.

Example

Your inline XML docs...

/// <summary>
/// This method returns a string.
/// </summary>
/// <returns>Empty string is the return value.</returns>
public string Method()
{
  return "";
}

...get previewed in the window:

...and here's what it looks like in the context of Visual Studio: