ReSharper is a refactoring and productivity extension by JetBrains that extends native functionality of Microsoft Visual Studio 2003, 2005, 2008, 2010 and 2012.

learn more… | top users | synonyms

0
votes
0answers
13 views

Why does Resharper find fault with its own fix?

I had this code: report_parms = { GUID: @Model.GUID; . . . ...and Resharper suggested I change it to this: GUID: "@if (Model != null) { @Model.GUID } ", ...
2
votes
2answers
35 views

Resharper and Moq Returns method

I have a simple mocked class longRunningLibrary I want the method Returns from Moq to output some text ("This method...") which you can see in the following part of code : _longRunningLibrary ...
1
vote
0answers
26 views

Resharper - Go To Implementation listing reference twice

In one of my solutions, when I right click a symbol and choose "Go To Implementation" for an object defined in one of the other solution projects, it lists the reference twice and forces me to choose ...
0
votes
1answer
13 views

Custom Plugins in Resharper

I ve been trying this for sometime now but unable to get any luck in figuring out how to write custom plugins for a few rules that currently do not exist in R#. At most I want to know whether it's if ...
4
votes
2answers
94 views

Better ways for type casting in C#

Case 1: we can convert type by the following ways ..... First way int someInt = 10; double someDouble = (double) someInt; Same thing in second way int someInt = 10; double ...
0
votes
1answer
23 views

Forcing Single line comments to be output to javascript with coffeescript

I'm still fairly new to coffeescript. What I would like to do, is be able to force single line comments to be put into the generated javascript. This is so I can load script references with the ...
1
vote
0answers
19 views

Accessing selected code using ReSharper SDK

Is there any way to recognize and extract a chunk of code that has been highlighted by clicking and dragging using the ReSharper SDK?
0
votes
1answer
23 views

Resharper Ajax setting unsafe header

I'm getting a javascript exception from something being set up in ResharperAjax.cs, but can't figure out how to get around it The lines that seem to be causing the issue in ResharperAjax.cs are: ...
0
votes
2answers
24 views

How to find uncommented public methods using Resharper

I am using Resharper 7.1 with Visual Studio 2010. Is there a way to find all uncommented (without method summary and parameter descriptions) public methods through the entire solution?
0
votes
0answers
23 views

Instantiate a new object using ReSharper API

How would I add the following line of code to my class using the ReSharper SDK? (I'm writing a plugin) ExObj o = new ExObj(string dummy, Example whoKnows);
1
vote
2answers
116 views

Synchronize collections: ReSharper “Implicitly captured closure”

I implemented this extension method to synchronize a collection from another that can be of different type: public static void Synchronize<TFirst, TSecond>( this ICollection<TFirst> ...
0
votes
0answers
46 views

Resharper 7.1 error message “Invalid control type”

I have this HTML code <ajaxtoolkit:collapsiblepanelextender runat="server" id="cpePresentata" targetcontrolid="panPresentata" expandcontrolid="imgHideShowPresentata" ...
0
votes
0answers
22 views

Does Resharper tell me a css class is unknown because it's on a CDN?

Resharper tells me, "Unknown css class 'container-fluid" for this line in my site's _SiteLayout.cshtml file: <header class="container-fluid">" I do have this in my <head> section: ...
2
votes
2answers
40 views

Why does a CSS hsl assignment require a fallback color?

Resharper told me "requires fallback color" and added (when I acquiesced), the first color here: color: #ff8000; color: hsl(30, 100%, 50%); So apparently this first assigns #ff8000 to the ...
0
votes
1answer
18 views

I need a way to remove “dead pages” from an ASP.NET 2.0-4.0 site

I've taken over about 30 projects at a company. Through the years the guy who ran things worked directly on the server. There's tons of dead pages that cause Visual Studio to break. I have JetBrains ...
2
votes
0answers
24 views

Brace settings for methods and properties with Resharper

How can I configure Resharper so that it places the opening brace for methods on the next line but places the opening brace for properties on the same line? Resharper doesn't seem to be able to ...
0
votes
1answer
52 views

ReSharper/Linq error: Access to modified closure

In a validation .cs file on my ASP MVC 3 site, I am trying to run a quick check against the database for the existence of an agent ID number the user has entered in. However, ReSharper is identifying ...
5
votes
2answers
130 views

Gray out logging code using ReSharper

Is it possible to use ReSharper to gray out useful but bloaty code using ReSharper? For example, when I want to add verbose logging it would be good to make the functional code stand out around the ...
1
vote
1answer
29 views

List untested methods with Visual Studio or ReSharper

Let's just say that once upon a time you had a nice tidy .NET code base with full test coverage, and it's since evolved a bit, and while all the existing tests still pass, there is a fair amount of ...
0
votes
1answer
26 views

Resharper 7.1 messing up Visual Studio 2012 preview feature

I've installed Resharper 7.1, and I'm getting some strange behaviour When navigating through code using F12 (go to definition), VS 2012 was usually displaying the preview tab on the upper right hand ...
1
vote
1answer
31 views

VS2012 JavaScript IntelliSense for “var” not working?

According to the MSDN documentation for the <var> XML Documentation Comment, I should be able to decorate a variable so that the intellisense knows what type the variable is. It's not working ...
0
votes
1answer
28 views

Custom views folder with resharper IntelliSense

Can I setup view storage folder location (or to be more specific: storage convention, e.g. each project: /Bindings/Views) so that Resharper would know where to find them and display correct ...
3
votes
2answers
51 views

Best Practice: Resharper warnings - Should they all be resolved?

The question: Should I take the time to fix Resharper warnings? For example, The Namespace does not match the file location. I have a hundred of these in a fairly large project. It's going to take ...
0
votes
0answers
24 views

Silverlight unit testing with Resharper 6.1 - non UI issue

I've a Silverlight 5 app using WCF RIA services with Entity Framework (db first) and I want to run a db clean up process to reset the db state before running each test. I've a small Perl script that ...
2
votes
0answers
42 views

I'd like a warning about circular namespace dependency

I can arange my code in assemblies to enforce proper namespace dependancies: Company.Product.Domain assembly Company.Product.DataAccessLayer assembly -References Company.Product.Domain ...
1
vote
2answers
40 views

In ReSharper 7, is it possible to extend syntax highlighting of strings?

ReSharper has a fancy feature that highlights format variables in e.g. string.Format(): Now, I have written an extension to format strings fluently like: public static string FormatWith(this ...
0
votes
1answer
48 views

Escape bug from special formatting

In Visual Studio 2012 using ReSharper, how can I prevent the word bug in a comment from being formatted differently than the rest of the comment? Here is an example:
1
vote
1answer
16 views

How can DateTimeFormatInfo.CurrentInfo be null

I have the following code in my C# application. DateTimeFormatInfo.CurrentInfo.DayNames ReSharper 7.1.1 is highlighting the fact that the DateTimeFormatInfo.CurrentInfo could cause a null reference ...
0
votes
2answers
72 views

Running unit tests for typescript in VS

I've found couple of examples of running unit tests for typescript. All of them are based on referencing both ts and js file like /// <reference path="../Calc.ts" /> /// <reference ...
1
vote
2answers
34 views

Can ReSharper always jump to view's .cshtml in ASP.NET MVC project instead of asking me?

I'm talking about this menu, which appears when I press Ctrl+B: In 99.99% I want to see a .cshtml, could it be made a default option (so that resharper would open the file without asking)?
2
votes
1answer
40 views

Is it possible to actually debug 3rd party code using the source decompiled with dotPeek?

I use VS2012. I know how to debug the 3rd party code using the .NET Reflector and always used it. I was wondering whether this is possible with dotPeek from JetBrains or with R# itself without the ...
0
votes
0answers
40 views

Find unused public functions for a particular class in a solution

Further to this question, Find unused public functions, is there a way to limit this to a particular namespace, or class?
5
votes
2answers
79 views

VS2012: Ctrl+F now synchronizes with Ctrl+Shft+F

In Visual Studio 2012, I want different context for Ctrl+F and Ctrl+Shift+F. However, when I enter data in the Ctrl+F dialog (in the upper right corner of the text editor), it synchronizes that ...
1
vote
1answer
49 views

Reset Visual Studio default settings while retaining changes made by Resharper

I have a machine on which I had to use VS2010 for a project. I installed the project's VS settings (color scheme, formatting etc.) so that I'd be using the same environment as the other developers on ...
0
votes
1answer
22 views

resharper disable for c# .cs files

is it possible to only enable resharper for javascript and css files? I don't want it inspecting my c# files as it's driving me nuts with it's styling and and at times somewhat controversial ...
0
votes
1answer
24 views

Comments from Interfaces to Implementations (resharper)

Is it possible to write all the comments from interface fields/methods to their implementations via resharper or another tool? I know this is working when implementing an interface to a fresh class, ...
0
votes
1answer
29 views

Is there a way to customize a rule in resharper similar to fxcop?

I am a newbee to Resharper and found that this tool has great potential compared to any other code analysis tool. But I was just wondering if we can integrate a custom rule DLL into resharper just as ...
0
votes
1answer
65 views

Visual Studio 2012 + Resharper 7.1 = slooooow, what to do?

I used to have R# 6 with VS2010 and it was great. Now I installed yesterday R# 7.1 trial and my VS 2012 became slow to the point I really want to uninstall R# despite all the heartache involved with ...
3
votes
2answers
142 views

Go to declaration does not work in resharper on vs2010/2012 on win8 64 bit?

I have a User class which I created. However when i CTRL+left mouse click on it's instances , it suppose to go to the class "User" itself : But it doesn't. ( it should. in vs2010 it works). But ...
0
votes
0answers
44 views

VS tries to compile Resharpers decompiled code

Sometimes when I have looked at decompiled code using Resharper's decompiler and then try to build my project, VS tries to compile the decompiled code that Resharper generated for me. When I look at ...
0
votes
1answer
64 views

Is there any way to turn off Resharper 7 auto formatting?

This has been driving me crazy, I've tried Resharper support with no solution, but wondered if anyone out there has experienced this. When I update an existing method and hitting the curly brace or ...
-1
votes
1answer
51 views

Is it possible to show readonly field value on hover in Visual Studio?

I have private readonly string field in my C# class. Is it possible to show field value on hover? private readonly string _someValue = "123123123"; And when I use this in code I want to hover over ...
2
votes
1answer
36 views

Warning when method is too long?

I'm looking for a way to create a rule for StyleCop, Resharper, Visual Studio itself or at least a add in which show me a visual warning if a method is longer than X characters / longer than X lines. ...
1
vote
1answer
66 views

Using a Dictionary with PredicateBuilder?

I have a Dictionary<string,object> of search terms and values. In this case the term is the key. An example is: var args = new Dictionary<string,object>() {{"name","joe"}, ...
1
vote
1answer
26 views

Manually show VS tooltip when Resharper error prevents intellisense on hover

In Visual Studio, normally when I hover over a variable it will display the type while editting code and the value while debugging. How it should look when you hover over tablename: Resharper ...
1
vote
0answers
92 views

How to remove redundant codes?

Am not sure I'm asking in the right place. I am using the Open Xml Productivity Tool 2.0 and after generating codes, I usually have so much redundant code like: Bold bold1 = new Bold(); Bold bold2 = ...
1
vote
0answers
21 views

ReSharper 7: To property with backing field - how to specify where to declare the field?

How does one tell ReSharper not to declare backing field where first private field is, but just in place, where property is declared, just above the property declaration?
3
votes
0answers
62 views

Prevent Resharper warning when declaring return of non-empty sequence via Contract.Ensures()?

I'm using Code Contracts to declare that a property returns a non-null, non-empty sequence of strings like so: public IEnumerable<string> Filenames { get { ...
0
votes
0answers
37 views

How to generate new poco stub

I'm looking for a resharper or visual studio helper macro that will instantiate a poco with all of its public properties set to a default value. I want this to be generic and work for any type. Is ...
-3
votes
0answers
56 views

Is there any extension or plugin to autoformat code in visual studio 2012? [closed]

I have tried ReSharper, but couldn't get it to format the way I wanted it to (check previous question if curious). I want the code to auto format as you code or maybe after you finish the the ...

1 2 3 4 5 39