Updated to work with latest Razor changes.
This commit is contained in:
parent
d041249b27
commit
e44e59fd29
|
|
@ -76,7 +76,6 @@ namespace Microsoft.AspNet.Mvc.Razor
|
||||||
DefaultBaseClass = BaseType + '<' + DefaultModel + '>';
|
DefaultBaseClass = BaseType + '<' + DefaultModel + '>';
|
||||||
DefaultNamespace = "Asp";
|
DefaultNamespace = "Asp";
|
||||||
GeneratedClassContext = new GeneratedClassContext(
|
GeneratedClassContext = new GeneratedClassContext(
|
||||||
|
|
||||||
executeMethodName: "ExecuteAsync",
|
executeMethodName: "ExecuteAsync",
|
||||||
writeMethodName: "Write",
|
writeMethodName: "Write",
|
||||||
writeLiteralMethodName: "WriteLiteral",
|
writeLiteralMethodName: "WriteLiteral",
|
||||||
|
|
@ -88,7 +87,7 @@ namespace Microsoft.AspNet.Mvc.Razor
|
||||||
{
|
{
|
||||||
RunnerTypeName = typeof(TagHelperRunner).FullName,
|
RunnerTypeName = typeof(TagHelperRunner).FullName,
|
||||||
ScopeManagerTypeName = typeof(TagHelperScopeManager).FullName,
|
ScopeManagerTypeName = typeof(TagHelperScopeManager).FullName,
|
||||||
ExecutionContextTypeName = typeof(TagHelpersExecutionContext).FullName,
|
ExecutionContextTypeName = typeof(TagHelperExecutionContext).FullName,
|
||||||
StartWritingScopeMethodName = "StartWritingScope",
|
StartWritingScopeMethodName = "StartWritingScope",
|
||||||
EndWritingScopeMethodName = "EndWritingScope"
|
EndWritingScopeMethodName = "EndWritingScope"
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue