Quantcast
Channel: YouTrackReSharper (RSRP) - Bug and Issue Tracker
Viewing all 106942 articles
Browse latest View live

RSRP-383017: ASP.NET Reformat Code breaks Template Block markup

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Aug 15, 2013 7:02:09 AM
Updated Jul 18, 2016 1:22:54 PM
Subsystem Code Style - Formatter
Assignee Dmitry Osinovsky (Dmitry.Osinovsky)
Priority Critical
State Open
Type Bug
Affected versions 8.0, 7.1.3
Fix version 2016.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
When Reformat Code encounters the bind template block, it always inserts a newline and starts the code on the next line. The template block looks like this <%# DoFunction() %>, even when this block is encased in single quotes, e.g.:
Width='<%# Container.DataItem("ImageWidth") %>'
Turns into:
Width='<%# 
Container.DataItem("Width") %>'
It does not do this for the Response.Rewrite block <%= %>

RSRP-459835: 'Find results' - duplicating the field Search Target

$
0
0
Reporter Maltseva Ekaterina (Maltseva.Ekaterina) Maltseva Ekaterina (Maltseva.Ekaterina)
Created Jul 18, 2016 10:07:22 AM
Updated Jul 18, 2016 1:58:25 PM
Subsystem Navigation - Search (Find Usages)
Assignee Alexander Ulitin (alexander.ulitin)
Priority Major
State Submitted
Type Bug
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
Open R# solution
In Solution Explorer find 'MSTestTestRowTask' and open one of the .cs file
In code select MSTestTestRowTask and open 'Find Usage'
In 'Find results' window you'll get duplicating the field Search Target (attach)

RSRP-446679: Support Running Unit Test for xproj

$
0
0
Reporter Albert Weinert (der-albert.com) Albert Weinert (der-albert.com)
Created Aug 13, 2015 5:04:23 AM
Updated Jul 18, 2016 5:50:34 PM
Subsystem Unit Testing
Assignee Matt Ellis (citizenmatt)
Priority Critical
State Submitted
Type Bug
Affected versions 9.2
Fix version 2016.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharper 9.2 RC currently seems not running unittest which are written in the new project system.

It displays all the test, says these are inconclusive (on the class), and tell me that it can't find the compiled test assembly (or one of it's dependency).

This project uses NUnit 2.6.4 as testing framework, and has only DNX451 as target framework in the project.json.

Also i switch to produce output on builds, don't work.

Sample Project: https://github.com/DerAlbertCom/unirest-net/tree/dnxbuild

RSRP-459838: Unit test runner support for xproj (.Net Core 1.0.0)

$
0
0
Reporter Sylvain Slaton (sylvain.slaton@capitalone.com) Sylvain Slaton (sylvain.slaton@capitalone.com)
Created Jul 18, 2016 5:50:34 PM
Updated Jul 18, 2016 6:16:39 PM
Subsystem Unit Testing
Assignee Eugene Strizhok (Eugene.Strizhok)
Priority Normal
State Submitted
Type Bug
Affected versions 2016.3, 9.2.1, 9.2, 9.1.3, 10.0, 10.0.1, 10.0.2, 2016.1, 2016.2, 9.0, 9.1, 2016.1.1, 2016.1.2
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharper still does not support running Unit Tests (XUnit or NUnit) for .Net Core 1.0.0 projects.

This is somewhat of a duplicate of https://youtrack.jetbrains.com/issue/RSRP-446679 but I'm creating this new issue and tagging it with all affected Resharper versions for more visibility. As you can see from comments on the previous issue, this is a show stopper and people really this fixed as soon as possible. Now that .Net Core is officially released, the community would really appreciate this being seen as a top necessity. In the current state, we cannot make use of Resharper's test runner / Unit Test Explorer and dotCover integration for .Net Core projects.

Note: EAP8 doesn't even seem to recognize XUnit unit tests anymore

RSRP-459625: Symbol completion is extremely slow because of some loading all the time

$
0
0
Reporter Sebastian Krysmanski (manski) Sebastian Krysmanski (manski)
Created Jul 4, 2016 9:04:02 AM
Updated Jul 19, 2016 2:38:52 AM
Subsystem Code Analysis - C#
Assignee Dmitry Ivanov (daivanov)
Priority Normal
State Submitted
Type Bug
Affected versions 2016.2, 2016.1.2
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion VS 2015 RTM
For me, symbol completion (i.e. Ctrl + Space) often takes lots of time because R# seems to reload stuff somehow. This is hard to explain and better shown in a video:

https://www.youtube.com/watch?v=DHKQMn-5c4M

Note: Don't be confused by all the white space. I just moved all other code out of the way for secrecy reasons.

Note 2: I've witnessed this in R# 2016.1.2 and 2016.2 EAP 6 (which I'm using in this video).

RSRP-459839: Incorrect analysis on T | undefined

$
0
0
Reporter NN __ (NN) NN __ (NN)
Created Jul 19, 2016 2:55:44 AM
Updated Jul 19, 2016 2:55:44 AM
Subsystem TypeScript
Assignee Anton Lobov (Anton.Lobov)
Priority Normal
State Submitted
Type Bug
Affected versions 2016.2
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
This code is correct.
keys.shift() will never return undefined since it has one element.
Resharper should not warn about problems here.

    var obj: any = {};
    var keys = ["A"];
    if (keys.length) {
        if (obj !== undefined) {
            obj = obj[keys.shift()];
        }
    }

Whereas this code should be warned:

    var obj: any = {};
    var keys : string[] = [];
    if (keys.length) {
        if (obj !== undefined) {
            obj = obj[keys.shift()]; // Always returns undefined since array is empty !
        }
    }

RSRP-459837: HTML intellisense for display style does not include inline-block anymore in EAP8

$
0
0
Reporter Maria Pleskunina (Maria.Pleskunina) Maria Pleskunina (Maria.Pleskunina)
Created Jul 18, 2016 11:50:42 AM
Updated Jul 19, 2016 4:13:05 AM
Subsystem Html
Assignee Vladimir Belousov (Vladimir.Belousov)
Priority Major
State Submitted
Type Bug
Affected versions 2016.2
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
Start typing
<div style="display:

you get your popup list. It doesn't include inline-block. I can still type this
<div style="display:inline-block">

RSRP-446619: Quadruple [Ctrl]+[T] to search whole solution for any text

$
0
0
Reporter Dan Cumings (Dan.Cumings) Dan Cumings (Dan.Cumings)
Created Aug 11, 2015 10:52:39 AM
Updated Jul 19, 2016 4:13:23 AM
Subsystem Navigation - Search (Find Usages)
Assignee Razmik Seysyan (razmik)
Priority Major
State In Progress
Type Feature
Affected versions No Affected versions
Fix version 2016.2
Fixed In Version ReSharper 2016.2 EAP 9
VsVersion All Versions
Formerly Extension:
https://resharper-plugins.jetbrains.com/packages/ReSharper.GoToWord/
This was one of the more useful extensions of Resharper. Unfortunately there has been little to no activity.
The only current option is to use Ctrl + Shift + F, which can be difficult to navigate.

RSRP-453699: 'Merge conditional expression' mistakenly inserts ?. after non-nullable type

$
0
0
Reporter Vladimir Reshetnikov (nikov) Vladimir Reshetnikov (nikov)
Created Feb 10, 2016 2:03:57 PM
Updated Jul 19, 2016 4:13:56 AM
Subsystem Code Analysis - C#
Assignee Alexander Shvedov (shvedov)
Priority Normal
State Submitted
Type Bug
Affected versions 10.0.2
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion VS 2015 RTM
using System;

class C
{
int? GetYear(DateTime x)
{
return x == null ? (int?) null : x.Year; // Invoke 'Merge conditional' QF
}
}

ACTUAL:

        return x?.Year;

EXPECTED:

        return x.Year;

RSRP-459840: JsonSchemaSelectorMonitor.DropdownOnLostFocus locks Visual Studio on downloading the schema

$
0
0
Reporter Sergey Kuks (coox) Sergey Kuks (coox)
Created Jul 19, 2016 4:20:26 AM
Updated Jul 19, 2016 4:25:37 AM
Resolved Jul 19, 2016 4:25:37 AM
Subsystem TypeScript
Assignee Anton Lobov (Anton.Lobov)
Priority Show-stopper
State Duplicate
Type Bug
Affected versions No Affected versions
Fix version 2016.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
Thread #1 • 179 704 ms
83,99% SubclassWndProc • 150 934 ms • MS.Win32.HwndSubclass.SubclassWndProc(IntPtr, Int32, IntPtr, IntPtr)
82,60% MoveNext • 148 438 ms • Microsoft.VisualStudio.JSON.Package.Schema.VsJSONDocumentLoader+<ComputeGlobalEntries>d__27.MoveNext
82,60% [Native code] • 148 430 ms
42,50% <CalculateInitialSchemaCacheEntryReference>b__0 • 76 368 ms • Microsoft.VisualStudio.JSON.Package.Schema.ActiveJSONSchema+<>c__DisplayClass12_0.<CalculateInitialSchemaCacheEntryReference>b__0(Object, GlobalSchemaEntriesChangedEventArgs)
42,50% CalculateInitialSchemaCacheEntryReferenceInternal • 76 368 ms • Microsoft.VisualStudio.JSON.Package.Schema.ActiveJSONSchema.CalculateInitialSchemaCacheEntryReferenceInternal
42,50% [Native code] • 76 368 ms
42,50% OnSchemaChanged • 76 368 ms • Microsoft.VisualStudio.JSON.Package.Schema.DropdownMargin.JSONSchemaDropdown.OnSchemaChanged(Object, EventArgs)
42,50% SetSelectedIndex • 76 368 ms • Microsoft.VisualStudio.JSON.Package.Schema.DropdownMargin.JSONSchemaDropdown.SetSelectedIndex(Int32)
42,50% DisableComboDropdownWhilePerformingAction • 76 368 ms • Microsoft.VisualStudio.JSON.Package.Schema.DropdownMargin.JSONSchemaDropdown.DisableComboDropdownWhilePerformingAction(Action)
42,50% <SetSelectedIndex>b__0 • 76 368 ms • Microsoft.VisualStudio.JSON.Package.Schema.DropdownMargin.JSONSchemaDropdown+<>c__DisplayClass34_0.<SetSelectedIndex>b__0
42,50% SetValue • 76 368 ms • System.Windows.DependencyObject.SetValue(DependencyProperty, Object)
42,43% <LoadHandler>b__5 • 76 246 ms • JetBrains.PsiFeatures.VisualStudio.SinceVs14.TextControl.Json.JsonSchemaSelectorMonitor+<>c__DisplayClass9.<LoadHandler>b__5(Object, TextChangedEventArgs)
42,43% ExecuteOrQueue • 76 246 ms • JetBrains.Threading.ReentrancyGuard.ExecuteOrQueue(String, Action, TaskPriority)
42,43% Execute • 76 246 ms • JetBrains.Threading.ReentrancyGuard.Execute(String, Action)
42,43% <LoadHandler>b__6 • 76 246 ms • JetBrains.PsiFeatures.VisualStudio.SinceVs14.TextControl.Json.JsonSchemaSelectorMonitor+<>c__DisplayClass9+<>c__DisplayClassb.<LoadHandler>b__6
42,43% DropdownOnLostFocus • 76 246 ms • JetBrains.PsiFeatures.VisualStudio.SinceVs14.TextControl.Json.JsonSchemaSelectorMonitor.DropdownOnLostFocus(Object, ITextControl)
42,43% TryLocateJsonSchema • 76 246 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchemaManager.TryLocateJsonSchema(String, FileSystemPath)
42,43% TryDownloadJsonSchema • 76 246 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchemaManager.TryDownloadJsonSchema(String, FileSystemPath)
39,97% JsonSchema..ctor • 71 820 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema..ctor(IObjectLiteral, String, ISchemaDownloader, IEnumerable[ICustomJsonContextProvider], FileSystemPath)
39,97% ReadConstraints • 71 820 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.ReadConstraints(IObjectLiteral)
39,95% LoadReferencedConstraints • 71 786 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.LoadReferencedConstraints(IJavaScriptExpression)
39,45% ReadAllText • 70 887 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.SchemaDownloaderImpl.ReadAllText(String, FileSystemPath, FileSystemPath&)
39,40% Download • 70 798 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.SchemaDownloaderImpl.Download(Uri)
39,40% GetOrDownloadFile • 70 798 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.SchemaDownloaderImpl.GetOrDownloadFile(Uri)
39,37% ShouldUpdate • 70 750 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.SchemaDownloaderImpl.ShouldUpdate(FileSystemPath, Uri, Boolean)
39,27% GetResponse • 70 578 ms • System.Net.HttpWebRequest.GetResponse
►2,46% ReadAllText • 4 427 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.SchemaDownloaderImpl.ReadAllText(String, FileSystemPath, FileSystemPath&)
►40,10% OnGlobalSchemaEntriesChanged • 72 062 ms • Microsoft.VisualStudio.JSON.Package.Schema.DropdownMargin.JSONSchemaDropdown.OnGlobalSchemaEntriesChanged(Object, GlobalSchemaEntriesChangedEventArgs)
15,37% [Native or optimized code] • 27 620 ms
0,64% 18 functions hidden • 1 150 ms total

RSRP-459487: JSON schema dropdown list has a performance issue with R# installed

$
0
0
Reporter Kirill Falk (kfalk) Kirill Falk (kfalk)
Created Jun 23, 2016 10:35:02 AM
Updated Jul 19, 2016 4:25:37 AM
Resolved Jul 1, 2016 8:06:57 AM
Subsystem JavaScript
Assignee Anton Lobov (Anton.Lobov)
Priority Show-stopper
State Fixed
Type Bug
Affected versions 2016.2
Fix version 2016.2
Fixed In Version ReSharper 2016.2 EAP 7
VsVersion All Versions
33.76 %   PreTranslateInput  •  9,069 ms  •  Microsoft.VisualStudio.Platform.WindowManagement.WindowManagerService.PreTranslateInput(MSG&, Boolean)
33.34 % <LoadHandler>b__5 • 8,955 ms • JetBrains.PsiFeatures.VisualStudio.SinceVs14.TextControl.Json.JsonSchemaSelectorMonitor+<>c__DisplayClass9.<LoadHandler>b__5(Object, TextChangedEventArgs)
33.34 % ExecuteOrQueue • 8,955 ms • JetBrains.Threading.ReentrancyGuard.ExecuteOrQueue(String, Action, TaskPriority)
33.34 % Execute • 8,955 ms • JetBrains.Threading.ReentrancyGuard.Execute(String, Action)
33.34 % <LoadHandler>b__6 • 8,955 ms • JetBrains.PsiFeatures.VisualStudio.SinceVs14.TextControl.Json.JsonSchemaSelectorMonitor+<>c__DisplayClass9+<>c__DisplayClassb.<LoadHandler>b__6
33.34 % DropdownOnLostFocus • 8,955 ms • JetBrains.PsiFeatures.VisualStudio.SinceVs14.TextControl.Json.JsonSchemaSelectorMonitor.DropdownOnLostFocus(Object, ITextControl)
33.31 % TryLocateJsonSchema • 8,948 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchemaManager.TryLocateJsonSchema(String, FileSystemPath)
27.98 % TryDownloadJsonSchema • 7,515 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchemaManager.TryDownloadJsonSchema(String, FileSystemPath)
14.48 % ReadAllText • 3,889 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.SchemaDownloaderImpl.ReadAllText(String, FileSystemPath, FileSystemPath&)
14.40 % Download • 3,868 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.SchemaDownloaderImpl.Download(Uri)
14.40 % GetOrDownloadFile • 3,868 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.SchemaDownloaderImpl.GetOrDownloadFile(Uri)
8.21 % ShouldUpdate • 2,205 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.SchemaDownloaderImpl.ShouldUpdate(FileSystemPath, Uri, Boolean)
8.11 % GetResponse • 2,179 ms • System.Net.HttpWebRequest.GetResponse
►0.10 % WriteAllText • 26 ms • JetBrains.Util.FileSystemPathOpenEx.WriteAllText(FileSystemPath, String, Encoding)
5.96 % GetResponse • 1,600 ms • System.Net.HttpWebRequest.GetResponse
0.23 % 2 functions hidden • 62 ms total
0.08 % CatchSilent • 21 ms • JetBrains.Util.Logging.Logger.CatchSilent(Func[TValue])
0.08 % <ReadAllText>b__0 • 21 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.SchemaDownloaderImpl+<>c__DisplayClass7.<ReadAllText>b__0
0.08 % ReadAllText2 • 21 ms • JetBrains.Util.FileSystemPathOpenEx.ReadAllText2(FileSystemPath, Encoding)
0.08 % ReadStream • 21 ms • JetBrains.Util.FileSystemPathOpenEx.ReadStream(FileSystemPath, Func[StreamT])
0.08 % 2 functions hidden • 21 ms total
13.11 % JsonSchema..ctor • 3,522 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema..ctor(IObjectLiteral, String, ISchemaDownloader, IEnumerable[ICustomJsonContextProvider], FileSystemPath)
13.11 % ReadConstraints • 3,522 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.ReadConstraints(IObjectLiteral)
7.19 % LoadReferencedConstraints • 1,931 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.LoadReferencedConstraints(IJavaScriptExpression)
7.19 % ReadConstraints • 1,931 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.ReadConstraints(IObjectLiteral)
7.19 % CreateAllOfConstraint • 1,931 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.CreateAllOfConstraint(IJavaScriptExpression)
7.19 % GetConstraintArray • 1,931 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.GetConstraintArray(IJavaScriptExpression)
7.19 % ReadConstraints • 1,931 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.ReadConstraints(IObjectLiteral)
7.09 % LoadReferencedConstraints • 1,905 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.LoadReferencedConstraints(IJavaScriptExpression)
7.07 % ReadConstraints • 1,898 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.ReadConstraints(IObjectLiteral)
7.07 % ParseObjectConstraint • 1,898 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.ParseObjectConstraint(IObjectLiteral)
7.07 % ReadConstraints • 1,898 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.ReadConstraints(IObjectLiteral)
7.07 % ParseArrayConstraint • 1,898 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.ParseArrayConstraint(IObjectLiteral)
7.07 % ReadConstraints • 1,898 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.ReadConstraints(IObjectLiteral)
►5.05 % LoadReferencedConstraints • 1,357 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.LoadReferencedConstraints(IJavaScriptExpression)
►2.02 % CreateOneOfConstraint • 541 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.CreateOneOfConstraint(IJavaScriptExpression)
►0.02 % CalculatePathForNode • 7 ms • JetBrains.ReSharper.Psi.JavaScript.Services.Json.JsonSchemaUtil.CalculatePathForNode(ITreeNode, Boolean)
►0.10 % ParseObjectConstraint • 26 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.ParseObjectConstraint(IObjectLiteral)
►4.85 % ParseObjectConstraint • 1,303 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.ParseObjectConstraint(IObjectLiteral)
►0.96 % CreateOneOfConstraint • 257 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.CreateOneOfConstraint(IJavaScriptExpression)
►0.11 % CreateAllOfConstraint • 30 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.JsonSchema.CreateAllOfConstraint(IJavaScriptExpression)
►0.39 % ParseJsonConfigExpression • 104 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.TypeScript.TsProjectPropertiesProvider.ParseJsonConfigExpression(String)
►5.23 % ShouldUpdate • 1,405 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Services.Json.Schema.SchemaDownloaderImpl.ShouldUpdate(FileSystemPath, Uri, Boolean)
0.11 % 2 functions hidden • 29 ms total
►0.03 % ReleaseReadLock • 7 ms • JetBrains.Application.Threading.ContentModelReadWriteLock.ReleaseReadLock
0.02 % get_ArrayElements • 7 ms • JetBrains.ReSharper.Psi.JavaScript.Impl.Tree.ArrayLiteral.get_ArrayElements

RSRP-459836: Marker Bar not updated

$
0
0
Reporter Sebastian Krysmanski (manski) Sebastian Krysmanski (manski)
Created Jul 18, 2016 10:30:51 AM
Updated Jul 19, 2016 4:50:02 AM
Resolved Jul 19, 2016 4:50:02 AM
Subsystem Platform - VS Integration
Assignee Denis Korneev (Denis.Korneev)
Priority Critical
State Fixed
Type Bug
Affected versions 2016.2
Fix version 2016.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
I'm currently seeing R# (2016.2 EAP 8) not updating the marker bar properly. I have a C# file that contained some errors and these error were correctly shown in the marker bar. I then fixed the errors but they remained visible in the marker bar (sometimes with error description popup and sometimes without). The text editor doesn't show any errors (as there are none).

I tried to reproduce this but couldn't figure out what triggers this problem.

I'm running VS 2015 Update 3, if it matters.

Update: I could reproduce it (not a 100% but close):



I'm guessing this happens when there are multiple "problems" on the same line. In the example R# complained both that the class doesn't have a proper visibility modifier as well as that the interface ITransientErrorDetectionStrategy isn't implemented.

RSRP-459841: Add assembly reference with an assembly from a cutom nuget repository adds the reference to the dll instead of installing the nuget

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Jul 19, 2016 4:53:11 AM
Updated Jul 19, 2016 4:53:27 AM
Subsystem Quick Fixes
Assignee Kirill Falk (kfalk)
Priority Show-stopper
State Submitted
Type Task
Affected versions 2016.1.2
Fix version 2016.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
We have a custom nuget repository for our internal shared libraries.
When I type the name of a type from one of these nugets in my code, and that this nuget is referenced by another project, Resharper offers me with Alt+Enter to add a reference to that assembly.
The problem is that is doesn't install the nuget in my current project (packages.config is not modified), it only adds a direct reference to the dll.
If I do the same with a type that comes from a public nuget from nuget.org, it works fine.
If I do the same with in Visual Studio 2013 with an internal nuget, it works fine too.
The problem only occurs on Visual Studio 2015 with a custom nuget repository (and with NuGet 3.4.4.1321 if that helps).

RSRP-389319: Add notification on backed up VS shortcuts in 'Apply Scheme' options dialog

$
0
0
Reporter Alex Berezoutsky (fergard) Alex Berezoutsky (fergard)
Created Oct 22, 2013 8:04:40 AM
Updated Jul 19, 2016 4:55:54 AM
Subsystem Platform - VS Integration
Assignee Denis Korneev (Denis.Korneev)
Priority Normal
State Submitted
Type Feature
Affected versions 8.0.2
Fix version 9.0
Fixed In Version ReSharper Undefined
VsVersion All Versions
See subj.
It would be nice to have a description/link to Windows Explorer with backed up VS keyboard settings there.

RSRP-451527: Multiple startup projects in RunConfig

$
0
0
Reporter Slava Tutushkin (slava.tutushkin) Slava Tutushkin (slava.tutushkin)
Created Dec 3, 2015 11:56:25 AM
Updated Jul 19, 2016 5:14:09 AM
Subsystem Run Configurations
Assignee Slava Tutushkin (slava.tutushkin)
Priority Critical
State Submitted
Type Feature
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions

RSRP-459757: AdvancedNamingSettingsFrom leaks solution

$
0
0
Reporter Sergey Kuks (coox) Sergey Kuks (coox)
Created Jul 13, 2016 7:47:49 AM
Updated Jul 19, 2016 5:33:14 AM
Subsystem Code Style - Naming
Assignee Sergey Shkredov (serjic.shkredov)
Priority Show-stopper
State Open
Type Performance Problem
Affected versions No Affected versions
Fix version 2016.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
most likely it used improper lifetime when subscribed to IWindowBranding

RSRP-459842: [Regression] Surround with no longer shows hot keys

$
0
0
Reporter Sebastian Krysmanski (manski) Sebastian Krysmanski (manski)
Created Jul 19, 2016 5:31:16 AM
Updated Jul 19, 2016 5:33:53 AM
Subsystem Live Templates
Assignee Slava Tutushkin (slava.tutushkin)
Priority Normal
State Submitted
Type Bug
Affected versions 2016.2
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
In R# 2016.2 EAP 8, R# no longer shows hot keys in the "Surround with" popup menu:



Without the display of the hot keys, the popup becomes much less usable. If you intended to remove them, please provide a configuration option for this.

I'm running VS 2015 Update 3, if it matters.

RSRP-459729: Various errors for project based on VS Project System

$
0
0
Reporter Vladimir Kozlov (aienabled) (vladimir.aienabled.kozlov) Vladimir Kozlov (aienabled) (vladimir.aienabled.kozlov)
Created Jul 11, 2016 4:14:34 AM
Updated Jul 19, 2016 5:44:52 AM
Resolved Jul 19, 2016 5:01:23 AM
Subsystem Platform - Project Model
Assignee Sergey Kuks (coox)
Priority Show-stopper
State Fixed
Type Bug
Affected versions 2016.2
Fix version 2016.2
Fixed In Version ReSharper Undefined
VsVersion VS 2015 RTM
Hello!

I'm using latest ReSharper 2016.2 EAP 7 version. But the problem is reproducible in any other version as well (including latest RTM).
My custom project system is built with VS Project System https://github.com/Microsoft/VSProjectSystem I've already reported similar issue https://youtrack.jetbrains.com/issue/RSRP-452621 and it was resolved. However, my project (which is using my custom project system) has been greatly grown up since then and there some new issues appeared.

After some time (and sometimes right after opening the project) most of ReSharper functions become broken:
1. Find usages doesn't show all the usages.
2. Refactoring rename (both C# and XAML) doesn't refactor in every file.
3. Cleanup not works.
4. Creating file from template - generator menu not shown on Alt+Enter.
And some other important features...

I tried to start VS with ReSharper logging enabled and right after opening the project there are 37 MB log file full of the same errors and exceptions (so it compressed to just 27 KB, I've attached the archive to this report). I've reopened it several and the log file is exactly the same.

Could you have a look on the log please?

If you require, I can make a sample. But it will take significant amount of my time to make a sample demostrating the issues - on the small project it's not reproducible, only when it become quite big with a lot of CS/XAML-files I've noticed the issues (I cannot upload the full project - NDA).

Regards!

RSRP-199112: "Find usages" are disabled when SWA is turned off

$
0
0
Reporter Alex Berezoutsky (fergard) Alex Berezoutsky (fergard)
Created Nov 30, 2010 7:46:44 AM
Updated Jul 19, 2016 5:46:47 AM
Resolved Jul 19, 2016 5:46:47 AM
Subsystem Navigation - Search (Find Usages)
Assignee Kirill Skrygan (kirillskrygan)
Priority Critical
State Obsolete
Type Task
Affected versions 5.1.1
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
Please find the e-mail history and the sent log.txt file in attachement.

RSRP-459843: Pull members refactoring does not properly pull annotations

$
0
0
Reporter Martin (IAmMartin) Martin (IAmMartin)
Created Jul 19, 2016 5:59:16 AM
Updated Jul 19, 2016 5:59:16 AM
Subsystem No Subsystem
Assignee Unassigned
Priority Normal
State Submitted
Type Unspecified
Affected versions 2016.2
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
2016.2 EAP 8

Consider the following code
public interface ITest
{

}

public class Test : ITest
{
[CanBeNull, MustUseReturnValue]
public string Test([CanBeNull] string input)
{
return input;
}
}

I will now pull Test to the interface, resulting in
public interface ITest
{
string Test([CanBeNull] string input);
}

Expected
public interface ITest
{
[CanBeNull, MustUseReturnValue]
string Test([CanBeNull] string input);
}
Viewing all 106942 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>