R# ignores case settings for elements in server tags
I have all my settings set to lowercase in R# (6.1.31.50) and VS2010.
When I create this code the elements of the repeater tag are forced to proper case:
<asp:repeater id="rptRepeater" runat="server">
<HeaderTemplate>
</HeaderTemplate>
<ItemTemplate>
</ItemTemplate>
<FooterTemplate>
</FooterTemplate>
</asp:repeater>
When what it should really be is this:
<asp:repeater id="rptRepeater" runat="server">
<headertemplate>
</headertemplate>
<itemtemplate>
</itemtemplate>
<footertemplate>
</footertemplate>
</asp:repeater>
There was an issue with the initial release of R#6 that made the "id" atttributes uppercase and that was fixed. Maybe this is somehow related?
Please sign in to leave a comment.