();
+
+ var tagBuilder = Generator.GenerateSelect(
+ ViewContext,
+ For.Metadata,
+ optionLabel: null,
+ name: For.Name,
+ selectList: items,
+ allowMultiple: allowMultiple,
+ htmlAttributes: null);
+
+ if (tagBuilder != null)
+ {
+ output.SelfClosing = false;
+ output.Merge(tagBuilder);
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/Microsoft.AspNet.Mvc.TagHelpers/ValidationSummaryTagHelper.cs b/src/Microsoft.AspNet.Mvc.TagHelpers/ValidationSummaryTagHelper.cs
index 0bb03e4298..e479c75b08 100644
--- a/src/Microsoft.AspNet.Mvc.TagHelpers/ValidationSummaryTagHelper.cs
+++ b/src/Microsoft.AspNet.Mvc.TagHelpers/ValidationSummaryTagHelper.cs
@@ -42,7 +42,7 @@ namespace Microsoft.AspNet.Mvc.TagHelpers
if (!Enum.TryParse(ValidationSummaryValue, ignoreCase: true, result: out validationSummaryValue))
{
throw new InvalidOperationException(
- Resources.FormatValidationSummaryTagHelper_InvalidValidationSummaryValue(
+ Resources.FormatTagHelpers_InvalidValue_ThreeAcceptableValues(
"",
"validation-summary",
ValidationSummaryValue,