- Add support for .NET 7
- Remove support for .NET frameworks no longer supported by Microsoft
ForEachWithIndex
<ForEachWithIndex Context=item in @People>
<tr>
<td>@item.Index
<td>@item.Value.Name
</tr>
</ForEachWithIndex>
ForEach
<ForEach Context=person In=@People>
<li>@person.Name</li>
- Simple
If
<If Condition=@true>
Content
</If>
If
withElse
<If Condition=@true>
<Then>
Content
</Then>
<Else>
Other content
</Else>
</If>