Updated to work with latest Razor changes.

This commit is contained in:
NTaylorMullen 2014-10-05 15:25:31 -07:00 committed by N. Taylor Mullen
parent d041249b27
commit e44e59fd29
1 changed files with 1 additions and 2 deletions

View File

@ -76,7 +76,6 @@ namespace Microsoft.AspNet.Mvc.Razor
DefaultBaseClass = BaseType + '<' + DefaultModel + '>';
DefaultNamespace = "Asp";
GeneratedClassContext = new GeneratedClassContext(
executeMethodName: "ExecuteAsync",
writeMethodName: "Write",
writeLiteralMethodName: "WriteLiteral",
@ -88,7 +87,7 @@ namespace Microsoft.AspNet.Mvc.Razor
{
RunnerTypeName = typeof(TagHelperRunner).FullName,
ScopeManagerTypeName = typeof(TagHelperScopeManager).FullName,
ExecutionContextTypeName = typeof(TagHelpersExecutionContext).FullName,
ExecutionContextTypeName = typeof(TagHelperExecutionContext).FullName,
StartWritingScopeMethodName = "StartWritingScope",
EndWritingScopeMethodName = "EndWritingScope"
})