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

RSRP-371787: Treat .config files as XML for purposes of Code Cleanup

$
0
0
Reporter Joshua McKinney (joshka) Joshua McKinney (joshka)
Created Jun 20, 2013 5:26:56 AM
Updated Jan 27, 2017 8:05:28 PM
Subsystem No Subsystem
Assignee Slava Trenogin (derigel)
Priority Critical
State Submitted
Type Feature
Affected versions 8.0 EAP
Fix version Backlog
Fixed In Version ReSharper Undefined
VsVersion All Versions
NLog configuration file NLog.config is not treated as xml when I try to run code cleanup. R# says the command is unavailable.

Repro steps:
New console app. Add NLog.config nuget package. This will give you a stub config file to work with.
Open the config file and attempt to run code cleanup.

RSRP-462743: UnityConfig.cs is being ignored by ReSharper

$
0
0
Reporter Chris Butler (chris.butler@draycir.com) Chris Butler (chris.butler@draycir.com)
Created Jan 27, 2017 12:38:05 PM
Updated Jan 27, 2017 8:13:21 PM
Resolved Jan 27, 2017 8:05:28 PM
Subsystem Platform - VS Integration
Assignee Alexander Ulitin (alexander.ulitin)
Priority Critical
State Duplicate
Type Bug
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
I've got a class UnityConfig in a file App_Start\UnityConfig.cs which contains information about the my Unity Dependancy Injection configuration. I can see there are some things that ReSharper should hint to me about, but its not. And the shortcut Alt+Enter doesn't work. I've checked to see if the file has been ignored in ReSharper Options and I only have the defaults (only just installed ReSharper). I've renamed the class (but not the file)and ReSharper (Alt+Enter) starts working as expected. I've renamed the file (but not the class) and ReSharper (Alt+Enter) continues to not work. I deleted the file and created a new file called UnityConfig.cs and it continued to not work. I've also tried changing the namespace but that doesn't work either. I am sure its something to do with the file name. Is there some files that are always ignored?

RSRP-333405: Resharper ignores preprocessor directives

$
0
0
Reporter Michael (mgwalm) Michael (mgwalm)
Created Oct 28, 2012 4:49:54 AM
Updated Jan 27, 2017 8:30:10 PM
Resolved Oct 30, 2012 12:02:16 AM
Subsystem No Subsystem
Assignee Unassigned
Priority Normal
State Duplicate
Type Bug
Affected versions 7.0.1
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
Im adding this again as no one at resharper has looked at it.

it is becoming an urgent bug that seriously needs to be fixed.

it is also happening in the latest version

original description:
if i reformat or cleanup code it ignores any preprocessor directives when processing usings.

Eg, if i had the following in my code

  1. if !SILVERLIGHT && !NETFX_CORE
using System.Data;
  1. endif
using System.Collections.ObjectModel;

it ends up like this

  1. if !SILVERLIGHT && !NETFX_CORE
  2. endif
using System.Collections.ObjectModel;
using System.Data;

this of course stuffs up my code.
also, if i set the option to remove unused references, it will remove any the are in a preprocessor block that is not active at the moment

RSRP-256395: Code Cleanup - Optimize 'using' directives with conditional compilation cause mess

$
0
0
Reporter Kamil Chmielewski (camled) Kamil Chmielewski (camled)
Created Apr 14, 2011 2:17:14 PM
Updated Jan 27, 2017 8:38:19 PM
Resolved Nov 5, 2012 8:39:07 PM
Subsystem Code Style - Cleanup
Assignee Dmitry Osinovsky (Dmitry.Osinovsky)
Priority Show-stopper
State Fixed
Type Bug
Affected versions No Affected versions
Fix version 8.0
Fixed In Version ReSharper Undefined
VsVersion All Versions
example:

before code cleanup:

using System;
using System.Linq;

#if GUID
    using ID = System.Guid;
#else
    using ID = System.Int32;
#endif


after code cleanup:

#if GUID
    using ID = System.Guid;
#else
using System;
using ID = System.Int32;

#endif

RSRP-459465: Can't run a static method from .NET Core project

$
0
0
Reporter Konstantin Katsnelson (Konstantin.Katsnelson) Konstantin Katsnelson (Konstantin.Katsnelson)
Created Jun 22, 2016 6:07:35 PM
Updated Jan 27, 2017 9:22:58 PM
Subsystem Run Configurations
Assignee Slava Tutushkin (slava.tutushkin)
Priority Show-stopper
State Submitted
Type Bug
Affected versions No Affected versions
Fix version 2017.1
Fixed In Version ReSharper Undefined
VsVersion All Versions
Open/Create any .NET Core project (example: \\UNIT-436\Shared\hwapp) -> Create a static method (test() method in the example project) -> Run it -> You'll see an exception:
---------------------------
JetBrains Launcher – Loading
---------------------------
Cannot run JetBrains Launcher.

Failed to load an assembly from the file “C:\Temp\artifacts\bin\hwapp\hwapp.dll”.

Failed to invoke “LoadFrom” in class “Assembly” from assembly “mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089”.
Unknown error 0x80131604
Exception has been thrown by the target of an invocation.
---------------------------

RSRP-462755: Solution builder does not rebuild a C++ project after a file was changed

$
0
0
Reporter Igor Akhmetov (Igor.Akhmetov) Igor Akhmetov (Igor.Akhmetov)
Created Jan 27, 2017 9:31:42 PM
Updated Jan 27, 2017 9:31:42 PM
Subsystem Solution builder
Assignee Anton Spilnyy (Anton_Spilnyy)
Priority Show-stopper
State Submitted
Type Bug
Affected versions 2016.3.2
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
https://www.screencast.com/t/MDdtRwYz8wd1
1) Create a new solution using wizard, add a source file.
2) Build the solution.
3) Change the file.
3) Build the solution - the project does not get rebuilt.
When the same solution is opened (not created), everything works as expected.

RSRP-462147: document != null

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Sep 20, 2016 2:52:32 PM
Updated Jan 27, 2017 9:33:40 PM
Subsystem No Subsystem
Assignee Eugene Strizhok (Eugene.Strizhok)
Priority Show-stopper
State Submitted
Type Exception
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
JetBrains Rider 1.0 Build RS-163.3419

document != null

— EXCEPTION #1/2 [AssertionException]
Message = “document != null”
ExceptionPath = Root.InnerException
ClassName = JetBrains.Util.Assertion+AssertionException
HResult = COR_E_EXCEPTION=80131500
Source = JetBrains.Platform.DocumentModel
StackTraceString = “
  bij JetBrains.DocumentModel.RangeMarker.get_Document()
     bij JetBrains.ReSharper.UnitTestFramework.UnitTestingBetterGutterMarkIconsUpdater.UnitTestingHighlightersCache.<JetBrains.TextControl.DocumentMarkup.IDocumentMarkupEvents.OnDocumentMarkupChanged>b__8(IHighlighter highlighter, IUnitTestElement element)
     bij JetBrains.ReSharper.UnitTestFramework.UnitTestingBetterGutterMarkIconsUpdater.UnitTestingHighlightersCache.ForEachOurHighlighter(ICollection`1 highlighters, Action`2 action)
     bij JetBrains.ReSharper.UnitTestFramework.UnitTestingBetterGutterMarkIconsUpdater.UnitTestingHighlightersCache.JetBrains.TextControl.DocumentMarkup.IDocumentMarkupEvents.OnDocumentMarkupChanged(IDocumentMarkup markup, ICollection`1 added, ICollection`1 removed, ICollection`1 modified)
     bij JetBrains.TextControl.DocumentMarkup.DocumentMarkupManagerBase.<>c__DisplayClass6.<JetBrains.TextControl.DocumentMarkup.IDocumentMarkupEvents.OnDocumentMarkupChanged>b__3()
     bij JetBrains.Util.Logging.Logger.Catch(Action action)


— Outer —

— EXCEPTION #2/2 [LoggerException]
Message = “document != null”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  bij JetBrains.Util.Logging.Logger.LogException(Exception ex)
     bij JetBrains.Util.Logging.Logger.Catch(Action action)
     bij JetBrains.TextControl.DocumentMarkup.DocumentMarkupManagerBase.JetBrains.TextControl.DocumentMarkup.IDocumentMarkupEvents.OnDocumentMarkupChanged(IDocumentMarkup markup, ICollection`1 added, ICollection`1 removed, ICollection`1 modified)
     bij JetBrains.TextControl.DocumentMarkup.DocumentMarkupBase.<BatchChangeCookie>b__1()
     bij JetBrains.DataFlow.Disposable.NonFinalizableDisposable.Close()
     bij JetBrains.TextControl.DocumentMarkup.DocumentMarkupBase.RemoveHighlighters(Key key)
     bij JetBrains.ReSharper.Daemon.Impl.VisibleDocumentDaemonProcess.RemoveHighlightings()
     bij JetBrains.ReSharper.Daemon.Impl.DaemonImpl.RemoveDaemonFromDocument(IDocument document)
     bij JetBrains.ReSharper.Daemon.Impl.DaemonImpl.OnPsiModulesChange(PsiModuleChange psiModuleChange)
     bij JetBrains.ReSharper.Daemon.Impl.DaemonImpl.OnSomethingChanged(ChangeEventArgs changeEventArgs)
     bij JetBrains.DataFlow.Signal`1.NotifySinks(TValue payload)
     bij JetBrains.DataFlow.Signal`1.Fire(TValue value, Object cookie)
     bij JetBrains.Application.changes.ChangeManagerImpl.OnProviderChanged(IChangeProvider changeProvider, Object change, ITaskExecutor executor)
     bij JetBrains.ProjectModel.Transaction.ProjectModelBatchChangeManager.<>c__DisplayClass4.<EndTransaction>b__0()
     bij JetBrains.ProjectModel.Transaction.ProjectModelBatchChangeManager.EndTransaction(ProjectModelBatchChange projectModelBatchChange, ITaskExecutor executor)
     bij JetBrains.ReSharper.Host.Features.ProjectModel.View.ProjectModelTaskHandler.InvokeUnderTransaction(Action`1 action)
     bij JetBrains.ReSharper.Host.Features.ProjectModel.View.ProjectModelTaskHandler.<>c__DisplayClass21.<RemoveHandler>b__1f()
     bij JetBrains.ReSharper.Host.Features.ProjectModel.View.ProjectModelTaskHandler.HandleError(Action action)
     bij JetBrains.Platform.RdFramework.Tasks.RdEndpoint`2.<>c__DisplayClass5.<Set>b__4(Lifetime lf, TReq req)
     bij JetBrains.Platform.RdFramework.Tasks.RdEndpoint`2.<>c__DisplayClassa.<Init>b__7(SerializationCtx ctx, UnsafeReader reader)
     bij JetBrains.Platform.RdFramework.Impl.MessageBroker.Execute(Action`2 handler, RdId id, SerializationCtx ctx, Byte[] msg)
     bij JetBrains.Platform.RdFramework.Impl.MessageBroker.Subscription.<>c__DisplayClassa.<Invoke>b__9()
     bij JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
     bij JetBrains.Threading.ReentrancyGuard.ExecutePendingActions()
     bij JetBrains.Threading.JetDispatcher.Closure.Execute()
     bij JetBrains.Util.Concurrency.WinJetDispatcher.ProcessQueue()
     bij System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     bij System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     bij System.Windows.Threading.DispatcherOperation.InvokeImpl()
     bij System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     bij System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     bij System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     bij MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext executionContext, ContextCallback callback, Object state)
     bij System.Windows.Threading.DispatcherOperation.Invoke()
     bij System.Windows.Threading.Dispatcher.ProcessQueue()
     bij System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     bij MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     bij MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
     bij System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     bij System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     bij System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
     bij MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
     bij JetBrains.Interop.WinApi.User32Dll.DispatchMessageW(MSG* lpmsg)
     bij JetBrains.Interop.WinApi.User32Dll.DispatchMessageW(MSG* lpmsg)
     bij JetBrains.Util.Concurrency.WinJetDispatcher.WinJetDispatcherStaticMethods.InternalPumpMessagesOnce()
     bij JetBrains.Util.Concurrency.WinJetDispatcher.WinJetDispatcherStaticMethods.JetBrains.Util.Concurrency.IJetDispatcherStaticMethods.Run()
     bij JetBrains.ReSharper.Host.Product.ReSharperHostMain.Main(Lifetime lifetime, IReSharperHostSettings settings, ILogger logger, ShellModel shellModel, ApplicationShutdownRequests shutdownRequests)
     bij System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
     bij System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
     bij System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
     bij JetBrains.Application.Environment.RunsPublicStaticIntMain.<>c__DisplayClass4.<.ctor>b__0()
     bij JetBrains.Util.Logging.Logger.Catch(Action action)
     bij JetBrains.Threading.JetDispatcher.Closure.Execute()
     bij JetBrains.Util.Concurrency.WinJetDispatcher.ProcessQueue()
     bij System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     bij System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     bij System.Windows.Threading.DispatcherOperation.InvokeImpl()
     bij System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     bij System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     bij System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     bij MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext executionContext, ContextCallback callback, Object state)
     bij System.Windows.Threading.DispatcherOperation.Invoke()
     bij System.Windows.Threading.Dispatcher.ProcessQueue()
     bij System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     bij MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     bij MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
     bij System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     bij System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     bij System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
     bij MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
     bij MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
     bij MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
     bij System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
     bij JetBrains.DataFlow.Lifetimes.Using(Action`1 λ)
     bij JetBrains.Application.Environment.IJetHostEx.RunHostMessageLoop(IComponentContainer containerEnv)
     bij JetBrains.Application.Environment.HostParameters.JetHostParametersCaller.RunMainLoop(ComponentContainer containerEnv)
     bij JetBrains.Application.Environment.JetEnvironment.InternalRun(JetHostParametersCaller host, ComponentContainer containerEnv)
     bij JetBrains.Application.Environment.JetEnvironment.CreateAndRun(Full hostparams)
     bij JetBrains.ReSharper.Host.Product.ReSharperHostProgram.MainX(Assembly assembly, HostInfo hostInfo, String[] args)
     bij JetBrains.DataFlow.Lifetimes.Using[TRetVal](Func`2 λ)
     bij JetBrains.ReSharper.Host.Product.ReSharperHostProgram.Main()
     bij System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
     bij System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
     bij System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
     bij System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)



last.action = EditorBackSpace

app.eap = true
app.internal = false
app.build = RS-163.3419
app.version.major = 1
app.version.minor = 0
app.build.date = 2016-08-26T22:00:00.000+0000
app.build.date.release = 2016-08-26T22:00:00.000+0000
app.build.date.release = 2016-08-26T22:00:00.000+0000
app.compilation.timestamp = null
app.product.code = RS

os.name = Windows 7
java.version = 1.8.0_40
java.vm.vendor = Oracle Corporation

UIUtil.isRetina = false
UIUtil.isAppleRetina = false
JBUI.isHiDPI() = false
ShellHost.imageScaleFactor = 1

RSRP-462756: Date format auto complete inserts incorrect values

$
0
0
Reporter Brian Surowiec (xt0rted) Brian Surowiec (xt0rted)
Created Jan 28, 2017 1:05:14 AM
Updated Jan 28, 2017 1:05:14 AM
Subsystem No Subsystem
Assignee Unassigned
Priority Normal
State Submitted
Type Bug
Affected versions 2016.3
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
The auto complete menu for date formats lists a number of formats that when inserted don't match what the menu shows and are incorrect as a result.

  • yy-MM-dd ends up being yy-mm-dd
  •  yyyy MMMM dd ends up being yyyy mmmm dd
  • yy-MMM-dd dddends up being yy-mmm-dd ddd

I didn't check them all but those are the ones I know for sure are wrong.

RSRP-462757: Date format auto inserts an incorrect format while typing /

$
0
0
Reporter Brian Surowiec (xt0rted) Brian Surowiec (xt0rted)
Created Jan 28, 2017 1:12:50 AM
Updated Jan 28, 2017 1:12:50 AM
Subsystem No Subsystem
Assignee Unassigned
Priority Normal
State Submitted
Type Bug
Affected versions 2016.3
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
When I type the / in DateTime.Now.ToString("MM/") the format changes to YY-MM-DD/ even though I didn't select a value. The casing of MM doesn't matter, as soon as / is pressed the format changes. This happens with other values too but only seems to happen when the auto complete menu is visible. If you type the value fast enough so the menu doesn't show then it usually doesn't auto insert.

RSRP-462758: After using ''Change naming rule'' code editor ignores keyboard input

$
0
0
Reporter Dark Daskin (DarkDaskin) Dark Daskin (DarkDaskin)
Created Jan 28, 2017 1:18:27 AM
Updated Jan 28, 2017 1:18:27 AM
Subsystem Quick Fixes
Assignee Alexander Shvedov (shvedov)
Priority Normal
State Submitted
Type Bug
Affected versions 2016.3.2, 2016.3.1
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion VS 2015 RTM
After I use Inspection: Inconsistent Naming -> Change naming rule quick action and close the dialog I cannot edit the file anymore. All keyboard input is ignored in all editor tabs (including hotkeys). Editing with mouse (context menu or drag and drop) still works. After 1-2 minutes the keyboard works again. No indication of progress is shown anywhere. This happens even if I cancel the dialog.

Does not reproduce in ReSharper 9.2 installed on another machine.

RSRP-462288: Stop running search in find usages

$
0
0
Reporter Alexander Ulitin (alexander.ulitin) Alexander Ulitin (alexander.ulitin)
Created Dec 19, 2016 2:19:16 PM
Updated Jan 28, 2017 4:08:22 AM
Resolved Jan 13, 2017 2:26:50 PM
Subsystem Navigation - Search (Find Usages)
Assignee Alexander Ulitin (alexander.ulitin)
Priority Show-stopper
State Fixed
Type Bug
Affected versions No Affected versions
Fix version 2016.3.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
from: RSRP-145407
This does not work for me at all in 2016.3 RTM in a large C++ (native) project in VS 2013 (with only ReSharper C++ installed of the whole Ultimate suite). Even if I press Esc while the tooltip is shown at the invocation point, the search proceeds with ever new results being listed. If I do not press anything and focus moves to the Find Results with progress bar running, there's simply no UI to cancel the further search (Esc just returns the focus to the source code document). Moreover, if I close that Find Results pane or the entire Find Results panel altogether, high CPU usage and growing memory consumption indicate that the search still continues in the background (though I did not check how cached symbol files are being accessed). Do I need to file it as a Defect?

two steps to fix it:
1. fix bug with tab close (should stop backgroud finder)
2. add stop button to action bar to view partially resutls.
// cc: Ruslan Khamidullin

RSRP-462744: Tip of the day doesn't close in VS

$
0
0
Reporter Maltseva Ekaterina (Maltseva.Ekaterina) Maltseva Ekaterina (Maltseva.Ekaterina)
Created Jan 27, 2017 3:01:26 PM
Updated Jan 28, 2017 12:59:29 PM
Subsystem Tip of the day
Assignee Andrew Karpov (andrew.karpov)
Priority Major
State Submitted
Type Bug
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
I've got Tip of the day about Stack Trace Explorer in 2015 yesterday and it steel in the code window
And also clicking on the code text doesn't close it

RSRP-462759: Pop up appearing not in right place and not when needed and you need to click out of the VS to close it.

$
0
0
Reporter Nicolae Janga (neuron144) Nicolae Janga (neuron144)
Created Jan 28, 2017 3:48:07 PM
Updated Jan 28, 2017 3:48:07 PM
Subsystem No Subsystem
Assignee Unassigned
Priority Normal
State Submitted
Type Bug
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
I am getting this pop-up all the time when I am in C# coding, and I even don't need it and I even can't close it.
Can anybody help me to find what is this and how to turn it off?
Please see attached image for more details.
Thanks.

RSRP-462132: Can not update content of project. Cannot set the public key token and the public key value at the same type. Nom du paramètre : pktoken La valeur réelle était A446968A32B751DE.

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Oct 24, 2016 11:21:37 PM
Updated Jan 28, 2017 6:05:34 PM
Subsystem Platform
Assignee Serge Baltic (baltic)
Priority Critical
State Open
Type Exception
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
JetBrains Rider 1.0 Build RS-163.6834

— EXCEPTION #1/2 [ArgumentOutOfRangeException]
Message = “Cannot set the public key token and the public key value at the same type.”
ExceptionPath = Root.InnerException
ClassName = System.ArgumentOutOfRangeException
HResult = COR_E_ARGUMENTOUTOFRANGE=80131502
Source = JetBrains.Platform.Util
ParamName = pktoken
ActualValue = A446968A32B751DE
StackTraceString = “
  à JetBrains.Metadata.Utils.AssemblyNameInfo..ctor(String simplename, Version version, PublicKeyToken pktoken, String culture, String codeBase, Byte[] publickey, ProcessorArchitecture processor, Boolean isRetargetable, AssemblyIdentityContentTypes contenttype, Object custom)
     à JetBrains.ProjectModel.Model2.References.AssemblyReferenceTarget..ctor(AssemblyNameInfo assemblyName, FileSystemPath hintLocation)
     à JetBrains.ProjectModel.Update.ProjectToAssemblyReferenceDescriptor.CreateProjectReference(IProject project)
     à JetBrains.ProjectModel.Update.ProjectModelUpdater.UpdateProjectReferences(IProject project, IList`1 referenceDescriptors, Boolean notifyChangeManager)
     à JetBrains.ProjectModel.ProjectsHost.SolutionHost.Impl.SolutionHostSync.UpdateProject(ProjectHostChange change, IProject parentProject)


— Outer —

— EXCEPTION #2/2 [LoggerException]
Message = “
Can not update content of project. Cannot set the public key token and the public key value at the same type.
Nom du paramètre : pktoken
La valeur réelle était A446968A32B751DE.

ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  à JetBrains.Util.ILoggerEx.Error(ILogger this, Exception ex, String message)
     à JetBrains.ProjectModel.ProjectsHost.SolutionHost.Impl.SolutionHostSync.UpdateProject(ProjectHostChange change, IProject parentProject)
     à JetBrains.ProjectModel.ProjectsHost.SolutionHost.Impl.SolutionHostSync.AddOrUpdateProjectRecursively(ProjectHostChange change, IProject parentProject, Boolean initializing)
     à JetBrains.ProjectModel.ProjectsHost.SolutionHost.Impl.SolutionHostSync.AddOrUpdateProjectRecursively(ProjectHostChange change, IProject parentProject, Boolean initializing)
     à JetBrains.ProjectModel.ProjectsHost.SolutionHost.Impl.SolutionHostSync.AddOrUpdateProjectRecursively(ProjectHostChange change, Boolean initializing)
     à JetBrains.Util.Logging.Logger.Catch(Action action)
     à JetBrains.ProjectModel.Tasks.SolutionLoadTasksSchedulerBase.ExecuteOneTask(SolutionLoadTask task)
     à JetBrains.ProjectModel.Tasks.SolutionLoadTasksSchedulerAsync.ExecuteTask()
     à JetBrains.ProjectModel.Tasks.SolutionLoadTasksSchedulerAsync.DispatchTasks(Boolean background)
     à JetBrains.Application.IShellLocksEx.ExecuteWithReadLock(IShellLocks thіs, Action F)
     à JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
     à JetBrains.Threading.ReentrancyGuard.ExecutePendingActions()
     à JetBrains.Threading.JetDispatcher.Closure.Execute()
     à JetBrains.Util.Concurrency.WinJetDispatcher.ProcessQueue()
     à System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     à System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     à System.Windows.Threading.DispatcherOperation.InvokeImpl()
     à System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     à System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     à System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     à MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext executionContext, ContextCallback callback, Object state)
     à System.Windows.Threading.DispatcherOperation.Invoke()
     à System.Windows.Threading.Dispatcher.ProcessQueue()
     à System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     à MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     à MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
     à System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     à System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     à System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
     à MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
     à JetBrains.Interop.WinApi.User32Dll.DispatchMessageW(MSG* lpmsg)
     à JetBrains.Interop.WinApi.User32Dll.DispatchMessageW(MSG* lpmsg)
     à JetBrains.Util.Concurrency.WinJetDispatcher.WinJetDispatcherStaticMethods.InternalPumpMessagesOnce()
     à JetBrains.Util.Concurrency.WinJetDispatcher.WinJetDispatcherStaticMethods.JetBrains.Util.Concurrency.IJetDispatcherStaticMethods.Run()
     à JetBrains.ReSharper.Host.Product.ReSharperHostMain.Main(Lifetime lifetime, IReSharperHostSettings settings, ILogger logger, ShellProtocol protocol, RdModelRoot modelRoot, ApplicationShutdownRequests shutdownRequests)
     à System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
     à System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
     à System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
     à JetBrains.Application.Environment.RunsPublicStaticIntMain.<>c__DisplayClass4.<.ctor>b__0()
     à JetBrains.Util.Logging.Logger.Catch(Action action)
     à JetBrains.Threading.JetDispatcher.Closure.Execute()
     à JetBrains.Util.Concurrency.WinJetDispatcher.ProcessQueue()
     à System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     à System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     à System.Windows.Threading.DispatcherOperation.InvokeImpl()
     à System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     à System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
     à System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
     à MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext executionContext, ContextCallback callback, Object state)
     à System.Windows.Threading.DispatcherOperation.Invoke()
     à System.Windows.Threading.Dispatcher.ProcessQueue()
     à System.Windows.Threading.Dispatcher.WndProcHook(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     à MS.Win32.HwndWrapper.WndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam, Boolean& handled)
     à MS.Win32.HwndSubclass.DispatcherCallbackOperation(Object o)
     à System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     à System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, Object args, Int32 numArgs, Delegate catchHandler)
     à System.Windows.Threading.Dispatcher.LegacyInvokeImpl(DispatcherPriority priority, TimeSpan timeout, Delegate method, Object args, Int32 numArgs)
     à MS.Win32.HwndSubclass.SubclassWndProc(IntPtr hwnd, Int32 msg, IntPtr wParam, IntPtr lParam)
     à MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
     à MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
     à System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
     à JetBrains.DataFlow.Lifetimes.Using(Action`1 λ)
     à JetBrains.Application.Environment.IJetHostEx.RunHostMessageLoop(IComponentContainer containerEnv)
     à JetBrains.Application.Environment.HostParameters.JetHostParametersCaller.RunMainLoop(ComponentContainer containerEnv)
     à JetBrains.Application.Environment.JetEnvironment.InternalRun(JetHostParametersCaller host, ComponentContainer containerEnv)
     à JetBrains.Application.Environment.JetEnvironment.CreateAndRun(Full hostparams)
     à JetBrains.ReSharper.Host.Product.ReSharperHostProgram.MainX(Assembly assembly, HostInfo hostInfo, String[] args)
     à JetBrains.DataFlow.Lifetimes.Using[TRetVal](Func`2 λ)
     à JetBrains.ReSharper.Host.Product.ReSharperHostProgram.Main()
     à System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
     à System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
     à System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
     à System.Reflection.MethodBase.Invoke(Object obj, Object[] parameters)



last.action = EditorLineEnd

app.eap = true
app.internal = false
app.build = RS-163.6834
app.version.major = 1
app.version.minor = 0
app.build.date = 2016-10-21T04:00:00.000+0000
app.build.date.release = 2016-10-21T04:00:00.000+0000
app.build.date.release = 2016-10-21T04:00:00.000+0000
app.compilation.timestamp = null
app.product.code = RS

os.name = Windows 8.1
java.version = 1.8.0_112-release
java.vm.vendor = JetBrains s.r.o

UIUtil.isRetina = false
UIUtil.isAppleRetina = false
JBUI.isHiDPI() = false
ShellHost.imageScaleFactor = 1

RSRP-462760: "SearchUsagesDescriptor.GetDescriptorFactory" is shown in the window title

$
0
0
Reporter Igor Akhmetov (Igor.Akhmetov) Igor Akhmetov (Igor.Akhmetov)
Created Jan 28, 2017 7:14:20 PM
Updated Jan 28, 2017 7:14:20 PM
Subsystem Navigation - Search (Find Usages)
Assignee Alexander Ulitin (alexander.ulitin)
Priority Normal
State Submitted
Type Cosmetics
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
When search results get restored because of the name of the task in SearchUsagesDescriptor.GetDescriptorFactory.

RSRP-462761: Replace '' refactoring is broken

$
0
0
Reporter Alexander Zhuravlev (a553) Alexander Zhuravlev (a553)
Created Jan 29, 2017 2:22:07 PM
Updated Jan 29, 2017 2:22:07 PM
Subsystem Refactorings
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Submitted
Type Bug
Affected versions 2016.3.2
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion VS 2015 RTM
Example code:

double v = Console.Read();
bool b = v >= 10;

Perform the refactoring: Replace '<=' with '>'

double v = Console.Read();
bool b = !(!(v >= 10));

Perform the refactoring again – no changes in code

Looks like R# does the refactoring twice

RSRP-462144: The 'T' start tag on line 1 position 100 does not match the end tag of 'a'. Line 1, position 104.

$
0
0
Reporter Daniel (nesher) Daniel (nesher)
Created Nov 28, 2016 4:12:07 PM
Updated Jan 29, 2017 2:56:29 PM
Subsystem Refactorings
Assignee Alisa Afonina (alisa.afonina)
Priority Critical
State Submitted
Type Exception
Affected versions 2016.3
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs14 Wave 07 — JetBrains ReSharper Ultimate 2016.3 EAP 10 Build 107.0.20161124.90154-eap10

JetBrains dotTrace 2016.3 EAP 10 Build 2016.3.20161124.93157-eap10
JetBrains ReSharper 2016.3 EAP 10 Build 2016.3.20161124.91320-eap10

The 'T' start tag on line 1 position 100 does not match the end tag of 'a'. Line 1, position 104.

— EXCEPTION #1/2 [XmlException]
Message = “The 'T' start tag on line 1 position 100 does not match the end tag of 'a'. Line 1, position 104.”
ExceptionPath = Root.InnerException
ClassName = System.Xml.XmlException
Data.ReentrancyGuard.ActionName = “Update edit value”
HResult = Xml=80131940
Source = System.Xml
res = Xml_TagMismatchEx
args.#0 = T
args.#1 = 1
args.#2 = 100
args.#3 = a
lineNumber = 1
linePosition = 104
version = 2.0
StackTraceString = “
  at System.Xml.XmlTextReaderImpl.Throw(Exception e)
     at System.Xml.XmlTextReaderImpl.Throw(String res, String[] args)
     at System.Xml.XmlTextReaderImpl.ThrowTagMismatch(NodeData startTag)
     at System.Xml.XmlTextReaderImpl.ParseEndElement()
     at System.Xml.XmlTextReaderImpl.ParseElementContent()
     at System.Xml.XmlTextReaderImpl.Read()
     at System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
     at System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
     at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
     at System.Xml.XmlDocument.Load(XmlReader reader)
     at System.Xml.XmlDocument.LoadXml(String xml)
     at JetBrains.ReSharper.Feature.Services.UI.ActiveRichText.XMLFormatter.FormatXML(StringBuilder xml)
     at JetBrains.ReSharper.Feature.Services.Refactorings.ConflictsTreeList.ConflictFormattedTextProvider.get_FormattedText()
     at JetBrains.ReSharper.Feature.Services.UI.ActiveText.ActiveTextViewInfo.UpdateEditValue()
     at JetBrains.Application.IShellLocksEx.ExecuteWithReadLock(IShellLocks thіs, Action F)
     at JetBrains.Application.IShellLocksEx.<>c__DisplayClass4.<ExecuteOrQueueReadLock>b__3()
     at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)


— Outer —

— EXCEPTION #2/2 [LoggerException]
Message = “The 'T' start tag on line 1 position 100 does not match the end tag of 'a'. Line 1, position 104.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.ManagedThreadName = <NULL>
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2016.3 EAP 10 Build 107.0.20161124.90154-eap10”
Data.SubProducts.#0 = “JetBrains dotTrace 2016.3 EAP 10 Build 2016.3.20161124.93157-eap10”
Data.SubProducts.#1 = “JetBrains ReSharper 2016.3 EAP 10 Build 2016.3.20161124.91320-eap10”
Data.SccRevisionEnv = “
Platform\Core\Shell,
Platform\VisualStudio:
    git::refs/heads/wave07-eap10::d1f796aed4768825257329c2710b3b4732977908

Data.VsVersion = 14.0.25431.1
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
     at JetBrains.Threading.ReentrancyGuard.ExecuteOrQueue(String name, Action action, TaskPriority priority)
     at JetBrains.Threading.IThreadingEx.ExecuteOrQueue(IThreading thіs, String name, Action action)
     at JetBrains.Application.IShellLocksEx.ExecuteOrQueueReadLock(IShellLocks thіs, String name, Action F)
     at JetBrains.ReSharper.Feature.Services.UI.ActiveText.ActiveTextViewInfo.CalcHeight(Graphics graphics, Int32 width)
     at JetBrains.ReSharper.Feature.Services.UI.ActiveText.ActiveTextViewInfo.CalcHeight(GraphicsCache cache, Int32 width)
     at DevExpress.XtraTreeList.TreeList.GetMaxNodeCellHeight(TreeListNode node, TreeListColumn column, BaseEditViewInfo editInfo, Int32 defaultValue, AppearanceObject[] app, Int32 cellWidth)
     at DevExpress.XtraTreeList.TreeList.InternalCalcNodeHeight(TreeListNode node, Int32 nodeHeight, ArrayList ColumnWidthes, Boolean useCache, ArrayList& cells, Boolean even)
     at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.CalcNodeHeight(RowInfo ri, ArrayList& viewInfoList)
     at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.CalcRowGroupInfo(TreeListNodes nodes, CalcRowGroupInfoArgs rowArgs)
     at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.BriefCalcRowsInfo()
     at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.CalcRowsInfo()
     at DevExpress.XtraTreeList.ViewInfo.TreeListViewInfo.CalcViewInfo()
     at DevExpress.XtraTreeList.TreeList.UpdateLayout()
     at DevExpress.XtraTreeList.TreeList.OnPaint(PaintEventArgs e)
     at System.Windows.Forms.Control.PaintWithErrorHandling(PaintEventArgs e, Int16 layer)
     at System.Windows.Forms.Control.WmPaint(Message& m)
     at System.Windows.Forms.Control.WndProc(Message& m)
     at DevExpress.XtraEditors.Container.EditorContainer.WndProc(Message& m)
     at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
     at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
     at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

RSRP-462762: 2016.3 broke inline method refactoring and others (VS crash)

$
0
0
Reporter Alexander Zhuravlev (a553) Alexander Zhuravlev (a553)
Created Jan 29, 2017 3:02:26 PM
Updated Jan 29, 2017 3:05:10 PM
Subsystem Refactorings
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Submitted
Type Bug
Affected versions 2016.3.2
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion VS 2015 RTM
Try to inline P2 in this piece of code:
interface A
{
int P1 { get; }
int P2 { get; }
}

interface B<T> : A
{

}

class AImpl<T> : B<T>
{
public int P1
{
get { return 10; }
}

public int P2
{
get { return P1; }
}
}

class Usage
{
public void F()
{
B<int> a = new AImpl<int>();
Console.WriteLine(a.P2);
}
}

This produces the broken warning window:


You can expand the window down, but it doesn't make it any less broken:


Clicking next in my work project crashes Visual Studio instantly, but I couldn't reproduce this in test code above. The code is generic-heavy and I think the warning window is proper without generics, so I think there's something about generics making it crash VS.

This also happens for other refactorings, I think Change Signature, but the 'next' button is disabled there so no crash happens. I recently upgraded from 2016.2 (i think so) to 2016.3.2 and it broke it I think. I also cleared R# and VS cache before submitting this etc.

I ran with /ReSharper.Internal and reported 2 exceptions that happened when I tried to inline the property, not sure if relevant: DEXP-165617 RSRP-462144

RSRP-462505: freezing Visual Studio when "Calculating modified files"

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Jan 10, 2017 7:37:05 PM
Updated Jan 29, 2017 5:46:31 PM
Subsystem Psi - VB.NET
Assignee Olga Lukianova (olka)
Priority Show-stopper
State Submitted
Type Bug
Affected versions 2016.3.1
Fix version 2017.1
Fixed In Version ReSharper Undefined
VsVersion All Versions
    
223ede50 76f9e5fc [HelperMethodFrame_1OBJ: 223ede50] System.Array.Copy(System.Array, Int32, System.Array, Int32, Int32, Boolean)
223edf84 23336776 JetBrains.Util.LocalList1[[System.__Canon, mscorlib]].ToArray()
223edf9c 0c0a3222 JetBrains.ReSharper.Psi.ExtensionsAPI.Tree.CompositeElement.FindChildrenByRole[[System.__Canon, mscorlib]](Int16)
223edfd0 3ab855af JetBrains.ReSharper.Psi.VB.Impl.Tree.LocalDeclarationListStub.get_Declarations()
223edfd4 3ab85573 JetBrains.ReSharper.Psi.VB.Impl.Tree.LocalDeclarationStatement.<get_VariableDeclarations>b__0(JetBrains.ReSharper.Psi.VB.Tree.ILocalDeclarationList)
223edfe4 552129f8 System.Linq.Enumerable+<SelectManyIterator>d__16
2[[System.__Canon, mscorlib],[System.__Canon, mscorlib]].MoveNext()
223ee00c 706b6cf4 System.Collections.Generic.List1[[System.__Canon, mscorlib]]..ctor(System.Collections.Generic.IEnumerable1<System.__Canon>)
223ee040 5521321b System.Linq.Enumerable.ToList[[System.__Canon, mscorlib]](System.Collections.Generic.IEnumerable1<System.__Canon>)
223ee054 3ab85448 JetBrains.ReSharper.Psi.VB.Impl.Tree.LocalDeclarationStatement.get_VariableDeclarations()
223ee064 3ab851fc JetBrains.ReSharper.Psi.VB.Impl.Tree.Block.GetLocalVariables(JetBrains.ReSharper.Psi.VB.Tree.IVBTreeNode, System.Func
1<JetBrains.ReSharper.Psi.Resolve.ISymbolTable>, System.Collections.Generic.IEnumerable1<JetBrains.ReSharper.Psi.VB.Tree.IVBStatement>)
223ee0a0 3ab84adf JetBrains.ReSharper.Psi.VB.Impl.Tree.Block.AddGlobalDeclarations(JetBrains.ReSharper.Psi.Resolve.ISymbolTable, Int32, JetBrains.ReSharper.Psi.Resolve.SymbolTableMode)
223ee0bc 3aba44b9 JetBrains.ReSharper.Psi.Resolve.SymbolTableBuilder.WalkScopeStack(JetBrains.ReSharper.Psi.Tree.ITreeNode, Int32, JetBrains.ReSharper.Psi.Resolve.SymbolTableMode, Boolean)
223ee118 3aba4323 JetBrains.ReSharper.Psi.Resolve.SymbolTableBuilder.GetTable(JetBrains.ReSharper.Psi.Tree.ITreeNode, JetBrains.ReSharper.Psi.Resolve.SymbolTableMode)
223ee130 3aba42be JetBrains.ReSharper.Psi.Resolve.Managed.ManagedExtensionsDispatcher.GetSymbolTableForResolve(JetBrains.ReSharper.Psi.Resolve.Managed.IManagedQualifiableReference, JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext)
223ee140 3ab891b7 JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.ResolveContext.PreResolveCalculator(JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.IManagedTwoPhaseReferenceImpl, JetBrains.ReSharper.Psi.Resolve.ISymbolTable, JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext)
223ee150 11ed276f JetBrains.ReSharper.Psi.Impl.Resolve.Managed.CalculationProcess.Get[[System.__Canon, mscorlib],[System.__Canon, mscorlib],[System.__Canon, mscorlib]](JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.CascadingCacheKey, System.__Canon, System.__Canon, JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext, System.Func
4<System.__Canon,System.__Canon,JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext,System.__Canon>)
223ee19c 3ab890d9 JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.ResolveContext.PreResolve(JetBrains.ReSharper.Psi.Resolve.Managed.IManagedTwoPhaseReference, JetBrains.ReSharper.Psi.Resolve.ISymbolTable)
223ee1d4 3aba2ba8 JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpression.GetConstantValue(JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext)
223ee1ec 3aba29ec JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.ResolveContext.ConstantValueCalculator(JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.IManagedConstantValueOwnerImpl, System.Object, JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext)
223ee1f8 11ed276f JetBrains.ReSharper.Psi.Impl.Resolve.Managed.CalculationProcess.Get[[System.__Canon, mscorlib],[System.__Canon, mscorlib],[System.__Canon, mscorlib]](JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.CascadingCacheKey, System.__Canon, System.__Canon, JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext, System.Func4<System.__Canon,System.__Canon,JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext,System.__Canon>)
223ee244 3aba2608 JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.ResolveContext.ConstantValue(JetBrains.ReSharper.Psi.Resolve.Managed.IManagedConstantValueOwner)
223ee278 3aba23ef JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpression.CalculateOriginalExpressionType(JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext)
223ee298 3aba2350 JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpression.CalculateExpressionType(JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext)
223ee2ac 3aba1e22 JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.ResolveContext.ExpressionType(JetBrains.ReSharper.Psi.Resolve.Managed.IManagedExpression)
223ee2dc 3aba1d6b JetBrains.ReSharper.Psi.Resolve.Managed.ManagedExtensionsDispatcher.GetExpressionType(JetBrains.ReSharper.Psi.Tree.IExpression, JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext)
223ee2ec 3aba1d31 JetBrains.ReSharper.Psi.VB.Impl.Resolve.ExtensionArgumentInfoWithQualifier.GetExpressionType(JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext)
223ee2fc 3ab8bef2 JetBrains.ReSharper.Psi.VB.Impl.Resolve.ExtensionMethods.VBExtensionMethodUtil.GetQualifierType(JetBrains.ReSharper.Psi.VB.IVBArgumentInfo, JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext)
223ee308 3ab8bc82 JetBrains.ReSharper.Psi.VB.Impl.Resolve.Invocation.HasInstanceEntities(System.Collections.Generic.IList
1<JetBrains.ReSharper.Psi.Resolve.ISymbolInfo>)
223ee324 3ab8aea0 JetBrains.ReSharper.Psi.VB.Impl.Resolve.Invocation.Resolve(Boolean)
223ee388 3ab8a70e JetBrains.ReSharper.Psi.VB.Impl.Resolve.Invocation.Resolve(JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext, JetBrains.ReSharper.Psi.Resolve.ISymbolTable, System.Collections.Generic.IList1<JetBrains.ReSharper.Psi.Resolve.ISymbolFilter>, System.String, System.Collections.Generic.IList1<JetBrains.ReSharper.Psi.VB.IVBArgumentInfo>, JetBrains.ReSharper.Psi.VB.IVBArgumentInfo, JetBrains.ReSharper.Psi.VB.Tree.IVBTreeNode, JetBrains.ReSharper.Psi.Resolve.IAccessContext, System.Collections.Generic.IList1<JetBrains.ReSharper.Psi.IType>, Boolean)
223ee3f4 3aba38d5 JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpressionReference.ResolveIndex(JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext, JetBrains.ReSharper.Psi.Resolve.IAccessContext, JetBrains.ReSharper.Psi.Resolve.ISymbolTable)
223ee420 3ab892f1 JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpressionReference.PreResolve(JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext, JetBrains.ReSharper.Psi.Resolve.ISymbolTable)
223ee440 3ab891c3 JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.ResolveContext.PreResolveCalculator(JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.IManagedTwoPhaseReferenceImpl, JetBrains.ReSharper.Psi.Resolve.ISymbolTable, JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext)
223ee450 11ed276f JetBrains.ReSharper.Psi.Impl.Resolve.Managed.CalculationProcess.Get[[System.__Canon, mscorlib],[System.__Canon, mscorlib],[System.__Canon, mscorlib]](JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.CascadingCacheKey, System.__Canon, System.__Canon, JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext, System.Func
4<System.__Canon,System.__Canon,JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext,System.__Canon>)
223ee49c 3ab890d9 JetBrains.ReSharper.Psi.ExtensionsAPI.Resolve.Managed.ResolveContext.PreResolve(JetBrains.ReSharper.Psi.Resolve.Managed.IManagedTwoPhaseReference, JetBrains.ReSharper.Psi.Resolve.ISymbolTable)
223ee4d4 3aba1600 JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpressionReference.ResolveAsUnqualified(JetBrains.ReSharper.Psi.Resolve.Managed.IResolveContext, JetBrains.ReSharper.Psi.Resolve.ISymbolTable)
223ee4f0 3aba1167 JetBrains.ReSharper.Daemon.VB.Stages.VBSmartResolverProcess+ScopeResolver.CheckRedundantQualifierForReferenceExpression(JetBrains.ReSharper.Psi.VB.Tree.IPrimaryExpression)
223ee514 38bab6af JetBrains.ReSharper.Daemon.VB.Stages.VBSmartResolverProcess+ScopeResolver.VisitElement(JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee590 38bab457 JetBrains.ReSharper.Psi.Resolve.Resolver.ProcessAfterInterior(JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee5cc 38bab3e3 JetBrains.ReSharper.Daemon.VB.Stages.VBSmartResolverProcess+ScopeResolver.ProcessAfterInterior(JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee5dc 38bab36c JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee5ec 3ab88d4f JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee600 3aba2a6b JetBrains.ReSharper.Psi.VB.Impl.Tree.IndexExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee618 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee628 38bab2ee JetBrains.ReSharper.Psi.ExtensionsAPI.Tree.TreeElement.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee638 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee648 38bab2ee JetBrains.ReSharper.Psi.ExtensionsAPI.Tree.TreeElement.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee658 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee668 3aba2ac7 JetBrains.ReSharper.Psi.VB.Impl.Tree.IndexExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee680 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee690 3ab88d4f JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee6a4 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee6b4 3aba2adb JetBrains.ReSharper.Psi.VB.Impl.Tree.IndexExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee6cc 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee6dc 3ab88d4f JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee6f0 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee700 3aba2adb JetBrains.ReSharper.Psi.VB.Impl.Tree.IndexExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee718 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee728 3ab88d4f JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee73c 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee74c 3aba2adb JetBrains.ReSharper.Psi.VB.Impl.Tree.IndexExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee764 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee774 3ab88d4f JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee788 3aba2a6b JetBrains.ReSharper.Psi.VB.Impl.Tree.IndexExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee7a0 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee7b0 3ab88d4f JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee7c4 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee7d4 3aba2adb JetBrains.ReSharper.Psi.VB.Impl.Tree.IndexExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee7ec 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee7fc 3ab88d4f JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee810 3aba2a6b JetBrains.ReSharper.Psi.VB.Impl.Tree.IndexExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee828 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee838 3ab88d4f JetBrains.ReSharper.Psi.VB.Impl.Tree.ReferenceExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)
223ee84c 38bab362 JetBrains.ReSharper.Psi.RecursiveElementProcessorExtensions.ProcessDescendantForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor, JetBrains.ReSharper.Psi.Tree.ITreeNode)
223ee85c 3aba2adb JetBrains.ReSharper.Psi.VB.Impl.Tree.IndexExpression.ProcessDescendantsForResolve(JetBrains.ReSharper.Psi.IRecursiveElementProcessor)

RSRP-462763: Could not bind the component argument descriptor on JetBrains.Ide.SolutionBuilders.Prototype.Services.Execution.NuGet.Implementation.NugetRestorer. Ex

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Oct 27, 2016 9:58:36 AM
Updated Jan 29, 2017 7:06:22 PM
Subsystem No Subsystem
Assignee Alexander Ulitin (alexander.ulitin)
Priority Normal
State Submitted
Type Exception
Affected versions No Affected versions
Fix version No Fix versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs14 Wave 07 — JetBrains ReSharper Ultimate 2016.3 EAP 5 Build 107.0.20161020.73602-eap5

JetBrains dotMemory 2016.3 EAP 5 Build 2016.3.20161020.75848-eap5
JetBrains dotTrace 2016.3 EAP 5 Build 2016.3.20161020.75857-eap5
JetBrains ReSharper 2016.3 EAP 5 Build 2016.3.20161020.74630-eap5
JetBrains ReSharper C++ 2016.3 EAP 5 Build 2016.3.20161020.74743-eap5
JetBrains TeamCity Add-in 2016.3 EAP 5 Build 2016.3.20161020.74634-eap5

Could not bind the component argument descriptor on JetBrains.Ide.SolutionBuilders.Prototype.Services.Execution.NuGet.Implementation.NugetRestorer. Exception has been thrown by the target of an invocation. Object reference not set to an instance of an object.

— EXCEPTION #1/4 [NullReferenceException]
Message = “Object reference not set to an instance of an object.”
ExceptionPath = Root.InnerException.InnerException.InnerException
ClassName = System.NullReferenceException
HResult = COR_E_NULLREFERENCE=E_POINTER=80004003
Source = JetBrains.Platform.ProjectModel.NuGet
StackTraceString = “at JetBrains.ProjectModel.NuGet.NuGetHost..ctor(Lifetime lifetime, IShellLocks locks, NuGetAgnostic agnostic, NuGetCache cache, ISolution solution, IFileSystemTracker fileSystemTracker, NuGetFetchManager fetchManager, NuGetRunningState nuGetRunningState)”

— Outer —

— EXCEPTION #2/4 [TargetInvocationException]
Message = “Exception has been thrown by the target of an invocation.”
ExceptionPath = Root.InnerException.InnerException
ClassName = System.Reflection.TargetInvocationException
Data.DescriptorType = “JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor, JetBrains.Platform.ComponentModel, Version=107.0.0.0, Culture=neutral, PublicKeyToken=1010a0d8d6380325”
Data.State = Initializing
InnerException = “Exception #1 at Root.InnerException.InnerException.InnerException”
HResult = COR_E_TARGETINVOCATION=80131604
Source = mscorlib
StackTraceString = “
  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 JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstanceOf(Type type, IValueResolveContext context)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstance(IValueResolveContext context)
     at JetBrains.Application.Components.SingletonDescriptor.CreateInstanceChecked(OnError onError, IComponentContainer container)
     at JetBrains.Application.Components.SingletonDescriptor.GetValue()
     at JetBrains.Application.Components.SignatureResolution.BindArguments(List`1 argumentDescriptors, Object origin)


— Outer —

— EXCEPTION #3/4 [InvalidOperationException]
Message = “Could not bind the component argument descriptor on JetBrains.Ide.SolutionBuilders.Prototype.Services.Execution.NuGet.Implementation.NugetRestorer.”
ExceptionPath = Root.InnerException
ClassName = System.InvalidOperationException
Data.ArgumentDescriptorString = “JetBrains.ProjectModel.NuGet.NuGetHost [Singleton, Corrupted]”
Data.ArgumentDescriptorType = JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor
Data.ArgumentIndex = 2
Data.Origin = JetBrains.Ide.SolutionBuilders.Prototype.Services.Execution.NuGet.Implementation.NugetRestorer
InnerException = “Exception #2 at Root.InnerException.InnerException”
HResult = COR_E_INVALIDOPERATION=80131509

— Outer —

— EXCEPTION #4/4 [LoggerException]
Message = “Could not bind the component argument descriptor on JetBrains.Ide.SolutionBuilders.Prototype.Services.Execution.NuGet.Implementation.NugetRestorer.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.ManagedThreadName = <NULL>
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2016.3 EAP 5 Build 107.0.20161020.73602-eap5”
Data.SubProducts.#0 = “JetBrains dotMemory 2016.3 EAP 5 Build 2016.3.20161020.75848-eap5”
Data.SubProducts.#1 = “JetBrains dotTrace 2016.3 EAP 5 Build 2016.3.20161020.75857-eap5”
Data.SubProducts.#2 = “JetBrains ReSharper C++ 2016.3 EAP 5 Build 2016.3.20161020.74743-eap5”
Data.SubProducts.#3 = “JetBrains TeamCity Add-in 2016.3 EAP 5 Build 2016.3.20161020.74634-eap5”
Data.SubProducts.#4 = “JetBrains ReSharper 2016.3 EAP 5 Build 2016.3.20161020.74630-eap5”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    git::refs/heads/wave07-eap5

Platform\VisualStudio:
    git::refs/heads/wave07-eap5::d95369292c6e0c5323e2fd813af77c1a04dc8344

Data.VsVersion = 14.0.25431.1
InnerException = “Exception #3 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
  at JetBrains.Application.Components.SignatureResolution.BindArguments(List`1 argumentDescriptors, Object origin)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstanceOf(Type type, IValueResolveContext context)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstance(IValueResolveContext context)
     at JetBrains.Application.Components.SingletonDescriptor.CreateInstanceChecked(OnError onError, IComponentContainer container)
     at JetBrains.Application.Components.SingletonDescriptor.GetValue()
     at JetBrains.Application.Components.EnumerableValueResolver.EnumerableComponentDescriptor`1.<GetEnumerator>d__0.MoveNext()
     at JetBrains.Application.Components.EnumerableValueResolver.EnumerableComponentDescriptor`1.GetValue()
     at JetBrains.Application.Components.SignatureResolution.BindArguments(List`1 argumentDescriptors, Object origin)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstanceOf(Type type, IValueResolveContext context)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstance(IValueResolveContext context)
     at JetBrains.Application.Components.SingletonDescriptor.CreateInstanceChecked(OnError onError, IComponentContainer container)
     at JetBrains.Application.Components.SingletonDescriptor.GetValue()
     at JetBrains.Application.Components.SignatureResolution.BindArguments(List`1 argumentDescriptors, Object origin)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstanceOf(Type type, IValueResolveContext context)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstance(IValueResolveContext context)
     at JetBrains.Application.Components.SingletonDescriptor.CreateInstanceChecked(OnError onError, IComponentContainer container)
     at JetBrains.Application.Components.SingletonDescriptor.GetValue()
     at JetBrains.Application.Components.SignatureResolution.BindArguments(List`1 argumentDescriptors, Object origin)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstanceOf(Type type, IValueResolveContext context)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstance(IValueResolveContext context)
     at JetBrains.Application.Components.SingletonDescriptor.CreateInstanceChecked(OnError onError, IComponentContainer container)
     at JetBrains.Application.Components.SingletonDescriptor.GetValue()
     at JetBrains.Application.Components.ViewableValueResolver.ViewableComponentDescriptor`1.<>c__DisplayClass1.<View>b__0(Lifetime descriptorLifetime, IComponentDescriptor descriptor)
     at JetBrains.Application.Components.ComponentStorage.View[T](Lifetime lifetime, Action`2 viewer)
     at JetBrains.Application.Components.ViewableValueResolver.ViewableComponentDescriptor`1.View(Lifetime lifetime, Action`2 viewer)
     at JetBrains.IDE.SolutionBuilders.SolutionBuilder..ctor(IViewable`1 runners, BuildRequestFactory requestFactory, ISolution solution, Lifetime lifetime, ILogger logger, IShellLocks threading, ISolutionSaver solutionSaver)
     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 JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstanceOf(Type type, IValueResolveContext context)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstance(IValueResolveContext context)
     at JetBrains.Application.Components.SingletonDescriptor.CreateInstanceChecked(OnError onError, IComponentContainer container)
     at JetBrains.Application.Components.SingletonDescriptor.GetValue()
     at JetBrains.Application.Components.SignatureResolution.BindArguments(List`1 argumentDescriptors, Object origin)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstanceOf(Type type, IValueResolveContext context)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstance(IValueResolveContext context)
     at JetBrains.Application.Components.SingletonDescriptor.CreateInstanceChecked(OnError onError, IComponentContainer container)
     at JetBrains.Application.Components.SingletonDescriptor.GetValue()
     at JetBrains.Application.Components.SignatureResolution.BindArguments(List`1 argumentDescriptors, Object origin)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstanceOf(Type type, IValueResolveContext context)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstance(IValueResolveContext context)
     at JetBrains.Application.Components.SingletonDescriptor.CreateInstanceChecked(OnError onError, IComponentContainer container)
     at JetBrains.Application.Components.SingletonDescriptor.GetValue()
     at JetBrains.Application.Components.SignatureResolution.BindArguments(List`1 argumentDescriptors, Object origin)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstanceOf(Type type, IValueResolveContext context)
     at JetBrains.Application.Extensibility.PartCatalogTypeComponentDescriptor.CreateInstance(IValueResolveContext context)
     at JetBrains.Application.Components.SingletonDescriptor.CreateInstanceChecked(OnError onError, IComponentContainer container)
     at JetBrains.Application.Components.SingletonDescriptor.GetValue()
     at JetBrains.Application.Components.InitializationStrategyDefault.Schedule(Lifetime lifetime, IComponentDescriptor dsc)
     at JetBrains.Application.Components.ComponentStorage.InstantiateDescriptors(IEnumerable`1 descriptors)
     at JetBrains.Application.Components.ComponentStorage.ComposeDescriptors(ICollection`1 descriptors)
     at JetBrains.Application.Components.ComponentStorage.Compose()
     at JetBrains.ProjectModel.SolutionInstance.OpenSolution(ISolutionOwner solutionOwner)
     at JetBrains.ProjectModel.SolutionManagerBase.<>c__DisplayClass7.<CreateSolutionInstance>b__5()
     at JetBrains.ProjectModel.Tasks.SolutionLoadTasksSchedulerBase.<>c__DisplayClass8.<ExecuteOneTask>b__7()
     at JetBrains.Util.Logging.Logger.Catch(Action action)
     at JetBrains.ProjectModel.Tasks.SolutionLoadTasksSchedulerBase.ExecuteOneTask(SolutionLoadTask task)
     at JetBrains.ProjectModel.Tasks.SolutionLoadTasksSchedulerAsync.ExecuteTask()
     at JetBrains.ProjectModel.Tasks.SolutionLoadTasksSchedulerAsync.DispatchTasks(Boolean background)
     at JetBrains.ProjectModel.Tasks.SolutionLoadTasksSchedulerBase.ResumeWaitTask(SolutionLoadWaitHandle waitHandle, Boolean background)
     at JetBrains.ProjectModel.SolutionManagerBase.<>c__DisplayClass7.<CreateSolutionInstance>b__4()
     at JetBrains.Application.Components.DelayedInitializationStrategy.<>c__DisplayClassb.<Dispatch>b__a()
     at JetBrains.Util.Logging.Logger.Catch(Action action)
     at JetBrains.Application.Components.DelayedInitializationStrategy.<Dispatch>b__9()
     at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
     at JetBrains.Threading.ReentrancyGuard.ExecuteOrQueue(String name, Action action, TaskPriority priority)
     at JetBrains.Application.Components.DelayedInitializationStrategy.<Dispatch>b__8()
     at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate callback, Object args, Int32 numArgs)
     at System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, 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 MS.Internal.CulturePreservingExecutionContext.Run(CulturePreservingExecutionContext 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 System.Windows.Threading.ExceptionWrapper.TryCatchWhen(Object source, Delegate callback, 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)
Viewing all 106942 articles
Browse latest View live




Latest Images