Introduction
I've followed this tutorial to setup my ASP.NET Web API Help Pages.
Using <package id="Microsoft.AspNet.WebApi.HelpPage" version="5.2.3" targetFramework="net452" />
The documentation seems to be fine, but I'm getting empty model property descriptions.
They are empty in both controller method/endpoint and model details doc.
Controller method example
/// <summary>
/// POST: api/remitent
/// </summary>
/// <param name="remitent"></param>
public void Post([FromBody]Remitent remitent)
{
}
Model property example
/// <summary>
/// First name property summary
/// </summary>
[Required]
[MaxLength(49)]
public string FirstName { get; set; }
Results
I would expect the FirstName property summary to fill the model property description on docs. Instead the description column is empty:
Does anyone know how to solve that?