Build 2108 is broken!
When I open aspx file and start typing (while SWA is still analysing files for the first time):
<script></script>
1. Resharper throws 3 different exceptions: RSRP-229226 RSRP-229227 RSRP-229228 and then all keyboard input is ignored afterwards.
2. Ignore Error does not remove error from the list
3. parsing of one-line-long js blocks inside <td> elements in aspx is broken:
Doesnt work:
<table><tr>
<td nowrap><script>alert("yarr");</script></td>
</tr></table>
Works:
<table><tr>
<td nowrap>
<script>alert("yarr");</script>
</td>
</tr></table>
Please sign in to leave a comment.