-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Labels
Description
We're using Umbraco's dictionary for property names and descriptions.
Generated Model properties get those dictionary keys as XML comment, for example:
///<summary>
/// #Title - Website - Propertyname: #Title - Website - Propertydescription
///</summary>
[ImplementPropertyType("title")]
public string Title
{
get { return this.GetPropertyValue<string>("title"); }
}
It would be nice if those comments would use the dictionary to generate nice XML comments.