Wednesday, November 17, 2010

Windows Software I can't live without


Honourable mention:

Visual Studio 2012:
  • Visual Studio 2012 Update 1 (should be downloaded automatically from within VS 2012)
  • ASP.NET and Web Tools 2012.2
  • ReSharper 7.1, if installed using these steps:
    1. Set VS keyboard shortcuts to C# and reset to defaults.
    2. Set R# keyboard shortcuts to Visual Studio style.
    3. Set The following R# options:
      • Code Editing -> C# -> Formatting Style -> Line Breaks and Wrapping -> Line Wrapping -> Wrap long lines: untick
      • Code Editing -> C# -> Formatting Style -> Other -> Modifiers -> Use explicit private modifier: untick
      • Code Editing -> C# -> Formatting Style -> Other -> Modifiers -> Use explicit internal modifier: untick
      • Code Editing -> C# -> Formatting Style -> Other -> Align Multiline Constructs -> Array, object and collection initializer: untick
      • Tools -> External Sources -> Navigation to Sources: tick all boxes
    4. Run the following code in the Package Manager Console:
      ($DTE.Commands | ? { $_.Name -eq 'ReSharper.ReSharper_DuplicateText' }).Bindings = @()
      ($DTE.Commands | ? { $_.Name -eq 'Edit.PasteParameterTip' }).Bindings = @()
      ($DTE.Commands | ? { $_.Name -eq 'ReSharper.ReSharper_IntroduceField' }).Bindings = @()
      

0 comments:

Post a Comment