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

RSRP-427349: Problem caused by accepting variable rename not renaming variable within Index.cshtml

$
0
0
Reporter Clive Chinery (tatworth) Clive Chinery (tatworth)
Created Nov 5, 2014 10:25:11 AM
Updated Jul 18, 2016 11:27:35 AM
Subsystem JavaScript
Assignee Anton Lobov (Anton.Lobov)
Priority Critical
State Open
Type Feature
Affected versions No Affected versions
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
To reproduce the problem, please do the following:
1) Unpack the attached ZIP and run the application - a product list should appear.
2) Close the web page and stop debugging.
3) Find and view file Product.cs in ExampleApp\Models
4) Accept prompt to rename ProductID to ProductId
5) Run the application - product list appears but is not populated.
6) Search for all occurrences of ProductID (whole word) and not the occurrences in ExampleApp\Scripts\exampleApp.js and ExampleApp\Views\Home\Index.cshtml. Rename these occurrences to ProductId.
7) Run the application - product list appears and is populated.

ReSharper should have at the minimum renamed ProductID to ProductId in Index.cshtml.and arguably also renamed in the exampleApp.js file.

Also there is no facility (at least I could not find one) to exclude files such as bootstrap.css from the Find Code Issues option. Bootstrap.css is part of the Bootstrap package and should not be being modified by an application developer.

RSRP-440037: Formatter: option to put empty getter and setter on the same ine

$
0
0
Reporter Angelina Elycheva (Angelina.Elycheva) Angelina Elycheva (Angelina.Elycheva)
Created May 19, 2015 9:06:03 AM
Updated Jul 18, 2016 11:34:00 AM
Subsystem Code Style - Formatter
Assignee Dmitry Osinovsky (Dmitry.Osinovsky)
Priority Major
State Submitted
Type Feature
Affected versions No Affected versions
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
To setup this kind of auto-properties formatting:

internal string Name 
{
get; set;
}
"get;" and "set;" on a single line?

RSRP-459766: Add support for two-line property formatting

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Jul 14, 2016 4:53:36 AM
Updated Jul 18, 2016 11:34:00 AM
Subsystem Code Style - Formatter
Assignee Dmitry Osinovsky (Dmitry.Osinovsky)
Priority Major
State Submitted
Type Feature
Affected versions No Affected versions
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
For as long as I've programmed in C#, I've used the two-line property format for auto properties, which looks like this:
public Type PropertyName 
{ get; private set; }
I've seen it used in many code sources in the six years I've been using C#. Resharper forces me to adopt either one-line format or fully expanded format:
// One-Line 
public Type PropertyName { get; private set; }

// Fully Expanded
public Type PropertyName
{
get;
private set;
}
I find that the one-line format lacks the visual weight to distinguish itself from fields at first glance, and the fully expanded format simply takes up too much space. I've found that the two-line format is concise enough to give the programmer a good view of classes with many properties, while visually distancing properties from fields.

I'd like to ask ReSharper to consider adding this format to the Code Editing > C# > Formatting Style > Line Breaks and Wrapping page of Options (under Other).

RSRP-424559: Find Results: Results are not ignored consistently

$
0
0
Reporter Evgeny Ulanov (evgeny.ulanov) Evgeny Ulanov (evgeny.ulanov)
Created Sep 24, 2014 6:29:00 AM
Updated Jul 18, 2016 11:42:48 AM
Subsystem Navigation - Search (Find Usages)
Assignee Alexander Ulitin (alexander.ulitin)
Priority Major
State Fixed In Branch
Type Bug
Affected versions 9.0
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
In VS2013.3 with R# .4014 (ArtOfBuild)

1. Search Usages of some object
2. Open Find Results window
3. Right click on one of usages → Ignore
4. Repeat step 3 several times on different objects

Actual: Sometimes action failed due to not updated result tree.
Expected: All actions are passed successfully.

RSRP-437017: ReSharper does not follow "Force put on single line" setting for "Break line in simple embedded statement" combobox for JavaScript

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Apr 8, 2015 8:25:43 AM
Updated Jul 18, 2016 11:43:10 AM
Subsystem Code Style - Formatter
Assignee Dmitry Osinovsky (Dmitry.Osinovsky)
Priority Critical
State Submitted
Type Feature
Affected versions 9.0, 9.1
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
I have set the "Javascript.Formatting Style.LineBreaks.Break line in simple embedded statements" option to "Force put on single line". However, when the code is reformatted the embedded statement is being expanded to multiple lines. I have attached screen shots showing the code in question before and after the reformat. I have also attached a screen shot showing the option setting.

RSRP-435329: Option which adds braces if one of the blocks is multiline

$
0
0
Reporter Angelina Elycheva (Angelina.Elycheva) Angelina Elycheva (Angelina.Elycheva)
Created Mar 16, 2015 10:15:05 AM
Updated Jul 18, 2016 11:45:20 AM
Resolved Jul 18, 2016 11:45:20 AM
Subsystem Code Style - Cleanup
Assignee Razmik Seysyan (razmik)
Priority Normal
State Fixed
Type Feature
Affected versions No Affected versions
Fix version 2016.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
It would be cool to have another option, which adds braces if one of the blocks is multiline. For example:
1. "Use braces for multiline" reformat:

// no multiline 
if (condition)
foo();
else
faa();
// multline (first block has no braces because it's singleline) 
if (condition)
foo();
else
{
faa();
fuu();
}
"Use braces if one block is multiline" reformat:

// no multiline 
if (condition)
foo();
else
faa();
// multiline (braces are added to the first block because the second block is multiline) 
if (condition)
{
foo();
}
else
{
faa();
fuu();
}

RSRP-433842: C# code formatting question, placement of "where T : IDisposable" type constraints

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Feb 18, 2015 10:00:32 AM
Updated Jul 18, 2016 11:48:14 AM
Resolved Jul 18, 2016 11:48:14 AM
Subsystem Code Style - Formatter
Assignee Dmitry Osinovsky (Dmitry.Osinovsky)
Priority Critical
State Obsolete
Type Feature
Affected versions No Affected versions
Fix version 2016.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
I have some problems configuring ReSharper 9.01 properly.

Basically if I write my method like this:
protected T RegisterDisposable<T>(T instance)
where T : IDisposable
{
}
As soon as I hit }, the "where T : IDisposable" is moved up to the end of the preceding line, like this:
protected T RegisterDisposable<T>(T instance) where T : IDisposable
{
}
No matter which options I twiddle I cannot make the formatter place the constraint on the next line instead.

I have tried these settings:

Wrap multiple type parameter constraints: Chop Always
Prefer wrap before first constraint: [x]
Place type constraints on same line: [ ]


Currently such options affect "type constraints" for classes only.

RSRP-433772: Qualified Using At Nested Scope not exported when disabled

$
0
0
Reporter Matthijs van Driel (matthijsvdr) Matthijs van Driel (matthijsvdr)
Created Feb 17, 2015 10:36:53 AM
Updated Jul 18, 2016 11:49:18 AM
Subsystem Platform - Layered Settings
Assignee Serge Baltic (baltic)
Priority Normal
State Submitted
Type Bug
Affected versions No Affected versions
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
The option QualifiedUsingAtNestedScope (code editing -> C# -> namespace imports) only get exported when this item is enabled.

When manually changing the settings file the import works as excepted

version: 9.8.3000.5176

RSRP-432992: Option to specify a list of Globals

$
0
0
Reporter Angelina Elycheva (Angelina.Elycheva) Angelina Elycheva (Angelina.Elycheva)
Created Feb 9, 2015 9:29:37 AM
Updated Jul 18, 2016 11:49:44 AM
Subsystem JavaScript
Assignee Anton Lobov (Anton.Lobov)
Priority Major
State Submitted
Type Feature
Affected versions No Affected versions
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
Option to specify a list of Globals (like "MyGlobal1,MyGlobal2"). Then you could save this in a specific Layer to be attached to the solutions where you need the specified Globals.

This would substitute the "_globals.js" file that I added to each project.

RSRP-430964: TypeScript line break formatting options: align chained method calls

$
0
0
Reporter Michael Yartsev (anijap) Michael Yartsev (anijap)
Created Jan 21, 2015 1:09:54 PM
Updated Jul 18, 2016 11:50:20 AM
Subsystem TypeScript
Assignee Dmitry Osinovsky (Dmitry.Osinovsky)
Priority Critical
State Submitted
Type Feature
Affected versions No Affected versions
Fix version 2016.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
Basically, I'd like the same options as provided for the C# formatting, just applied to typescript.
Today, I have found no good way of nicely chaining long method calls in typescript

http://stackoverflow.com/questions/17557092/is-there-any-way-to-force-resharper-to-align-chained-method-calls-in-a-specific

RSRP-424604: Find Results: Results are not trimmed consistently

$
0
0
Reporter Evgeny Ulanov (evgeny.ulanov) Evgeny Ulanov (evgeny.ulanov)
Created Sep 24, 2014 10:42:55 AM
Updated Jul 18, 2016 11:51:30 AM
Subsystem Navigation - Search (Find Usages)
Assignee Daniel Degtyarev (daniel.degtyarev)
Priority Major
State Fixed In Branch
Type Bug
Affected versions 9.0
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
In VS2013.3 with R# .4014 (ArtOfBuild)

1. Search Usages of some object
2. Open Find Results window
3. Go through results by expanding tree

Actual: Some results are not trimmed consistently (due to not updated result tree?) – sometimes it trims keyword. See attached screenshots.
Expected: All results have consistent trimming.

RSRP-430882: Resharper C# Line Breaks and await method calls

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Jan 21, 2015 10:56:17 AM
Updated Jul 18, 2016 11:51:31 AM
Resolved Jul 18, 2016 11:51:31 AM
Subsystem Code Style - Formatter
Assignee Dmitry Osinovsky (Dmitry.Osinovsky)
Priority Critical
State Obsolete
Type Bug
Affected versions 9.0
Fix version 2016.1
Fixed In Version ReSharper Undefined
VsVersion All Versions
How do i get the await operator on the same line as my method call.
I would like an override in the options such as "Force await next to method call"

Here is my example
      return
await
FormFilesHelper.GenerateUniqueNameAsync(SelectedFile.Path,
CurrentUser.SavedTemplatesFormPath,
CurrentUser.FirstName,
CurrentUser.LastName,
DateOfService.Date,
MemberFirstName,
MemberLastName,
MemberDateOfBirth.Date,
formShortHand);

Here is how i want it to look
      return await FormFilesHelper.GenerateUniqueNameAsync(SelectedFile.Path,
CurrentUser.SavedTemplatesFormPath,
CurrentUser.FirstName,
CurrentUser.LastName,
DateOfService.Date,
MemberFirstName,
MemberLastName,
MemberDateOfBirth.Date,
formShortHand);

RSRP-428785: ext.net / XScript support

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Dec 8, 2014 6:32:36 AM
Updated Jul 18, 2016 11:56:31 AM
Subsystem JavaScript
Assignee Anton Lobov (Anton.Lobov)
Priority Major
State Submitted
Type Feature
Affected versions No Affected versions
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
I am using ext.net and XScript. Resharper shows a lot of errors inside XScript containers. However the syntax is ok.

RSRP-423276: Dynamic references resolve should depend on 'use strict' directive

$
0
0
Reporter Artem Bukhonov (Artem.Bukhonov@jetbrains.com) Artem Bukhonov (Artem.Bukhonov@jetbrains.com)
Created Sep 11, 2014 11:52:26 AM
Updated Jul 18, 2016 11:58:08 AM
Subsystem JavaScript
Assignee Anton Lobov (Anton.Lobov)
Priority Critical
State Submitted
Type Bug
Affected versions No Affected versions
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
"use strict";
myVar = 2; // error in strict mode - access to undeclared global var
var t = myVar; // error too

Now these references to myVar are resolved correctly because there is an assignment to myVar that we consider as symbol.

Method to detect strict mode:
public static bool IsInStrictContext(this ITreeNode node)

RSRP-422267: Provider region support for JavaScript

$
0
0
Reporter Samir Vaidya (ssvaidya) Samir Vaidya (ssvaidya)
Created Aug 26, 2014 10:11:58 PM
Updated Jul 18, 2016 11:58:28 AM
Subsystem JavaScript
Assignee Anton Lobov (Anton.Lobov)
Priority Major
State Submitted
Type Feature
Affected versions No Affected versions
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
Tools such as VS WebEssentials 2013 have introduced support for regions in JavaScript, however, the support is incomplete because features such as "Surround With" cannot be used to encapsulate a block of JavaScript and create it within a region similar to how this is handled in C#. Having complete support for JavaScript regions would be of tremendous benefit and very useful for managing large JavaScript files.

RSRP-414867: TypeScript reformatting does not indent second line of a ternary expression

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created May 16, 2014 7:15:41 AM
Updated Jul 18, 2016 12:02:42 PM
Resolved Jul 18, 2016 12:02:42 PM
Subsystem Code Style - Formatter
Assignee Dmitry Osinovsky (Dmitry.Osinovsky)
Priority Major
State Obsolete
Type Bug
Affected versions 8.2
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
In a statement like:
positions.sort((a, b) => (a.name < b.name) ? -1 : (a.name > b.name) ? 1 :
(a.position < b.position) ? -1 : (a.positionId > b.positionId) ? 1 : 0);
When asked to reformat this, ReSharper does not indent the second line.

I have it set to not align ternary expressions.


Apparently the answer to this was to turn on "Indent object literals/arrays/nested expressions" which I definitely did not expect to affect this sort of thing.

RSRP-402967: Provide additional setting for first brace position in multiline generic methods/type definitions

$
0
0
Reporter Andrey Shchekin (ashmind) Andrey Shchekin (ashmind)
Created Feb 4, 2014 6:28:39 PM
Updated Jul 18, 2016 12:06:44 PM
Subsystem Code Style - Formatter
Assignee Dmitry Osinovsky (Dmitry.Osinovsky)
Priority Major
State Submitted
Type Feature
Affected versions No Affected versions
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
Example:

public class Test { // single line: K&R style
...
}

// but

public class Test<T>
where T : class
{ // multiline: BSD style
...
}

RSRP-440265: Typo in formatting options

$
0
0
Reporter Richard Robertson (icekirby1) Richard Robertson (icekirby1)
Created May 26, 2015 5:12:51 AM
Updated Jul 18, 2016 12:12:06 PM
Subsystem Code Style - Formatter
Assignee Dmitry Osinovsky (Dmitry.Osinovsky)
Priority Major
State Fixed In Branch
Type Cosmetics
Affected versions No Affected versions
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
In the options menu for ReSharper, under Code Editing>C#>Formatting Style>Spaces, there is an entry reading "Unary munis operator (-)".

This should read "Unary minus operator(-)".

RSRP-388920: An error occurred while decompiling the method Range (type: JetBrains.Util.dataStructures.TypedIntrinsics.Int32`1, assembly: JetBrains.Platform.ReShar

$
0
0
Reporter Alexander I. Zaytsev (hazzik) Alexander I. Zaytsev (hazzik)
Created Oct 16, 2013 3:37:54 AM
Updated Jul 18, 2016 12:32:55 PM
Subsystem No Subsystem
Assignee Nikita Raba (nikita.raba)
Priority Normal
State Submitted
Type Exception
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharper 8.0.2 Version=8.0.2000.2660, Built=2013-09-26T20:18:12, Configuration=“CLR4 Csharp InternalMode Vbnet VS1100”
An error occurred while decompiling the method Range (type: JetBrains.Util.dataStructures.TypedIntrinsics.Int321, assembly: JetBrains.Platform.ReSharper.Util, Version=8.0.14.847, Culture=neutral, PublicKeyToken=1010a0d8d6380325). Unable to cast object of type 'JetBrains.Metadata.Reader.Impl.MetadataClassType' to type 'JetBrains.Metadata.Reader.API.IMetadataReferenceType'.

--- EXCEPTION #1/2 [InvalidCastException]
Message = “Unable to cast object of type 'JetBrains.Metadata.Reader.Impl.MetadataClassType' to type 'JetBrains.Metadata.Reader.API.IMetadataReferenceType'.”
ExceptionPath = Root.InnerException
ClassName = System.InvalidCastException
HResult = COR_E_INVALIDCAST=E_NOINTERFACE=80004002
Source = JetBrains.Decompiler.Core
StackTraceString = “
at JetBrains.Decompiler.Typing.ExpressionTyper.<InferType>b__1b(IDerefExpression x)
at JetBrains.Decompiler.Utils.TypeSwitchEx.FuncSwitch
2.Case[TConcrete](Func2 func)
at JetBrains.Decompiler.Typing.ExpressionTyper.InferType(IExpression expression)
at JetBrains.Decompiler.Typing.ExpressionTyper.GetType(IExpression expression)
at JetBrains.Decompiler.Inspections.SafetyInspectorBase.InspectExpression(IExpression expression)
at JetBrains.Decompiler.Ast.NodeEx.Visit[T](INode node, Action
1 preorderAction, Action1 postorderAction)
at JetBrains.Decompiler.Ast.NodeEx.Visit[T](INode node, Action
1 preorderAction, Action1 postorderAction)
at JetBrains.Decompiler.Ast.NodeEx.Visit[T](INode node, Action
1 preorderAction, Action1 postorderAction)
at JetBrains.Decompiler.Ast.NodeEx.Visit[T](INode node, Action
1 preorderAction, Action1 postorderAction)
at JetBrains.Decompiler.Ast.NodeEx.Visit[T](INode node, Action
1 preorderAction, Action1 postorderAction)
at JetBrains.Decompiler.Ast.NodeEx.Visit[T](INode node, Action
1 preorderAction, Action1 postorderAction)
at JetBrains.Decompiler.Ast.NodeEx.Visit[T](INode node, Action
1 preorderAction, Action1 postorderAction)
at JetBrains.Decompiler.Inspections.MethodSafetyInspector.Run()
at JetBrains.Decompiler.Inspections.MethodSafetyInspector.Run(IDecompiledMethod method, ExpressionTyper expressionTyper)
at JetBrains.Decompiler.MethodDecompiler.UnguardedDecompile(IMetadataMethod metadataMethod)
at JetBrains.Decompiler.MethodDecompiler.Decompile(IMetadataMethod metadataMethod)


--- Outer ---

--- EXCEPTION #2/2 [LoggerException]
Message = “An error occurred while decompiling the method Range (type: JetBrains.Util.dataStructures.TypedIntrinsics.Int32
1, assembly: JetBrains.Platform.ReSharper.Util, Version=8.0.14.847, Culture=neutral, PublicKeyToken=1010a0d8d6380325). Unable to cast object of type 'JetBrains.Metadata.Reader.Impl.MetadataClassType' to type 'JetBrains.Metadata.Reader.API.IMetadataReferenceType'.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Util.CollectionUtil.GetOrCreateValue[TKey,TValue](IDictionary`2 dictionary, TKey key, Func`2 funcNew)
     at JetBrains.Decompiler.ClassDecompiler.DecompileMethods(MethodDecompiler methodDecompiler, IDecompiledClass decompiledClass, IProgressIndicator indicator)
     at JetBrains.Decompiler.ClassDecompiler.Decompile(IMetadataTypeInfo typeInfo, IProgressIndicator indicator)
     at JetBrains.Decompiler.Render.CSharp.MetadataRenderer.<>c__DisplayClass23.<DecompileClass>b__22(IMetadataTypeInfo info)
     at JetBrains.Util.CollectionUtil.GetOrCreateValue[TKey,TValue](IDictionary`2 dictionary, TKey key, Func`2 funcNew)
     at JetBrains.Decompiler.Render.CSharp.MetadataRenderer.DecompileClass(IMetadataTypeInfo type, IProgressIndicator indicator)
     at JetBrains.Decompiler.Render.CSharp.MetadataRenderer.RenderClassLike(String kind, IMetadataTypeInfo typeInfo, Boolean isPartial, IProgressIndicator indicator)
     at JetBrains.Decompiler.Render.CSharp.MetadataRenderer.RenderType(IMetadataTypeInfo typeInfo, IProgressIndicator indicator, Boolean addPartialModifier)
     at JetBrains.Decompiler.Render.CSharp.MetadataRenderer.RenderTopLevelType(IMetadataTypeInfo typeInfo, IProgressIndicator indicator, Boolean addPartialModifier)
     at JetBrains.ReSharper.Feature.Services.ExternalSources.CSharp.MetadataTranslator.CSharpMetadataTranslator.<>c__DisplayClass4.<TranslateByDecompiler>b__3(Lifetime lifetime)
     at JetBrains.DataFlow.Lifetimes.Using[TRetVal](Func`2 F)
     at JetBrains.ReSharper.Feature.Services.ExternalSources.CSharp.MetadataTranslator.CSharpMetadataTranslator.TranslateByDecompiler(ITypeElement typeElement, MetadataTranslatorOptions options, IAssemblyPsiModule assemblyPsiModule, IProgressIndicator indicator)
     at JetBrains.ReSharper.Feature.Services.ExternalSources.CSharp.MetadataTranslator.CSharpMetadataTranslator.TranslateTopLevelTypeElement(ITypeElement element, IAssemblyPsiModule assemblyPsiModule, MetadataTranslatorOptions options, IProgressIndicator indicator)
     at JetBrains.ReSharper.ExternalSources.MetadataViewer.DecompilerBasedExternalSourcesProvider.PresentType(IProgressIndicator indicator, ITypeElement typeElement, PsiLanguageType targetLanguage, String fileName, MetadataTranslatorOptions translatorOptions, IDictionary`2 currentFlags)
     at JetBrains.ReSharper.ExternalSources.MetadataViewer.DecompilerBasedExternalSourcesProvider.<>c__DisplayClass5.<>c__DisplayClass9.<NavigateToSources>b__2()
     at JetBrains.Application.IShellLocksEx.ExecuteWithReadLock(IShellLocks thіs, Action F)
     at JetBrains.Application.ReadLockCookie.Execute(Action action)
     at JetBrains.ReSharper.ExternalSources.MetadataViewer.DecompilerBasedExternalSourcesProvider.<>c__DisplayClass5.<NavigateToSources>b__0(IProgressIndicator indicator)
     at JetBrains.UI.Application.Progress.UITaskExecutorRun.RunStartTaskCallTaskAction(IProperty`1 isDone, ProgressIndicator progressIndicator, TaskThreadAffinity taskThreadAffinity, Action`1 FTask, JetDispatcher dispatcherPrimary)
     at JetBrains.UI.Application.Progress.UITaskExecutorRun.<>c__DisplayClass14.<RunStartTask>b__13()
     at JetBrains.Threading.JetDispatcher.Closure.Execute()
     at JetBrains.Threading.JetDispatcher.ProcessQueue()
     at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
     at System.Windows.Threading.DispatcherOperation.InvokeImpl()
     at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     at System.Windows.Threading.DispatcherOperation.Invoke()
     at System.Windows.Threading.Dispatcher.ProcessQueue()
     at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     at MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     at MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
     at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source, Delegate method, Object args, Int32 numArgs, Delegate catchHandler)
     at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
     at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
     at JetBrains.Interop.WinApi.User32Dll.DispatchMessageW(MSG* lpmsg)
     at JetBrains.Threading.JetDispatcher.InternalPumpMessagesOnce()
     at JetBrains.Threading.JetDispatcher.Run()
     at JetBrains.Threading.JetDispatcher.<>c__DisplayClass7.<CreateDispatcherThread>b__1()
     at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     at System.Threading.ThreadHelper.ThreadStart()

RSRP-459825: Ctrl + T freezes Visual Studio completely

$
0
0
Reporter Alex Berezoutsky (fergard) Alex Berezoutsky (fergard)
Created Jul 18, 2016 7:02:14 AM
Updated Jul 18, 2016 12:38:07 PM
Resolved Jul 18, 2016 12:38:07 PM
Subsystem Navigation - Global
Assignee Razmik Seysyan (razmik)
Priority Show-stopper
State Fixed
Type Bug
Affected versions No Affected versions
Fix version 2016.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
See Traces Dump at: \\unit-420\Share\Snapshots\RSRP-459825
Viewing all 106942 articles
Browse latest View live


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