diff --git a/src/Microsoft.AspNet.Razor.Runtime/Runtime/TagHelpers/TagHelperDesignTimeDescriptorFactory.cs b/src/Microsoft.AspNet.Razor.Runtime/Runtime/TagHelpers/TagHelperDesignTimeDescriptorFactory.cs index 2912b79886..dfcd3fbff4 100644 --- a/src/Microsoft.AspNet.Razor.Runtime/Runtime/TagHelpers/TagHelperDesignTimeDescriptorFactory.cs +++ b/src/Microsoft.AspNet.Razor.Runtime/Runtime/TagHelpers/TagHelperDesignTimeDescriptorFactory.cs @@ -118,7 +118,7 @@ namespace Microsoft.AspNet.Razor.Runtime.TagHelpers return null; } - var xmlDocumentationFile = GetXmlDocumentationFile(assembly, assemblyLocation); + var xmlDocumentationFile = GetXmlDocumentationFile(assemblyLocation); // Only want to process the file if it exists. if (xmlDocumentationFile != null) @@ -154,7 +154,7 @@ namespace Microsoft.AspNet.Razor.Runtime.TagHelpers return null; } - private static FileInfo GetXmlDocumentationFile(Assembly assembly, string assemblyLocation) + private static FileInfo GetXmlDocumentationFile(string assemblyLocation) { try {