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

RSRP-472021: Parameter information tooltip doesn't become transparent

$
0
0
Reporter Olga Rodygina (olgarodygina) Olga Rodygina (olgarodygina)
Created Oct 26, 2018 12:27:03 PM
Updated Oct 26, 2018 3:11:44 PM
Subsystem Parameter Info
Assignee Sergey Kuks (coox)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
void DoSomething(){}
void DoSomething(int){}
void DoSomething(float){}
int main()
{
DoSomething(); // caret is between "(" and ")"
return 0;
}


normal behaviour:
1) invoke "Resharper->Edit->Parameter information" using keyboard hotkey
2) press & hold Ctrl
result: tooltip become transparent

issue:
1) invoke "Resharper->Edit->Parameter information" using keyboard hotkey
2) press Down Arrow
3) press & hold Ctrl
result: nothing happens
4) press & hold Ctrl again
result: tooltip become transparent

RSRP-471888: 'var' Usage in Declarations does not work as expected

$
0
0
Reporter Bob Louwe (b.louwe) Bob Louwe (b.louwe)
Created Oct 18, 2018 12:25:38 PM
Updated Oct 26, 2018 3:19:05 PM
Subsystem Code Style
Assignee Razmik Seysyan (razmik)
Priority Normal
State Submitted
Type Bug
Fix version Backlog
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions

Consider the following code:

namespace ConsoleApp6
{
internal class Program
{
private static void Main(string[] args)
{
var myFirstSomeObject = SomeFactory.CreateSomeObject();
}

    private class Some
    {
    }
    private static class SomeFactory
    {
        public static Some CreateSomeObject()
        {
            return new Some();
        }
    }
}

}

With the ['var Usage'in Declarations] set to [Use 'var' when evident] for all types, ReSharper suggests correctly to change:
var myFirstSomeObject = SomeFactory.CreateSomeObject();
to
Some myFirstSomeObject = SomeFactory.CreateSomeObject();

But take a look at the screenshot, ReSharper reports that Some is a simple type. But according to Microsoft, see https://docs.microsoft.com/en-us/dotnet/csharp/tour-of-csharp/types-and-variables, an object is not a simple type. Simples types are the build-in types, excluding string and object. So my questions is, what is the definition of a simple type according ReSharper?

RSRP-471920: Resharper ignores project's dependencies to a native / CLI C++ project and fails to build the solution

$
0
0
Reporter Andrey Simukov (Andrey.Simukov) Andrey Simukov (Andrey.Simukov)
Created Oct 19, 2018 6:12:54 PM
Updated Oct 26, 2018 3:22:10 PM
Subsystem Solution builder
Assignee Anton Spilnyy (Anton.Spilnyy)
Priority Normal
State Fixed In Branch
Type Bug
Fix version 2018.3
Affected versions 2018.3, 2018.2.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
When using Resharper build on solutions that contains vcxprojs, Resharper totally ignores the dependencies to these projects, leading to failing builds because the associated DLL cannot be found.

It does this with both native and C++/CLI vcxprojs.
It does this when the solution mixes vcxprojs and csprojs but also when the solution has only vcxprojs.

Building again multiple times allows to succeed the build for the solution but is really annoying.

Visual Studio build works well on all of these configurations.


RSRP-462985: Another type of Unit Test that fails in ReSharper but not in VS MSTest

$
0
0
Reporter David Pokluda (dpokluda) David Pokluda (dpokluda)
Created Feb 8, 2017 5:30:45 AM
Updated Oct 26, 2018 3:26:42 PM
Resolved Oct 26, 2018 3:26:42 PM
Subsystem Unit Testing
Assignee Eugene Strizhok (Eugene.Strizhok)
Priority Critical
State Fixed
Type Bug
Fix version Unidentified prior version
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
The following simple test will pass in VS Run Tests but will fail when using ReSharper Run Tests.

    [TestClass]
public class MyDataTest
{
[TestMethod]
public void SortByTimestamp()
{
List<MyData> list = new List<MyData>()
{
new MyData("A"),
new MyData("B"),
new MyData("C")
};

Assert.AreEqual(3, list.Count);
Assert.AreEqual("A", list[0].Name);

list.Sort((a, b) => b.Timestamp.CompareTo(a.Timestamp));
Assert.AreEqual(3, list.Count);
Assert.AreEqual("A", list[0].Name);
}
}

public class MyData
{
public MyData(string name)
{
Name = name;
// Timestamp is not set - default value of 0
}

public string Name { get; private set; }

public DateTime Timestamp { get; }
}

Attached is the Visual Studio 2015 solution with the project. Just build and run the test.

RSRP-471949: MethodBase.GetParameters isn't annotated with ItemNotNull

RSRP-471782: Object reference not set to an instance of an object.

$
0
0
Reporter Tatyana Lunegova (lunega) Tatyana Lunegova (lunega)
Created Oct 8, 2018 4:16:13 PM
Updated Oct 26, 2018 3:50:42 PM
Subsystem UI
Assignee Daniel Degtyarev (daniel.degtyarev)
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 _cfcc61ab — JetBrains ReSharper Ultimate 2018.3 EAP 2 D Build 183.0.20181008.52751-eap02d

JetBrains dotCover 2018.3 EAP 2 D Build 2018.3.20181008.54209-eap02d
JetBrains dotMemory 2018.3 EAP 2 D Build 2018.3.20181008.54742-eap02d
JetBrains dotTrace 2018.3 EAP 2 D Build 2018.3.20181008.54205-eap02d
JetBrains ReSharper 2018.3 EAP 2 D Build 2018.3.20181008.54358-eap02d
JetBrains ReSharper C++ 2018.3 EAP 2 D Build 2018.3.20181008.54739-eap02d

SubProducts.0 = JetBrains dotCover 2018.3 EAP 2 D Build 2018.3.20181008.54209-eap02d
SubProducts.1 = JetBrains dotTrace 2018.3 EAP 2 D Build 2018.3.20181008.54205-eap02d
SubProducts.2 = JetBrains ReSharper C++ 2018.3 EAP 2 D Build 2018.3.20181008.54739-eap02d
SubProducts.3 = JetBrains ReSharper 2018.3 EAP 2 D Build 2018.3.20181008.54358-eap02d
SubProducts.4 = JetBrains dotMemory 2018.3 EAP 2 D Build 2018.3.20181008.54742-eap02d

Object reference not set to an instance of an object.

— EXCEPTION #1/2 [NullReferenceException]
Message = “Object reference not set to an instance of an object.”
ExceptionPath = Root.InnerException
ClassName = System.NullReferenceException
HResult = E_POINTER=COR_E_NULLREFERENCE=80004003
Source = JetBrains.ReSharper.Features.Internal
StackTraceString = “
 at JetBrains.ReSharper.Features.Internal.ReSharper.Options.InternalPage.<.ctor>b__2_5()
 at JetBrains.ReSharper.Features.Internal.ReSharper.Options.InternalPage.<.ctor>b__2_5()
 at JetBrains.Util.Logging.Logger.Catch(Action action)


— Outer —

— EXCEPTION #2/2 [LoggerException]
Message = “Object reference not set to an instance of an object.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.ManagedThreadName = <NULL>
Data.LastExtension = cs
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2018.3 EAP 2 D Build 183.0.20181008.52751-eap02d”
Data.SubProducts.#0 = “JetBrains dotCover 2018.3 EAP 2 D Build 2018.3.20181008.54209-eap02d”
Data.SubProducts.#1 = “JetBrains dotTrace 2018.3 EAP 2 D Build 2018.3.20181008.54205-eap02d”
Data.SubProducts.#2 = “JetBrains ReSharper C++ 2018.3 EAP 2 D Build 2018.3.20181008.54739-eap02d”
Data.SubProducts.#3 = “JetBrains ReSharper 2018.3 EAP 2 D Build 2018.3.20181008.54358-eap02d”
Data.SubProducts.#4 = “JetBrains dotMemory 2018.3 EAP 2 D Build 2018.3.20181008.54742-eap02d”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    git::refs/heads/183::b75ce5f3ddc9fcaf8271084383142645117824fd


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

Data.VsVersion = 15.8.28010.2041
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
 at JetBrains.Util.Logging.Logger.Catch(Action action)
 at JetBrains.Util.Logging.Logger.Catch(Action action)
 at JetBrains.ReSharper.Features.Internal.ReSharper.Options.InternalPage..ctor(Lifetime lifetime, OptionsSettingsSmartContext optionsSettingsSmartContext, IOptionsDialogViewOwner optionsDialogOwner, IMultiCoreFibersPoolStrategyOptionsProvider multiCoreFibersPoolStrategyOptionsProvider)
 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.Components.SingletonTypeComponentDescriptor.CreateInstanceOf(Type type, IValueResolveContext context)
 at JetBrains.Application.Components.SingletonTypeComponentDescriptor.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, ICollection`1 dscs, IComponentContainer container)
 at JetBrains.Application.Components.ComponentStorage.ComposeDescriptors(ICollection`1 descriptors)
 at JetBrains.Application.Components.ComponentStorage.Compose()
 at JetBrains.Application.Components.FactoryComponentContainer.CreateInstanceCore(Lifetime lifetime, Type type, IComponentContainer parent, Object[] args)
 at JetBrains.Application.Components.FactoryComponentContainer.CreateInstance(Lifetime lifetime, Type objecttype, IComponentContainer parent, Object[] args)
 at JetBrains.Application.UI.Options.OptionsDialog.OptionsPageFactory.CreateOptionsPage(OptionsPageDescriptor pagedescriptor, IComponentContainer containerParent, OptionsSettingsSmartContext injectSettingsStoreSmartContext, IShellLocks locks)
 at JetBrains.Application.UI.Options.OptionsDialog.OptionsPageInOptionsContextAutomation.GetOrCreateOptionsPage()
 at JetBrains.Application.UI.Options.OptionsDialog.OptionsPageInOptionsContextAutomation.GetControlFromExistingOptionsPage()
 at JetBrains.Application.UI.Options.OptionsDialog.OptionsAutomation.GetSearchablePage(OptionsPageWithoutContextAutomationFactory factoryPagesWithoutContext, OptionsPageWithoutContextAutomation node, OptionsPageInOptionsContextAutomationFactory fact, UserFriendlySettingsLayer optContext, IContextBoundSettingsStoreLive trans)
 at JetBrains.Application.UI.Options.OptionsDialog.OptionsAutomation.<>c__DisplayClass12_0.<HandleSearchRequest>b__0()
 at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
 at JetBrains.Threading.ReentrancyGuard.TryExecute(String name, Action action)
 at JetBrains.Threading.ReentrancyGuardEx.ExecuteOrQueue(ReentrancyGuard thіs, Lifetime lifetime, String name, Action F, TaskPriority priority)
 at JetBrains.Application.Threading.IThreadingEx.ExecuteOrQueue(IThreading thіs, Lifetime lifetime, String name, Action action, TaskPriority priority)
 at JetBrains.Application.UI.Options.OptionsDialog.OptionsAutomation.HandleSearchRequest(Lifetime currentSearchLifetime, OptionsModel model, IShellLocks locks, String searchText, IProperty`1 propFactoryPagesInContext, OptionsPageWithoutContextAutomationFactory factoryPagesWithoutContext, StaticKeywordsPerPageKeeper staticKeywordsPerPageKeeper, UsageStatistics activityTracking)
 at JetBrains.Application.UI.Options.OptionsDialog.OptionsAutomation.<>c__DisplayClass11_4.<.ctor>b__33(LifetimeDefinition definition, Lifetime currentSearchLifetime)
 at JetBrains.DataFlow.Lifetimes.Define(Lifetime lifetime, String id, Action`2 FAtomic, ILog logger)
 at JetBrains.DataFlow.SequentialLifetimes.DefineNext(Action`2 FNext)
 at JetBrains.Application.UI.Options.OptionsDialog.OptionsAutomation.<>c__DisplayClass11_1.<.ctor>b__22(String args)
 at JetBrains.DataFlow.Signal`1.NotifySinks(TValue payload)
 at JetBrains.DataFlow.Signal`1.Fire(TValue value, Object cookie)
 at JetBrains.DataFlow.Signal`1.Fire(TValue value)
 at JetBrains.UI.Options.OptionsDialog2.OptionsView.<>c__DisplayClass14_0.<CreateTemplate_PagesTree>b__6(Object o, SearchViewEventArgs e)
 at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor)
 at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments)
 at System.Delegate.DynamicInvokeImpl(Object[] args)
 at System.Windows.RoutedEventArgs.InvokeEventHandler(Delegate genericHandler, Object genericTarget)
 at System.Windows.RoutedEventArgs.InvokeHandler(Delegate handler, Object target)
 at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object target, RoutedEventArgs routedEventArgs)
 at System.Windows.EventRoute.InvokeHandlersImpl(Object source, RoutedEventArgs args, Boolean reRaised)
 at System.Windows.UIElement.RaiseEventImpl(DependencyObject sender, RoutedEventArgs args)
 at System.Windows.UIElement.RaiseEvent(RoutedEventArgs e)
 at JetBrains.UI.Controls.Misc.SearchTextBox.RaiseSearchEvent()
 at JetBrains.UI.Controls.Misc.SearchTextBox.OnSeachEventDelayTimerTick(Object o, EventArgs e)
 at System.Windows.Threading.DispatcherTimer.FireTick(Object unused)
 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 MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(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.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)
 at MS.Win32.UnsafeNativeMethods.DispatchMessage(MSG& msg)
 at System.Windows.Threading.Dispatcher.PushFrameImpl(DispatcherFrame frame)
 at System.Windows.Threading.Dispatcher.PushFrame(DispatcherFrame frame)
 at System.Windows.Window.ShowHelper(Object booleanBox)
 at System.Windows.Window.Show()
 at System.Windows.Window.ShowDialog()
 at JetBrains.UI.Extensions.WindowUtil.<>c__DisplayClass15_2.<ShowDialogWithGuardedCreation>b__5()
 at JetBrains.Application.UI.Components.UIApplication.ApplicationModalStateEx.<>c__DisplayClass0_0`1.<WithModalState>b__0(Lifetime lifetime)
 at JetBrains.DataFlow.Lifetimes.Using[TRetVal](Func`2 λ)
 at JetBrains.Application.UI.Components.UIApplication.ApplicationModalStateEx.WithModalState[T](IApplicationModalState appModalState, Func`1 modalAction)
 at JetBrains.UI.Extensions.WindowUtil.ShowDialogWithGuardedCreation(Lifetime lifetime, WindowModality modality, Func`3 FCreateView, IThreading threading, Object ownerwindow, IApplicationModalState applicationModalState)
 at JetBrains.UI.Extensions.WindowUtil.<>c__DisplayClass15_0.<ShowDialogWithGuardedCreation>b__1()
 at JetBrains.Util.Logging.Logger.Catch(Action action)
 at JetBrains.Application.Threading.IThreadingEx.<>c__DisplayClass18_1.<ExecuteOrQueueWhenNotGuarded>b__4()
 at JetBrains.Threading.JetDispatcher.Closure.Execute()
 at JetBrains.Util.Concurrency.WinJetDispatcher.ProcessQueue(Int32 nMinBucket)
 at JetBrains.Util.Concurrency.WinJetDispatcher.<>c__DisplayClass18_0.<BeginInvokeCore>b__0()
 at System.Windows.Threading.DispatcherOperation.InvokeDelegateCore()
 at System.Windows.Threading.DispatcherOperation.InvokeImpl()
 at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(Object state)
 at MS.Internal.CulturePreservingExecutionContext.CallbackWrapper(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.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)

RSRP-471934: Incorrect Merge conditional expression: use null-coalescing expression

$
0
0
Reporter Jan-Olof Stenmark (josjosjos) Jan-Olof Stenmark (josjosjos)
Created Oct 22, 2018 12:23:25 PM
Updated Oct 26, 2018 4:19:08 PM
Subsystem Quick Fixes
Assignee Alexander Shvedov (shvedov)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions 2018.2.3
Fixed In Version ReSharper Undefined
VsVersion All Versions

Resharper (2018.2.3) makes a suggestion
suggestion
to change the expression

var correct = objA != null ? objA.Value.GetValueOrDefault() : 1;

to a non-equivalent incorrect expression

var incorrect = objA?.Value ?? 1;

in the example code below:

using System.Diagnostics;

namespace ConsoleApp1
{
    class Program
    {
        class ClassA
        {
            public decimal? Value;
        }

        static void f(ClassA objA)
        {
            var correct = objA != null ? objA.Value.GetValueOrDefault() : 1;

            // Resharper 2018.2.3 wants to change the "correct" expression above using
            // "merge conditional expression: use null-coalescing expression" to the "incorrect" expression below

            var incorrect = objA?.Value ?? 1;

            Debug.Assert(correct == incorrect);
        }

        static void Main(string[] args)
        {
            f(new ClassA());
        }
    }
}

Tested with:
ReSharper 2018.2.3
Visual Studio Enterprise 2017 15.8.7

RSRP-472022: no R# after changing TargetFramework attr in .netcore csproj file

$
0
0
Reporter Kirill Falk (kfalk) Kirill Falk (kfalk)
Created Oct 26, 2018 4:38:39 PM
Updated Oct 26, 2018 4:42:20 PM
Subsystem Platform
Assignee Sergey Kuks (coox)
Priority Critical
State Submitted
Type Bug
Fix version 2018.3
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
Reproducible both in R# and Rider
  • create a simple .NETCore ConsoleApp, open Program.cs
  • edit csproj(don't reload sln on this step), change netcoreapp2.1 -> net452
  • save csproj -> no R# in Program.cs , only project unload/reload helps

RSRP-470658: Incorrect "Cannot resolve symbol 'DataType'" error for x:DataType in Xamarin

$
0
0
Reporter Andrey Simukov (Andrey.Simukov) Andrey Simukov (Andrey.Simukov)
Created Jul 18, 2018 6:54:34 PM
Updated Oct 26, 2018 4:43:57 PM
Subsystem XAML
Assignee Alexander Shvedov (shvedov)
Priority Normal
State Fixed In Branch
Type Bug
Fix version No Fix versions
Affected versions 2018.1
Fixed In Version ReSharper Undefined
VsVersion All Versions
XAML like the following should work without error:

<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:App20"
x:Class="App20.MainPage"
BackgroundColor="BlanchedAlmond"
x:DataType="local:MainPageViewModel">
<StackLayout VerticalOptions="Center"
HorizontalOptions="Center">
<Label Text="{Binding Item.Name}" />
<Label Text="{Binding Item.ChildItem.Name}" />
</StackLayout>
</ContentPage>

RSRP-472023: Incorrect: Expression is always 'false' of serviceEndpoint.Binding ==null

$
0
0
Reporter Lior Banai (liorbanai) Lior Banai (liorbanai)
Created Oct 26, 2018 5:03:10 PM
Updated Oct 26, 2018 5:08:18 PM
Subsystem Code Analysis - C#
Assignee Ivan Serduk (IvanSerduk)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions

when I create Endpoint via :
code
protected override ServiceEndpoint CreateDescription()
{
ServiceEndpoint serviceEndpoint = base.CreateDescription();
...
if (serviceEndpoint.Binding == null)
{

                serviceEndpoint.Binding = CreateBinding(selectedEndpoint.Binding, selectedEndpoint.BindingConfiguration, group);
            }

}
Resharper warns that the line
if (serviceEndpoint.Binding == null)
is always false but infact it is null at runtime.

Using Resharper version 2017.3.2

RSRP-472024: Encapsulate Field [TS]: checkboxes are not aligned.

$
0
0
Reporter Lilia Shamsutdinova (Lilia.Shamsutdinova) Lilia Shamsutdinova (Lilia.Shamsutdinova)
Created Oct 26, 2018 5:12:33 PM
Updated Oct 26, 2018 5:12:33 PM
Subsystem Refactorings
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Submitted
Type Bug
Fix version 2018.3
Affected versions 2018.3
Fixed In Version ReSharper Undefined
VsVersion All Versions

Branch: 183-alisa.textbox.1.
JetBrains.ReSharperUltimate.2018.3.EAP5D.Checked.(183.0.20181024.13948-eap05d).

Actual result:
Checkboxes are not aligned:

Expected result:

RSRP-470946: Cannot Advance beyond TotalWorkUnits.

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Jul 11, 2018 8:09:10 AM
Updated Oct 26, 2018 5:13:36 PM
Subsystem External Sources
Assignee Nikita Raba (nikita.raba)
Priority Critical
State Submitted
Type Exception
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs15 Wave 182 Hive _c4e60166 — JetBrains ReSharper Ultimate 2018.2 EAP 2 Build 182.0.20180706.95810-eap02

JetBrains ReSharper 182 Build 182.0.20180706.100921-eap02

Cannot Advance beyond TotalWorkUnits.

— EXCEPTION #1/2 [InvalidOperationException]
Message = “Cannot Advance beyond TotalWorkUnits.”
ExceptionPath = Root.InnerException
ClassName = System.InvalidOperationException
Data.Units = 1
HResult = COR_E_INVALIDOPERATION=80131509

— Outer —

— EXCEPTION #2/2 [LoggerException]
Message = “Cannot Advance beyond TotalWorkUnits.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.ManagedThreadName = <NULL>
Data.LastExtension = cs
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2018.2 EAP 2 Build 182.0.20180706.95810-eap02”
Data.SubProducts.#0 = “JetBrains ReSharper 182 Build 182.0.20180706.100921-eap02”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    git::refs/heads/182-eap2

Platform\VisualStudio:
    git::refs/heads/182-eap2::9f014d91e51bc72e022f44cb319e1913fc745c28

Data.VsVersion = 15.7.27703.2035
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
 at JetBrains.Application.Progress.ProgressIndicatorBase.Advance(Double units)
 at JetBrains.Application.Progress.ProgressIndicatorBase.Advance(Double units)
 at JetBrains.Application.Progress.SubProgressIndicator.Advance(Double units)
 at JetBrains.Application.Progress.SubProgressIndicator.Advance(Double units)
 at JetBrains.Application.Progress.SubProgressIndicator.Advance(Double units)
 at JetBrains.Application.Progress.ProgressIndicatorBase.Stop()
 at JetBrains.Application.Progress.ProgressIndicatorBase.Dispose()
 at JetBrains.Symbols.Downloader.HttpDownloader.DelegatingIndicator.Dispose()
 at JetBrains.Symbols.Downloader.HttpDownloader.DownloadThread(IProgressIndicator indicator, String taskName)
 at JetBrains.Symbols.Downloader.HttpDownloader.SafeDownloadThread(IProgressIndicator indicator, String taskName)
 at JetBrains.Symbols.Downloader.HttpDownloader.<>c__DisplayClass3_1.<Execute>b__1()
 at JetBrains.Util.Logging.Logger.Catch(Action action)
 at JetBrains.Symbols.Downloader.HttpDownloader.<>c__DisplayClass3_1.<Execute>b__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()

RSRP-472025: Array overload not same as local function

$
0
0
Reporter Olga Rodygina (olgarodygina) Olga Rodygina (olgarodygina)
Created Oct 26, 2018 5:18:02 PM
Updated Oct 26, 2018 5:18:14 PM
Subsystem TypeScript
Assignee Nikita Popov (poksh)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
This gives error on x => x.setting for global. Notice the difference between getValue gobal and getValue? f. (Compile is fine)

//declare global {
// export interface Array<T> {
// toDictionary<TKey extends string>(this: T[], getKey: (item: T) => TKey): {[id in TKey]?: T };
// toDictionary<TKey extends string, TValue>(this: T[], getKey: (item: T) => TKey, getValue: (item: T) => TValue): {[id in TKey]?: TValue };
// }
//}
function f<T, TKey extends string>(arr: T[], getKey: (item: T) => TKey): {[id in TKey]?: T }
function f<T, TKey extends string, TValue>(arr: T[], getKey: (item: T) => TKey, getValue?: (item: T) => TValue): { [id in TKey]?: TValue } {
return null;
}
let ghj = f(this.formats, x=> x.setting);
let d = this.formats.toDictionary(x => x.setting);


Changing global decl to getValue? make resharper unable to match overload (Compile is fine)

changing signature to

let d = this.formats.toDictionary<ExportTypes>(x => x.setting);

still problem, still compile file.

let d = this.formats.toDictionary<ExportTypes, IExportSpec>(x => x.setting);

still problem, still compile file.

let d = this.formats.toDictionary<ExportTypes, IExportSpec>(x => x.setting, x=>x);

back to original problem

RSRP-472026: Locate in Assembly Explorer does not locate the specific element

$
0
0
Reporter Tatyana Lunegova (lunega) Tatyana Lunegova (lunega)
Created Oct 26, 2018 5:27:22 PM
Updated Oct 26, 2018 5:27:22 PM
Subsystem Assembly Explorer
Assignee Daniel Degtyarev (daniel.degtyarev)
Priority Show-stopper
State Submitted
Type Bug
Fix version 2018.3
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
If Locate in Assembly Explorer is called for a type from an assembly not listed in the Assembly Explorer, the assembly is added to the Assembly Explorer but it is not expanded.
It works fine when the old tree is used.

RSRP-472027: Align checkbox with label.

$
0
0
Reporter Lilia Shamsutdinova (Lilia.Shamsutdinova) Lilia Shamsutdinova (Lilia.Shamsutdinova)
Created Oct 26, 2018 5:30:39 PM
Updated Oct 26, 2018 5:30:39 PM
Subsystem Refactorings
Assignee Alisa Afonina (alisa.afonina)
Priority Minor
State Submitted
Type Cosmetics
Fix version 2018.3
Affected versions 2018.3
Fixed In Version ReSharper Undefined
VsVersion All Versions

Branch: 183-alisa.textbox.1.
JetBrains.ReSharperUltimate.2018.3.EAP5D.Checked.(183.0.20181024.13948-eap05d).

Actual result:

Previous version:


RSRP-472028: "Convert local variable or field to const" deletes inline comment

$
0
0
Reporter Maria Pleskunina (Maria.Pleskunina) Maria Pleskunina (Maria.Pleskunina)
Created Oct 26, 2018 5:35:52 PM
Updated Oct 26, 2018 5:36:03 PM
Subsystem Quick Fixes
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions 2018.2.3
Fixed In Version ReSharper Undefined
VsVersion All Versions

Create a method with this line:
var one = 1 /* why one? The comment would tell you if it survived the refactoring */ ;
And apply the refactoring.
Expected: The refactoring is applied and the comment survives intact
Actual : The refactoring is applied and the comment is deleted

RSRP-472029: Replace Constructor With Factory: No error icon and no tooltip when dialog opens.

$
0
0
Reporter Lilia Shamsutdinova (Lilia.Shamsutdinova) Lilia Shamsutdinova (Lilia.Shamsutdinova)
Created Oct 26, 2018 5:51:21 PM
Updated Oct 26, 2018 5:51:21 PM
Subsystem Refactorings
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Submitted
Type Bug
Fix version 2018.3
Affected versions 2018.3
Fixed In Version ReSharper Undefined
VsVersion All Versions

Branch: 183-alisa.textbox.1.
JetBrains.ReSharperUltimate.2018.3.EAP5D.Checked.(183.0.20181024.13948-eap05d).

Actual result:
No error icon and no tooltip when dialog opens:

Expected result:

NOTE:
error icon and tooltip are shown after the field is updated and then reverted to default value.

RSRP-470679: sourceFile != null

$
0
0
Reporter Lilia Shamsutdinova (Lilia.Shamsutdinova) Lilia Shamsutdinova (Lilia.Shamsutdinova)
Created Jul 19, 2018 1:19:55 PM
Updated Oct 26, 2018 5:57:04 PM
Subsystem TypeScript
Assignee Nikita Popov (poksh)
Priority Normal
State Submitted
Type Exception
Fix version Backlog
Affected versions 2018.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs15 Wave 182 Hive _3f3919c0ReSharper — JetBrains ReSharper Ultimate 2018.2 EAP 4 D Build 182.0.20180716.124159-eap04d

JetBrains ReSharper 182 Build 182.0.20180717.73042-eap04d
JetBrains ReSharper C++ 182 Build 182.0.20180717.73043-eap04d
JetBrains TeamCity Add-in 182 Build 182.0.20180717.73037-eap04d

sourceFile != null

— EXCEPTION #1/2 [AssertionException]
Message = “sourceFile != null”
ExceptionPath = Root.InnerException
ClassName = JetBrains.Util.Assertion+AssertionException
HResult = COR_E_EXCEPTION=80131500
Source = JetBrains.ReSharper.Psi
StackTraceString = “
 at JetBrains.ReSharper.Psi.PsiSourceFileExtensions.GetProject(IPsiSourceFile sourceFile)
 at JetBrains.ReSharper.Psi.PsiSourceFileExtensions.GetProject(IPsiSourceFile sourceFile)
 at JetBrains.ReSharper.Psi.JavaScript.Util.TypeScript.TsProjectModelUtil.GetLocalTsOptions(IPsiSourceFile file, JavaScriptServices services)
 at JetBrains.ReSharper.Psi.JavaScript.Util.TypeScript.TsBindUtil.IsOldStyleImport(ITreeNode context, JavaScriptServices javaScriptServices)
 at JetBrains.ReSharper.Psi.JavaScript.Util.TypeScript.TsBindUtil.BindToDeclaredElement(ITreeNode referenceExpression, IDeclaredElement element, JsResolveContext jsResolveContext, ITsStatement& insertedImportStatement, ITsSubstitution substitution, TsElementFactory factory, ITreeNode contextNode)
 at JetBrains.ReSharper.Psi.JavaScript.Impl.Tree.TypeScript.TsReferenceExpression.BindingModification(IReferenceExpressionReference reference, IDeclaredElement declaredElement, String name)
 at JetBrains.ReSharper.Psi.JavaScript.Impl.Resolve.ReferenceExpressionReference.<BindTo>b__29_0(IReferenceExpressionReference reference, IDeclaredElement declaredElement)
 at JetBrains.ReSharper.Psi.JavaScript.Impl.TypeScriptReferenceBindingUtil.<>c__DisplayClass0_0`1.<BindReferenceTo>b__0(TReferenceType x)
 at JetBrains.ReSharper.Psi.ExtensionsAPI.SharedImplUtil.BindingTransaction[T](T& reference, Func`2 processor, Func`2 resolveChecker)
 at JetBrains.ReSharper.Psi.JavaScript.Impl.TypeScriptReferenceBindingUtil.BindReferenceTo[TReferenceType](TReferenceType reference, IDeclaredElement element, Func`3 modification)
 at JetBrains.ReSharper.Psi.JavaScript.Impl.Resolve.ReferenceExpressionReference.BindTo(IDeclaredElement element)
 at JetBrains.ReSharper.Psi.JavaScript.Services.JavaScriptElementFactory.SubstituteOneArg(Object arg, ITreeNode nodeToReplace, ITreeNode parent)
 at JetBrains.ReSharper.Psi.JavaScript.Impl.Services.TypeScript.TsElementFactory.SubstituteOneArg(Object arg, ITreeNode nodeToReplace, ITreeNode parent)
 at JetBrains.ReSharper.Psi.JavaScript.Services.JavaScriptElementFactory.SubstituteNodes(ITreeNode root, ParameterMarker[] markers, Object[] args)
 at JetBrains.ReSharper.Psi.JavaScript.Services.JavaScriptElementFactory.CreateBlock(String format, Object[] args)
 at JetBrains.ReSharper.Refactorings.JavaScript.EncapsulateField.TypeScript.TypeScriptEncapsulateField.CreatePropertyDeclaration(IDeclaredElement fieldElement, String fieldNewName)
 at JetBrains.ReSharper.Refactorings.EncapsulateField.EncapsulateFieldRefactoring.Execute(IProgressIndicator pi)
 at JetBrains.ReSharper.Feature.Services.Refactorings.DrivenRefactoringConflictSearcher.<>c__DisplayClass2_2.<SearchConflicts>b__0()
 at JetBrains.ReSharper.Psi.Transactions.PsiTransactionCookie.ExecuteConditionally(IPsiServices psiServices, Func`1 action, String commandName)
 at JetBrains.ReSharper.Feature.Services.Refactorings.DrivenRefactoringConflictSearcher.SearchConflicts(IProgressIndicator pi, Boolean canPerformRefactoring)
 at JetBrains.ReSharper.Feature.Services.Refactorings.WorkflowExecuter.<>c__DisplayClass42_0.<InitPage>b__0(IProgressIndicator pi)
 at JetBrains.ReSharper.Feature.Services.Refactorings.FunctionWrapper`1.ExecuteAction(IProgressIndicator pi)


— Outer —

— EXCEPTION #2/2 [LoggerException]
Message = “sourceFile != null”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.ManagedThreadName = <NULL>
Data.LastExtension = ts
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2018.2 EAP 4 D Build 182.0.20180716.124159-eap04d”
Data.SubProducts.#0 = “JetBrains ReSharper C++ 182 Build 182.0.20180717.73043-eap04d”
Data.SubProducts.#1 = “JetBrains TeamCity Add-in 182 Build 182.0.20180717.73037-eap04d”
Data.SubProducts.#2 = “JetBrains ReSharper 182 Build 182.0.20180717.73042-eap04d”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    git::refs/heads/182-alisa.refactorings.2::6c3c994818fe8f87893044175e80994eb75de508


Platform\VisualStudio:
    git::refs/heads/182-alisa.refactorings.2

Data.VsVersion = 15.7.27703.2042
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
 at JetBrains.ReSharper.Feature.Services.Refactorings.FunctionWrapper`1.ExecuteAction(IProgressIndicator pi)
 at JetBrains.ReSharper.Feature.Services.Refactorings.FunctionWrapper`1.ExecuteAction(IProgressIndicator pi)
 at JetBrains.UI.SrcView.Progress.UITaskExecutorRun.RunStartTaskCallTaskAction(IProperty`1 isDone, ProgressIndicator progressIndicator, TaskThreadAffinity taskThreadAffinity, Action`1 FTask, JetDispatcher dispatcherPrimary)
 at JetBrains.UI.SrcView.Progress.UITaskExecutorRun.RunCore(TaskThreadAffinity taskThreadAffinity, Action`1 FTask, Func`3 FAttachUi, ProgressIndicator progressIndicator, IWin32Window parentWindow, IThreading threading, WorkerThreadShop workerThreadShop, Boolean enforceModalityState)
 at JetBrains.UI.SrcView.Progress.UITaskExecutorRun.Run(TaskThreadAffinity taskThreadAffinity, Action`1 task, Func`3 FAttachUi, ProgressIndicator indicator, IWin32Window parentWindow, IThreading threading, WorkerThreadShop workerThreadShop, Boolean enforceModalityState)
 at JetBrains.PsiFeatures.UIInteractive.Refactorings.RefactoringsTaskExecutor.JetBrains.Application.Progress.ITaskExecutor.ExecuteTask(String name, TaskCancelable cancelable, Action`1 task)
 at JetBrains.ReSharper.Feature.Services.Refactorings.WorkflowExecuter.RunWithProgress[TResult](Func`2 action, String taskName, TResult& result)
 at JetBrains.ReSharper.Feature.Services.Refactorings.WorkflowExecuter.InitPage(IRefactoringPage page)
 at JetBrains.ReSharper.Feature.Services.Refactorings.WorkflowExecuter.NextPage(IRefactoringPage currentPage)
 at JetBrains.ReSharper.Feature.Services.Refactorings.WorkflowExecuter.MoveToNextPage()
 at JetBrains.PsiFeatures.UIInteractive.Refactorings.CommonUI.WorkflowHostWithWizardForm.<NextClick>b__18_0()
 at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
 at JetBrains.Threading.ReentrancyGuard.ExecuteOrQueue(String name, Action action, TaskPriority priority)
 at JetBrains.PsiFeatures.UIInteractive.Refactorings.CommonUI.WorkflowHostWithWizardForm.NextClick(Object sender, EventArgs e)
 at JetBrains.PsiFeatures.UIInteractive.Refactorings.CommonUI.RefactoringWizardForm.myContinueButton_Click(Object sender, EventArgs e)
 at System.Windows.Forms.Control.OnClick(EventArgs e)
 at System.Windows.Forms.Button.OnClick(EventArgs e)
 at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
 at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
 at System.Windows.Forms.Control.WndProc(Message& m)
 at System.Windows.Forms.ButtonBase.WndProc(Message& m)
 at System.Windows.Forms.Button.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-471581: Vakue tracker - endless processing Origin for method GetLevelExpression

$
0
0
Reporter Maltseva Ekaterina (Maltseva.Ekaterina) Maltseva Ekaterina (Maltseva.Ekaterina)
Created Sep 20, 2018 6:59:23 PM
Updated Oct 26, 2018 6:44:59 PM
Subsystem Inspect This - Value Tracking
Assignee Alexander Ulitin (alexander.ulitin)
Priority Normal
State Fixed In Branch
Type Performance Problem
Fix version 2018.3
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
In linq2db solution on the method, GetLevelExpression call Value Origin
Click on 'Expand all' for a few time - the tree has a lot of tree levels
On some level (5-6) the processing of the tree is not ending

I've got 2 snapshots for this situation

RSRP-472030: Cannot advance the progress because it's not running.

$
0
0
Reporter Maltseva Ekaterina (Maltseva.Ekaterina) Maltseva Ekaterina (Maltseva.Ekaterina)
Created Oct 26, 2018 6:43:50 PM
Updated Oct 26, 2018 6:49:56 PM
Subsystem Inspect This - Value Tracking
Assignee Alexander Ulitin (alexander.ulitin)
Priority Normal
State Submitted
Type Exception
Fix version 2018.3
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs15 Wave 183 Hive _8ca9bb57 — JetBrains ReSharper Ultimate 2018.3 EAP 5 D Build 183.0.20181026.52016-eap05d

JetBrains dotCover 2018.3 EAP 5 D Build 2018.3.20181026.53334-eap05d
JetBrains dotMemory 2018.3 EAP 5 D Build 2018.3.20181026.60046-eap05d
JetBrains dotTrace 2018.3 EAP 5 D Build 2018.3.20181026.53340-eap05d
JetBrains ReSharper 2018.3 EAP 5 D Build 2018.3.20181026.53558-eap05d
JetBrains ReSharper C++ 2018.3 EAP 5 D Build 2018.3.20181026.60105-eap05d
JetBrains TeamCity Add-in 2018.3 EAP 5 D Build 2018.3.20181026.60052-eap05d

ManagedThreadName = JetPool(L) #4
ManagedThreadName = JetPool(L) #2
ManagedThreadName = JetPool(L) #6
ManagedThreadName = JetPool(L) #1
ManagedThreadName = JetPool(L) #3
LastExtension = cs
SubProducts.0 = JetBrains dotCover 2018.3 EAP 5 D Build 2018.3.20181026.53334-eap05d
SubProducts.1 = JetBrains dotTrace 2018.3 EAP 5 D Build 2018.3.20181026.53340-eap05d
SubProducts.2 = JetBrains ReSharper C++ 2018.3 EAP 5 D Build 2018.3.20181026.60105-eap05d
SubProducts.3 = JetBrains TeamCity Add-in 2018.3 EAP 5 D Build 2018.3.20181026.60052-eap05d
SubProducts.4 = JetBrains ReSharper 2018.3 EAP 5 D Build 2018.3.20181026.53558-eap05d
SubProducts.5 = JetBrains dotMemory 2018.3 EAP 5 D Build 2018.3.20181026.60046-eap05d

Cannot advance the progress because it's not running.

— EXCEPTION #1/2 [InvalidOperationException]
Message = “Cannot advance the progress because it's not running.”
ExceptionPath = Root.InnerException
ClassName = System.InvalidOperationException
Data.Units = 0.0012000000000000001
HResult = COR_E_INVALIDOPERATION=80131509

— Outer —

— EXCEPTION #2/2 [LoggerException]
Message = “Cannot advance the progress because it's not running.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.ManagedThreadName = “JetPool(L) #5”
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2018.3 EAP 5 D Build 183.0.20181026.52016-eap05d”
Data.SubProducts.#0 = “JetBrains dotCover 2018.3 EAP 5 D Build 2018.3.20181026.53334-eap05d”
Data.SubProducts.#1 = “JetBrains dotTrace 2018.3 EAP 5 D Build 2018.3.20181026.53340-eap05d”
Data.SubProducts.#2 = “JetBrains ReSharper C++ 2018.3 EAP 5 D Build 2018.3.20181026.60105-eap05d”
Data.SubProducts.#3 = “JetBrains TeamCity Add-in 2018.3 EAP 5 D Build 2018.3.20181026.60052-eap05d”
Data.SubProducts.#4 = “JetBrains ReSharper 2018.3 EAP 5 D Build 2018.3.20181026.53558-eap05d”
Data.SubProducts.#5 = “JetBrains dotMemory 2018.3 EAP 5 D Build 2018.3.20181026.60046-eap05d”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    git::refs/heads/183::225294d3e1f45b374e2b6aae65fdf638d6e16ba2


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

Data.VsVersion = 15.8.28010.2048
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
 at JetBrains.Application.Progress.ProgressIndicator.JetBrains.Application.Progress.IProgressIndicator.Advance(Double units)
 at JetBrains.Application.Progress.ProgressIndicator.JetBrains.Application.Progress.IProgressIndicator.Advance(Double units)
 at JetBrains.Application.Progress.SubProgressIndicator.Advance(Double units)
 at JetBrains.Application.Progress.SubProgressIndicator.Advance(Double units)
 at JetBrains.Application.Progress.SubProgressIndicator.Advance(Double units)
 at JetBrains.Application.Progress.SubProgressIndicator.Advance(Double units)
 at JetBrains.Application.Progress.SubProgressIndicator.Advance(Double units)
 at JetBrains.ReSharper.Psi.Impl.Search.Operations.FinderSearchDomainVisitor`1.<>c__DisplayClass22_0.<VisitPsiSourceFile>b__0()
 at JetBrains.ReSharper.Psi.Extensions.<>c__DisplayClass0_0.<EnqueueJob>b__0()
 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 #A.JetPool(L) #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>