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

RSRP-243201: New quick fix on "Cannot choose method from method group"

$
0
0
Reporter Andrey Simanovsky (ands) Andrey Simanovsky (ands)
Created Apr 1, 2011 7:28:26 PM
Updated Oct 5, 2018 4:35:40 PM
Subsystem Quick Fixes
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Submitted
Type Feature
Fix version Backlog
Affected versions 2018.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
Example use-case: after "Introducing variable" it is easy to end up with the following code:
            private void Foo()
{
var bar = C.Bar;
bar(null);
}

class C
{
public static void Bar()
{
}
public static void Bar(object p)
{
}
}
Unfortunately, since there are two "Bar" methods no quick fix is available that would wrap "C.Bar" reference with a delegate and, thus, disambiguate "C.Bar".
Proposed behavior:
An option for each method in the method group should appear. In the example use-case there should be two options on the error on "Bar": "Use Bar()" and "Use Bar(object)". Each of them should wrap the call with a delegate (and thus resolve ambiguous "C.Bar" reference).

RSRP-246858: New quick fix on "Field '...' must be fully assigned before control is returned to the caller" error on constructor: assign field with new parameter

$
0
0
Reporter Andrey Simanovsky (ands) Andrey Simanovsky (ands)
Created Apr 5, 2011 6:58:49 PM
Updated Oct 5, 2018 4:39:12 PM
Subsystem Quick Fixes
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Submitted
Type Improvement
Fix version Backlog
Affected versions 2018.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
In the following case (a user has just added a new readonly field to the class, now it should be initialized in constructor):
struct S
{
public readonly int X;
public readonly int Y;

public S(int x)
{
X = x;
}
}
The quick-fix should produce the following code (by adding an assignment statement into appropriate place and invoking change signature refactoring):
struct S
{
public readonly int X;
public readonly int Y;

public S(int x, int y)
{
X = x;
Y = y;
}
}

RSRP-471570: After calling 'Inspect this' menu - all object stay selecting

$
0
0
Reporter Maltseva Ekaterina (Maltseva.Ekaterina) Maltseva Ekaterina (Maltseva.Ekaterina)
Created Sep 20, 2018 3:42:23 PM
Updated Oct 5, 2018 4:39:22 PM
Resolved Oct 5, 2018 4:39:22 PM
Subsystem Inspect This - Call Tracking
Assignee Alexander Ulitin (alexander.ulitin)
Priority Major
State Duplicate
Type Usability Problem
Fix version 2018.3
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
Open any cs file
Put the cursor on the method for example and call 'Inspect this' menu (Ctrl+Shift+Alt+A) and then don't select anything in the menu and just click back on the code - all method stay selecting with uncharacteristic selecting
And you have to click on Esc to turn in off

RSRP-400932: JavaScript in Razor pages

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Dec 23, 2013 6:35:09 PM
Updated Oct 5, 2018 4:39:29 PM
Subsystem File structure
Assignee Alexander Ulitin (alexander.ulitin)
Priority Major
State Submitted
Type Feature
Fix version Backlog
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
I absolutely love the File Structure window for the overview it gives and the possibility to rearrange code. Fantastic feature! However, when I view cshtml files it only shows me the html markup and not any javascript code I have in it. Is there an option I am missing or is this a planned feature? If there's currently no option to view js in the overview for cshtml files then please make it a feature request.

RSRP-252325: Generics inside the 'code' tag of xml doc: the correct quick fix to wrap in CDATA is missing; quick fixes for tags are shown instead

$
0
0
Reporter Andrey Simanovsky (ands) Andrey Simanovsky (ands)
Created Apr 8, 2011 5:16:42 PM
Updated Oct 5, 2018 4:42:26 PM
Subsystem Quick Fixes
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Submitted
Type Feature
Fix version Backlog
Affected versions 2018.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
When you have the following code:
    /// <summary>
/// usage:
/// <code>
/// var x = new X<int>();
/// </code>
/// </summary>
class X<T>
{
}
the quick fixes that are shown for '<int>' are useless because they treat <int> as a tag.
Expected behavior: ReSharper should understand that <int> is used inside the '<code>' tag and suggest 'Wrap in CDATA' quick fix rather than quick fixes for tags. The 'Wrap in CDATA' quick fix should wrap the code with generics into CDATA construct:

    /// <summary>
/// usage:
/// <code>
/// <![CDATA[
/// var x = new X<int>();
/// ]]>
/// </code>
/// </summary>
class X<T>
{
}

RSRP-337955: Formatting file shouldn't highlight current method/statement in blue

$
0
0
Reporter Joe White (joewhite) Joe White (joewhite)
Created Jan 31, 2013 9:25:34 PM
Updated Oct 5, 2018 4:43:55 PM
Subsystem Rearrange Code
Assignee Slava Tutushkin (slava.tutushkin)
Priority Major
State Submitted
Type Bug
Fix version Backlog
Affected versions 2018.2, 7.1.1
Fixed In Version ReSharper Undefined
VsVersion All Versions
When I hit Ctrl+Alt+Shift+F to reformat the current file using my default formatting profile, ReSharper highlights the current method (or statement) in blue, and shows a tooltip saying "Use Up/Down to move statement" or "Use Up/Down to move method MethodNameHere". It's acting like I'm still holding Ctrl+Alt+Shift down (and it thinks I'm planning to do a Ctrl+Alt+Shift+Up/Down).

The highlight, and the tooltip, go away when I press a cursor key or Esc, or when Visual Studio loses focus. (Clicking in the editor window isn't enough to dismiss them.) Pressing Up and Down will move the cursor, not reorder the code, so VS knows I'm not still holding down Ctrl+Alt+Shift; the highlight and tooltip are apparently just leftovers of stale state.

If I keep holding Ctrl+Alt+Shift for an extra few seconds after the reformat operation (i.e., if I don't release them until VS is pumping messages again), then the highlight and tooltip go away when I release Ctrl+Alt+Shift. But if I release them right away, while R# is still performing the reformat (and not pumping messages), R# seems not to acknowledge the "key up" events at all; it gets stuck thinking they're still pressed. It's like it deletes everything in the input queue before it starts pumping messages again. If it's going to do that, it needs to check the key state again after it clears the input queue!

RSRP-399578: ReSharper can't seem to resolve symbols in DLLs which have all timestamp info cleared

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Dec 11, 2013 12:49:26 PM
Updated Oct 5, 2018 4:44:12 PM
Resolved Oct 5, 2018 4:44:09 PM
Subsystem Code Analysis
Assignee Kirill Skrygan (kirill.skrygan)
Priority Critical
State Fixed
Type Bug
Fix version Unidentified prior version
Affected versions 8.0.2, 8.1 EAP
Fixed In Version ReSharper Undefined
VsVersion All Versions
The only problem I have seen is with referencing DLLs that have had all timestamp info cleared (we strip all of our binaries). In this case, ReSharper can't seem to resolve symbols in these DLLs event though the project builds fine and VS can find the definitions in metadata.


I have attached a trivial test case that clearly demonstrates the
issue.

If you load the attached solutions 'TestApp' and 'TestAppStripped' you
will see the issue.

'TestApp' is a console app that references a Dll, 'TestDLL' that
contains a single method.

All references are resolved and intellisense works in the IDE as
expected.

Now, we strip all Dlls of timestamp and other info so that we can
verify rebuilds in PA.

'TestAppStripped' is the same console app, but this time referencing
the stripped Dll which has been run through our stripping application.

You will see that the IDE does not resolve references in
'TestAppStripped' even though it builds and runs fine.

RSRP-451867: Unit tests abort or don't run

$
0
0
Reporter Ronald Moolenaar (moolie.1) Ronald Moolenaar (moolie.1)
Created Dec 16, 2015 5:06:30 PM
Updated Oct 5, 2018 4:47:13 PM
Resolved Oct 5, 2018 4:47:13 PM
Subsystem Unit Testing
Assignee Fedor Buyvol-Kot (Fedor.Buyvol-Kot)
Priority Normal
State Can't Reproduce
Type Bug
Fix version No Fix versions
Affected versions 10.0.1
Fixed In Version ReSharper Undefined
VsVersion All Versions
Couldn't tell if this issue is already addressed by an open issue...

Using VS professional 2012 with R# 10.0.1

If I go to unit test explorer and run a unit test group that doesn't have the unit test group symbol (two circles), only a subset of the selected unit test group will execute and they will be aborted or won't run at all. Running a unit test group with the 'unit test group symbol' will give no problem, unit test will run as expected. Running all tests doesn't give problems either.

Subset problem might be related to RSRP-448048.

See https://youtu.be/FGNjWQ8L8WQ
Please let me know if you need more details.

RSRP-333713: Navigation to asp type should not show disambiguation between ASP and C# targeting the same location

$
0
0
Reporter Sergey Kuks (coox) Sergey Kuks (coox)
Created Oct 30, 2012 5:25:34 PM
Updated Oct 5, 2018 4:47:52 PM
Subsystem Navigation - Global
Assignee Maltseva Ekaterina (Maltseva.Ekaterina)
Priority Critical
State To Reproduce
Type Bug
Fix version Backlog
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
  • page class
    • with default name (default_aspx)
    • with specified name (ClassName="Foo")
  • implicitely generated inherits class (Inherits="Foo")

RSRP-256622: ReSharper quick fix for collection initializers

$
0
0
Reporter Michael Naumov (mnaoumov) Michael Naumov (mnaoumov)
Created Apr 15, 2011 2:56:21 AM
Updated Oct 5, 2018 4:48:22 PM
Subsystem Quick Fixes
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Submitted
Type Feature
Fix version Backlog
Affected versions 2018.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
        static void Main(string[] args)
{
var c = new Class();
c.Children.Add(new Class());
}

class Class
{
public List<Class> Children { get; private set; }

public Class()
{
Children = new List<Class>();
}
}

Nice to have a quick fix which converts code above to the

            var c = new Class() {Children = {new Class()}};

RSRP-257486: Quick-Fix for "Assignment is not used" is not available under some conditions

$
0
0
Reporter Victor Kropp (kropp) Victor Kropp (kropp)
Created Apr 18, 2011 8:43:31 PM
Updated Oct 5, 2018 4:49:24 PM
Resolved Oct 5, 2018 4:49:24 PM
Subsystem Quick Fixes
Assignee Alisa Afonina (alisa.afonina)
Priority Major
State Fixed
Type Bug
Fix version Unidentified prior version
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
      object x = null;
if (condition)
x = new object();
else
{caret}x = null;

In upper example QF is not available, while after adding redundant braces it becomes available.

      object x = null;
if (condition)
x = new object();
else
{
{caret}x = null;
}

RSRP-383098: "No presentation" in Find Results

$
0
0
Reporter Anton Lobov (Anton.Lobov) Anton Lobov (Anton.Lobov)
Created Aug 16, 2013 4:12:02 PM
Updated Oct 5, 2018 4:49:32 PM
Resolved Oct 5, 2018 4:49:31 PM
Subsystem UI
Assignee Kirill Skrygan (kirill.skrygan)
Priority Major
State Obsolete
Type Bug
Fix version 9.0
Affected versions 8.0.1
Fixed In Version ReSharper Undefined
VsVersion All Versions
Open any solution (for example, attached solution). Find usages of something.
Collapse all => refresh => comment code in test editor => expand => "No presentation".

RSRP-453156: The visual studio 2013 freeze on startup and on build when the unit test explorer of resharper 10 is visible

$
0
0
Reporter Nikolai Solovev (nikolaisolovev) Nikolai Solovev (nikolaisolovev)
Created Jan 20, 2016 10:54:50 AM
Updated Oct 5, 2018 4:50:57 PM
Resolved Oct 5, 2018 4:50:56 PM
Subsystem Unit Testing
Assignee Fedor Buyvol-Kot (Fedor.Buyvol-Kot)
Priority Normal
State Can't Reproduce
Type Bug
Fix version No Fix versions
Affected versions 10.0.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
in our project we got around 2000 tests. When i now start the visual studio in a way that the project is opened right away and the unit test explorer is visible, the whole application freezes.

It also happens when i open the project and the Unit Test Explorer is not visible, and then i open the Unit Test Explorer and perform a Clean on Solution (sometimes its already freezes here) and a rebuild (definitely it freezes here).

Visual Studio 2013 Update 5
Resharper 10.0.2

I know that is not much information. But i dont know what additionally i could mentioned. But feel free to contact me if i can provide you some more info.

BR

RSRP-258471: Visibility QFs for BC31399

$
0
0
Reporter Alexey Kuptsov (alexey.kuptsov) Alexey Kuptsov (alexey.kuptsov)
Created Apr 21, 2011 11:06:03 AM
Updated Oct 5, 2018 4:51:46 PM
Resolved Oct 5, 2018 4:51:46 PM
Subsystem Quick Fixes
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Obsolete
Type Bug
Fix version Backlog
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions

RSRP-258476: Visivility Qfs for BC31067

$
0
0
Reporter Alexey Kuptsov (alexey.kuptsov) Alexey Kuptsov (alexey.kuptsov)
Created Apr 21, 2011 11:19:46 AM
Updated Oct 5, 2018 4:57:19 PM
Subsystem Quick Fixes
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Submitted
Type Bug
Fix version Backlog
Affected versions 2018.3
Fixed In Version ReSharper Undefined
VsVersion All Versions

RSRP-471714: Problem ignoring some items in inspection results window

$
0
0
Reporter Stécy Dubé (stecydube) Stécy Dubé (stecydube)
Created Oct 1, 2018 3:07:19 PM
Updated Oct 5, 2018 4:57:58 PM
Subsystem Inspect This - Call Tracking
Assignee Alexander Ulitin (alexander.ulitin)
Priority Normal
State Submitted
Type Bug
Fix version 2018.3
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions

I performed an inspect outgoing calls and got a list as expected.

However, ignoring some items doesn't seem to have any effect. The show ignored usages button is not activated.

Furthermore, right clicking on the "ignored" item still showing in the list reveal an "Undo Ignore" command.

Sometimes, ignoring items works and sometimes ignoring an item makes the previous ignored one to disappear from the list instead of the just ignored one.

As it is now this functionality is unusable.

Thank you.

RSRP-258508: Initialize auto property from parameter should create auto property with private setter.

$
0
0
Reporter Sergey Shkredov (serjic.shkredov) Sergey Shkredov (serjic.shkredov)
Created Apr 21, 2011 1:37:22 PM
Updated Oct 5, 2018 4:58:49 PM
Resolved Oct 5, 2018 4:58:49 PM
Subsystem Quick Fixes
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Fixed
Type Bug
Fix version Unidentified prior version
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
It is expected because the sibling action 'Create and initialize field' creates readonly field.

RSRP-471764: Creating class and retyping it to enum makes it reload

$
0
0
Reporter Andrey Simukov (Andrey.Simukov) Andrey Simukov (Andrey.Simukov)
Created Oct 5, 2018 4:59:03 PM
Updated Oct 5, 2018 5:00:19 PM
Subsystem Platform - VS Integration
Assignee Sergey Kuks (coox)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions 2018.2.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
1) Locate shared project
2) Create class through Add / New Item / Class - call it "TestEnum"
3) Observe "TestEnum.cs" being created
4) Rewrite the "class" part to "public enum" so you get "public enum TestEnum"
5) Start typing enum values
6) Observe that a dialog to reload the file is presented.
7) Click "No"
8) The dialog is then presented again

Disabling ReSharper solves this problem

RSRP-469657: Installation error when upgrading from an older version (

$
0
0
Reporter Maria Pleskunina (Maria.Pleskunina) Maria Pleskunina (Maria.Pleskunina)
Created May 15, 2018 7:20:26 PM
Updated Oct 5, 2018 5:06:58 PM
Subsystem Installation
Assignee Denis Korneev (Denis.Korneev)
Priority Critical
State Open
Type Task
Fix version 2018.3
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
11:33:25.438 |E| IsolatedBuildRunnerEngineRequest| The stage display name stream does not exist.

--- EXCEPTION #1/1 [LoggerException]
Message = “The stage display name stream does not exist.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.ManagedThreadName = <NULL>
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
The stage display name stream does not exist.

--- EXCEPTION #1/1 [LoggerException]
Message = “The stage display name stream does not exist.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
at JetBrains.Build.Engine.IsolatedBuild.IsolatedBuildRunnerEngineRequest.GetStageDisplayName()
at JetBrains.Build.Engine.IsolatedBuild.IsolatedBuildGuest.<>c__DisplayClass2_0.<Run>b__0(Lifetime lifetime)
at JetBrains.DataFlow.Lifetimes.Using[TRetVal](Func`2 λ)
at JetBrains.Build.Engine.IsolatedBuild.IsolatedBuildGuest.Run(IntPtr pCrossAppDomain)
at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, StackCrawlMark& stackMark)
at System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
at System.Activator.CreateInstance(String assemblyString, String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, Evidence securityInfo, StackCrawlMark& stackMark)
at System.Activator.CreateInstance(String assemblyName, String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)
at System.AppDomain.CreateInstance(String assemblyName, String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)


Workaround: use the full installer

RSRP-471765: The given key was not present in the dictionary.

$
0
0
Reporter Lilia Shamsutdinova (Lilia.Shamsutdinova) Lilia Shamsutdinova (Lilia.Shamsutdinova)
Created Sep 19, 2018 11:03:06 AM
Updated Oct 5, 2018 5:14:31 PM
Subsystem Build Scripts
Assignee Anton Spilnyy (Anton.Spilnyy)
Priority Normal
State Submitted
Type Exception
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs15 Wave 183 Hive _3f3919c0 — JetBrains ReSharper Ultimate 2018.3 EAP 1 D Build 183.0.20180919.22621-eap01d

JetBrains dotCover 2018.3 EAP 1 D Build 2018.3.20180919.24125-eap01d
JetBrains dotMemory 2018.3 EAP 1 D Build 2018.3.20180919.23937-eap01d
JetBrains dotTrace 2018.3 EAP 1 D Build 2018.3.20180919.24133-eap01d
JetBrains ReSharper 2018.3 EAP 1 D Build 2018.3.20180919.23820-eap01d
JetBrains ReSharper C++ 2018.3 EAP 1 D Build 2018.3.20180919.23820-eap01d
JetBrains TeamCity Add-in 2018.3 EAP 1 D Build 2018.3.20180919.23833-eap01d

The given key was not present in the dictionary.

— EXCEPTION #1/2 [KeyNotFoundException]
Message = “The given key was not present in the dictionary.”
ExceptionPath = Root.InnerException
ClassName = System.Collections.Generic.KeyNotFoundException
HResult = COR_E_KEYNOTFOUND=80131577
Source = mscorlib
StackTraceString = “
 at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
 at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
 at JetBrains.ReSharper.Psi.BuildScripts.ReferenceManager.GetMappedFile(IEnumerable`1 nodes, IDictionary`2 mapping)
 at JetBrains.ReSharper.Psi.BuildScripts.ReferenceManager.BuildDeclaredElements(BuildScriptGraph graph)
 at JetBrains.ReSharper.Psi.BuildScripts.InclusionEngine.BuildScriptCache.ForceGraphLoad()
 at JetBrains.ReSharper.Psi.BuildScripts.InclusionEngine.BuildScriptCache.CheckBuildScriptGraph()
 at JetBrains.ReSharper.Psi.BuildScripts.InclusionEngine.BuildScriptCache.BuildStateForFile(IPsiSourceFile psiSourceFile, Boolean isStartup)
 at JetBrains.ReSharper.Psi.BuildScripts.InclusionEngine.BuildScriptCache.Build(IPsiSourceFile sourceFile, Boolean isStartup)
 at JetBrains.ReSharper.Psi.Caches.Jobs.JobUpdateProjectFiles.<>c__DisplayClass14_0.<BuildSourceFile>b__0()


— Outer —

— EXCEPTION #2/2 [LoggerException]
Message = “The given key was not present in the dictionary.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.ManagedThreadName = “JetPool(S) #5”
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2018.3 EAP 1 D Build 183.0.20180919.22621-eap01d”
Data.SubProducts.#0 = “JetBrains dotCover 2018.3 EAP 1 D Build 2018.3.20180919.24125-eap01d”
Data.SubProducts.#1 = “JetBrains dotTrace 2018.3 EAP 1 D Build 2018.3.20180919.24133-eap01d”
Data.SubProducts.#2 = “JetBrains ReSharper C++ 2018.3 EAP 1 D Build 2018.3.20180919.23820-eap01d”
Data.SubProducts.#3 = “JetBrains TeamCity Add-in 2018.3 EAP 1 D Build 2018.3.20180919.23833-eap01d”
Data.SubProducts.#4 = “JetBrains ReSharper 2018.3 EAP 1 D Build 2018.3.20180919.23820-eap01d”
Data.SubProducts.#5 = “JetBrains dotMemory 2018.3 EAP 1 D Build 2018.3.20180919.23937-eap01d”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    git::refs/heads/183::5d0d97d12df0d17c8a4183b9ac7f76b286efbc04


Platform\VisualStudio:
    git::refs/heads/183

Data.VsVersion = 15.8.28010.2026
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
 at JetBrains.ReSharper.Psi.Caches.Jobs.JobUpdateProjectFiles.<>c__DisplayClass14_0.<BuildSourceFile>b__0()
 at JetBrains.ReSharper.Psi.Caches.Jobs.JobUpdateProjectFiles.<>c__DisplayClass14_0.<BuildSourceFile>b__0()
 at JetBrains.Util.Logging.ILoggerStructuredEx.DoCalculation[T](LoggerWithSeverity logger, String key, String message, Func`1 action, Func`2 report)
 at JetBrains.ReSharper.Psi.Caches.Jobs.JobUpdateProjectFiles.BuildSourceFile(IPsiSourceFile sourceFile, IDocument doc)
 at JetBrains.ReSharper.Psi.Caches.Jobs.JobUpdateProjectFiles.<>c__DisplayClass13_1.<ExecuteUpdate>b__1(IPsiSourceFile file, IDocument doc)
 at JetBrains.ReSharper.Psi.Caches.Jobs.CacheJobService2.<>c__DisplayClass37_0`2.<WrappedJob>b__0()
 at JetBrains.ReSharper.Psi.Caches.Jobs.CacheJobService2.<>c__DisplayClass35_0`2.<ExecuteWithPrerocessAndInterrupt>b__1(T x, TPreprocessResult y)
 at JetBrains.Application.Threading.Tasks.TaskHostEx.<>c__DisplayClass5_1`2.<PreprocessSingleThreadedAndParallelize>b__1()
 at JetBrains.Application.Threading.Tasks.TaskHost.AccessViolationCatcher(Action action)
 at JetBrains.Application.Threading.Tasks.TaskHost.<>c__DisplayClass33_0.<Create>b__1(Object state)
 at System.Threading.Tasks.Task.InnerInvoke()
 at System.Threading.Tasks.Task.Execute()
 at System.Threading.Tasks.Task.ExecutionContextCallback(Object obj)
 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.Tasks.Task.ExecuteWithThreadLocal(Task& currentTaskSlot)
 at System.Threading.Tasks.Task.ExecuteEntry(Boolean bPreventDoubleExecution)
 at System.Threading.Tasks.TaskScheduler.TryExecuteTask(Task task)
 at JetBrains.Application.Threading.Tasks.Scheduler.JetScheduler.ExecuteTask(Task task)
 at JetBrains.Application.Threading.Tasks.Scheduler.JetSchedulerThread.EnqueueNextTask()
 at JetBrains.Application.Threading.Tasks.Scheduler.JetSchedulerThread.ThreadPoolProc()
at ANNOTATED: JetBrains.Application.Threading.Tasks.Scheduler.JetSchedulerThread #3.JetPool(S) #5(Action )
 at JetBrains.Util.Reflection.CallStackAnnotation.InvokeAnnotated(String classNameOfNewFrame, String methodNameOfNewFrame, Action actionToAnnotate)
 at JetBrains.Util.Reflection.CallStackAnnotation.CatchAnnotatedInvocation[TClassOfNewFrame](String methodNameOfNewFrame, Action actionToAnnotate)
 at JetBrains.Application.Threading.Tasks.Scheduler.JetSchedulerThread.<Start>b__20_0()
 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()
Viewing all 106942 articles
Browse latest View live


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