Questions tagged [resharper-8.0]

Use this tag for version specific questions about ReSharper 8.0 - the refactoring and productivity extension for Visual Studio by JetBrains. When using this tag also include the more generic [resharper] tag where possible.

ReSharper executes solution-wide static code analysis (error detection on-the-fly, without the need to compile), provides additional features for error correction, code completion, navigation, search, syntax highlighting, formatting, code generation and optimization, carries out 40 automated refactorings, and streamlines unit testing using NUnit and MSTest, among other features.

ReSharper 8 was released in july, 18th 2013 and add support for Visual Studio 2013 Preview while preserving compatibility with previous versions of the IDE, namely Visual Studio 2005, 2008, 2010 and 2012

105 questions
3
votes
2 answers

Resharper 8.0 in Visual Studio 2013

I've been using Resharper (v8.0.14.856) with VS2012 for some time now, but I've recently installed VS2013. However, Resharper does not appear in the menus for VS2013, or in the options (under Tools->Options). I've re-run the installer, and selected…
bornfromanegg
  • 2,826
  • 5
  • 24
  • 40
3
votes
1 answer

How can I install an old version of a ReSharper plugin?

I'm using ReSharper 8.0 in Visual Studio 2010. ReSharper 8.0 uses a NuGet-based Extension Manager for plugin management, which makes it very easy to find and install plugins, but this Extension Manager will only offer up the latest version of any…
AakashM
  • 62,551
  • 17
  • 151
  • 186
3
votes
1 answer

No razor syntax coloring/Unable to set breakpoints in razor Visual Studio 2013 Preview

I have recently installed Visual Studio 2013 preview a long with the ASP.NET and Web Tools for Visual Studio 2013 update. I have also got ReSharper 8.0 installed with it. Since installing it, and opening an Umbraco project which was created in…
JustinMoser
  • 545
  • 2
  • 6
  • 25
2
votes
1 answer

How can I indicate result ambiguity with Resharper CodeAnnotation attributes?

Using Resharper's code-annotation attributes, I'm trying to write a ContractAnnotation attribute for a method that will always return null if the input is null, but will return either null or a value if the input is not null. Something…
Ben Jenkinson
  • 1,806
  • 1
  • 16
  • 31
2
votes
0 answers

Extract Interface from .NET Framework Class Using Resharper

Recently, I've been having to wrap a lot of dot net framework classes for better unit test coverage. Instead of doing this by hand, I was wondering if there was a way to extract an interface from an existing system class in the dot net framework…
Chris Lees
  • 2,140
  • 3
  • 21
  • 41
2
votes
3 answers

ReSharper 8.2.1 not working

I've recently tried to install ReSharper 8.2.1 on my new computer for Visual Studio 2013. The install process succeeds but when I open Visual studio, there is no ReSharper Tab at the top. In Tools -> Options, ReSharper is there and i can click the…
LaggKing
  • 202
  • 2
  • 9
2
votes
1 answer

Resharper quickfix highlighter offset issue

I've got a custom plugin which uses a quickfix and the IDocument.InsertText() method. it inserts a comment at the end of the line of code with the highlighter that was selected but this messes up the position of the rest of the highlighters from…
Mr Boss
  • 472
  • 4
  • 13
2
votes
2 answers

Is Discretion (doing nothing) the better part of valor (making a guess) in this case?

R# tells me that a var is never assigned to. I'm thinking, "if that's the case, just get rid of it - remove the declaration." But R#'s suggestions are different and varied: Which knob should I turn, or should I just remain flatfooted and palely…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
2
votes
1 answer

Resharper Custom Plugin Severity Options

Hello I've been working on a custom ReSharper plugin which is almost done. It highlights specified code elements with [StaticSeverityHighlighting(Severity.WARNING, "NonLocalizedStrings")]. I would like to be able to set the severity just like…
Mr Boss
  • 472
  • 4
  • 13
2
votes
0 answers

Function instead of function in Resharper

I have EcmaScript.js in my scripts folder and every time I write 'fun' and expect Resharper to complete with 'function' it writes 'Function' instead since it's in the EcmaScript script. How can I remove the 'Function' entry from intellisense or make…
Titus Popovici
  • 149
  • 2
  • 11
2
votes
1 answer

Agent Mulder, Resharper 8.1, VS 2013 and StructureMap

I have the above setup, and DI is working just well in code. Unfortunately Agent Mulder is not showing the visual cues. I installed it through Extension Manager. Is this all that I need to do? Thanks, D.
2
votes
1 answer

How to change built-in templates

Is there a way to change the built-in templates? Concrete example: I want to change the template that is used when creating an event invocator. I want to change the visibility of the generated method as well as the the name.
Daniel Hilgarth
  • 171,043
  • 40
  • 335
  • 443
2
votes
2 answers

Resharper 8 and vendor prefixes?

I use Resharper 8 I have a css stylesheet file which has this class : .textShadow { text-shadow: 0px 1px 2px #5b5b5b; } When I hover it there is a suggestion (R#8 suggestion ) so when I click on it it says : And so ,it added the vendor…
Royi Namir
  • 144,742
  • 138
  • 468
  • 792
1
vote
1 answer

ReSharper 8.2.3 crashes during startup of Visual Studio 2008

When I start up my Visual Studio 2008 with ReSharper 8.2.3 using the /Log switch, I can see in the produced log-file, that several exceptions are thrown by ReSharper. I cannot use VS to change any files (typing is not deactivated, but it ignores any…
froeschli
  • 2,692
  • 2
  • 28
  • 55
1
vote
1 answer

How to auto generate poco class (object) from a method parameters?

Is there any short way of auto generating poco class from an existing method with parameters? public void RegisterUser(string userName, string fullName, string tel, string mobile, string website, string address, string blah){ //-- } from…
akd
  • 6,538
  • 16
  • 70
  • 112