-
Notifications
You must be signed in to change notification settings - Fork 223
Conversation
public TagHelperOutput( | ||
string tagName, | ||
[NotNull] IDictionary<string, string> attributes, | ||
[NotNull] IHtmlEncoder htmlEncoder) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahhh awesome no longer need this.
You should also remove this: https://github.com/aspnet/Razor/blob/dev/src/Microsoft.AspNet.Razor.Runtime/project.json#L9
⌚ |
⌚ only for the config changes. |
Addressed comments. |
RenderTagOutput(_tagHelperContext.OutputGenerateEndTagMethodName, methodReturnsString: true); | ||
|
||
RenderStartWriteTagHelperMethod(); | ||
_writer.Write(ExecutionContextVariableName).WriteEndMethodInvocation(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: couldn't this be done inside RenderStartWriteTagHelperMethod()
, perhaps after renaming that method to (say) RenderWriteTagHelperMethodCall
?
⌚ please grab me when you have updated the new doc comments |
Updated.. |
|
||
_writer.Write(ExecutionContextVariableName) | ||
.WriteEndMethodInvocation(endLine: false) | ||
.WriteLine(".Wait();"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
teensy nit: here's where my commit comment lands. you're indenting the easy and easy-to-maintain way just above (line 366) but doing it the hard way here.
|
|
Checked in. Thanks! 7daec14 |
#318