resharper-7.1

ReSharper intellisense does not display documentation

与世无争的帅哥 提交于 2019-12-03 04:15:53
Any idea why I'm not getting any documentation to go along with my ReSharper IntelliSense? If I go to the ReSharper options and enable the Visual Studio IntelliSense instead, I get the proper documentation when going through the members in the IntelliSense pop up. If I re-enable the ReSharper IntelliSense, I now get the ReSharper IntelliSense pop up sans documentation. Go to ReSharper | Options -> Environment | IntelliSense | Completion Appearance . Check Show member signatures and Show summary . For those who, like me, tried the solution provided above and it didn't work. I found this article

Adding a Visual Studio toolbar button for a command that is only available as a keyboard shortcut

无人久伴 提交于 2019-11-30 22:48:33
This question relates to this ReSharper YouTrack issue . In Visual Studio 2010 with ReSharper 7.1.1 installed, if I go to Tools > Options > Environment > Keyboard, there is a command called ReSharper_SilentCleanupCode. I would like to bind this command to a toolbar button. This seems to be impossible using Tools > Customize > Commands because the only commands available within this dialog are for actions that already have an associated menu item. The particular ReSharper command I'm interested in (Silent Code Cleanup) doesn't appear in any menu, so it cannot be assigned to a toolbar button

How to Restore Navigate To Dialog in Visual Studio After Resharper Installation

女生的网名这么多〃 提交于 2019-11-30 02:40:12
After installing Resharper 7.1.2 for Visual Studio 2010, when I press Ctrl + , I no longer see the Navigate To dialog. Instead a Resharper dialog Recent Files appears. My question is, is there another key binding that I am not aware for the Navigate To dialog or how can I configure Resharper/VS to show the Navigate To dialog upon pressing Ctrl + , . In the Resharper options I have selected Visual Studio for the key bindings since that is what I am accustomed to, but for some reason this one has changed. Malice It sounds like you will need to remove the ReSharper keybinding and add the Visual

How to Restore Navigate To Dialog in Visual Studio After Resharper Installation

牧云@^-^@ 提交于 2019-11-29 00:17:50
问题 After installing Resharper 7.1.2 for Visual Studio 2010, when I press Ctrl + , I no longer see the Navigate To dialog. Instead a Resharper dialog Recent Files appears. My question is, is there another key binding that I am not aware for the Navigate To dialog or how can I configure Resharper/VS to show the Navigate To dialog upon pressing Ctrl + , . In the Resharper options I have selected Visual Studio for the key bindings since that is what I am accustomed to, but for some reason this one

ReSharper color identifiers screw up with Visual Studio 2012 dark theme

谁说我不能喝 提交于 2019-11-28 16:12:23
We're experiencing an annoying problem issues with ReSharper's color identifiers feature when Visual Studio 2012 is set to the built-in dark theme. With ReSharper's color identifiers disabled, the code looks fine: Then, we enable ReSharper's color identifiers: And now the code is completly unreadable: The curious thing, on a colleague's machine, the same code, with the same Visual Studio and ReSharper settings... looks right: We tried reinitializing both Visual Studio and ReSharper settings, disabling add-ons and extensions and other voodoos to no avail. Here are our setups: My add-ins - His

ReSharper color identifiers screw up with Visual Studio 2012 dark theme

懵懂的女人 提交于 2019-11-27 19:55:49
问题 We're experiencing an annoying problem issues with ReSharper's color identifiers feature when Visual Studio 2012 is set to the built-in dark theme. With ReSharper's color identifiers disabled, the code looks fine: Then, we enable ReSharper's color identifiers: And now the code is completly unreadable: The curious thing, on a colleague's machine, the same code, with the same Visual Studio and ReSharper settings... looks right: We tried reinitializing both Visual Studio and ReSharper settings,

Resharper's example code for explaining “Possible multiple enumeration of IEnumerable”

两盒软妹~` 提交于 2019-11-27 11:45:19
Sometimes Resharper warns about: Possible multiple enumeration of IEnumerable There's an SO question on how to handle this issue , and the ReSharper site also explains things here . It has some sample code that tells you to do this instead: IEnumerable<string> names = GetNames().ToList(); My question is about this specific suggestion: won't this still result in enumerating through the collection twice in the 2 for-each loops? CodeCaster GetNames() returns an IEnumerable . So if you store that result: IEnumerable foo = GetNames(); Then every time you enumerate foo , the GetNames() method is

Resharper&#39;s example code for explaining “Possible multiple enumeration of IEnumerable”

北慕城南 提交于 2019-11-26 15:36:51
问题 Sometimes Resharper warns about: Possible multiple enumeration of IEnumerable There's an SO question on how to handle this issue, and the ReSharper site also explains things here. It has some sample code that tells you to do this instead: IEnumerable<string> names = GetNames().ToList(); My question is about this specific suggestion: won't this still result in enumerating through the collection twice in the 2 for-each loops? 回答1: GetNames() returns an IEnumerable . So if you store that result:

ReSharper “Cannot resolve symbol” even when project builds

房东的猫 提交于 2019-11-26 12:36:25
My Tools: Visual Studio 2012 Ultimate + Update 1 ReSharper v7.1.25.234 My Solution Build Status: Build Successfully But when I install ReSharper and ReSharper code analysis is enable, many keywords of my code are red with this error: "Cannot resolve symbol XXX" Another picture of my project >> The ReSharper “CANNOT RESOLVE SYMBOL” errors are everywhere, but my project build process is successfully, and it works correctly. Additional Note: If I disable ReSharper Code Analysis, my project will be Normal, but I want to use ReSharper code analysis. I tried ReSharper → Options → General → Clear

ReSharper “Cannot resolve symbol” even when project builds

ぃ、小莉子 提交于 2019-11-26 02:39:43
问题 My Tools: Visual Studio 2012 Ultimate + Update 1 ReSharper v7.1.25.234 My Solution Build Status: Build Successfully But when I install ReSharper and ReSharper code analysis is enable, many keywords of my code are red with this error: \"Cannot resolve symbol XXX\" Another picture of my project >> The ReSharper “CANNOT RESOLVE SYMBOL” errors are everywhere, but my project build process is successfully, and it works correctly. Additional Note: If I disable ReSharper Code Analysis, my project