Build 2160: Odd Behavior
I started Visual Studio and opened a web solution with ReSharper initially
disabled. I then enabled ReSharper (ReSharper_ToggleSuspended) and tried
editing a web form, but ReSharper isn't showing all the important attributes
in a lot of the controls. Specifically, it is not showing properties like
DataType on a Telerik RadNumericTextBox so I suspended ReSharper again to go
back to Visual Studio intellisense.
After I was finished with the web form, I enabled ReSharper again to create
a straight up C# class in another project in the solution. The problem is
that ReSharper isn't really enabled all the way. I see the memory footprint,
but intellisense kinda sorta maybe works, code analysis isn't working, and
it's not showing any quick fixes. If I suspend and restart ReSharper again,
I see it start to analyze and it just stops for some reason. No errors or
warnings are given. It just quits.
If I start typing a method and leave the cursor on an indented blank line,
Alt+Tab to another application (say to read part of the spec I'm working
on), when I come back to Visual Studio, the cursor is at the left edge of
the screen. In other words, before switching applications:
namespace Foo
{
public class Bar
{
public void Baz()
{
| <- cursor indented
}
}
}
after I switch to another app and come back:
namespace Foo
{
public class Bar
{
public void Baz()
{
| <- cursor indented
}
}
}
Even stranger, it doesn't indent on semicolon as expected. If I suspend
ReSharper, this behavior disappears.
Please sign in to leave a comment.