File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ if (complex.IsBaseAbstractAndReferencedAsPropertyType() && !complex.IsAbstract)
6969
7070 /// <summary>
7171 /// Gets or sets <#=property.Name#>.
72- <# if (property.LongDescription != null) {
72+ <# if (property.LongDescription != null || property.Description != null ) {
7373#>
7474 /// <#=property.GetSanitizedLongDescription()#>
7575<# } #>
@@ -84,7 +84,7 @@ if (complex.IsBaseAbstractAndReferencedAsPropertyType() && !complex.IsAbstract)
8484
8585 /// <summary>
8686 /// Gets or sets <#=property.Name#>.
87- <# if (property.LongDescription != null) {
87+ <# if (property.LongDescription != null || property.Description != null ) {
8888#>
8989 /// <#=property.GetSanitizedLongDescription()#>
9090<# } #>
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ namespace <#=entity.Namespace.GetNamespaceName()#>
101101
102102 /// <summary>
103103 /// Gets or sets <#=property.Name.SplitCamelCase().ToLower()#>.
104- <# if (property.LongDescription != null) {
104+ <# if (property.LongDescription != null || property.Description != null ) {
105105#>
106106 /// <#=property.GetSanitizedLongDescription()#>
107107<# } #>
@@ -117,7 +117,7 @@ namespace <#=entity.Namespace.GetNamespaceName()#>
117117
118118 /// <summary>
119119 /// Gets or sets <#=property.Name.SplitCamelCase().ToLower()#>.
120- <# if (property.LongDescription != null) {
120+ <# if (property.LongDescription != null || property.Description != null ) {
121121#>
122122 /// <#=property.GetSanitizedLongDescription()#>
123123<# } #>
You can’t perform that action at this time.
0 commit comments