RestCode / WebApiProxy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Generated doc comments not properly commenting new lines

onionhammer opened this issue · comments

The second line in the summary comment is not commented, thus creating a compile-time error.

    /// <summary>
    /// Adds the input user to the specified account, creating the
        user if it does not already exist.
    /// </summary>
    /// <param name="toAccount">The account to add the user to</param>
    /// <returns></returns>

Regarding Multiline comments. Two small fixes are missing from ..\WebApiProxy\WebApiProxy.Tasks\Templates\CSharpProxyTemplate.tt
Line 259 and line 271 need to use the ToSumary method as well:
/// <#= method.Description.ToSummary() #>

image

@BruceRicker please submit a PR

@onionhammer has this been resolved?

I believe it was in my PR, but I will retest (and close if so)

Yes, it's at least fixed in the dev branch

9999c0e