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

RSRP-471758: Running an xUnit from xUnit.net Test icon (as opposed to xUnit.net Test Class icon) always ends up Inconclusive

$
0
0
Reporter Jacob Mojiwat (jmojiwat) Jacob Mojiwat (jmojiwat)
Created Oct 5, 2018 3:42:34 AM
Updated Oct 15, 2018 12:10:07 PM
Subsystem Unit Testing
Assignee Eugene Strizhok (Eugene.Strizhok)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions

Clicking the class level icon runner will run the tests, but clicking on the method level icon runner will return inconclusive.

Error returned by Resharper:

2018.10.05 08:34:05.678 ERROR JetBrains.Util.InternalErrorException: Unexpected: Unable to find any matching test cases
at JetBrains.ReSharper.UnitTestRunner.Xunit.TestRunner.Run(XunitTestAssemblyTask assemblyTask)

2018.10.05 08:34:05.698 WARN Element Testing was left pending after its run completion.
2018.10.05 08:34:05.698 WARN Element Test1 was left pending after its run completion.

Source code to reproduce the error:

public class Testing
{
    [Theory, TestAutoData]
    public void Test1(Multiplier sut)
    {
        var x = sut.Execute(1);
        x.Should().Be(2);
    }

    [Theory, TestAutoData]
    public void Test2(Multiplier sut)
    {
        var x = sut.Execute(1);
        x.Should().Be(2);
    }

    public class Multiplier
    {
        public int Execute(int i)
        {
            return i * 2;
        }
    }

    private class TestAutoDataAttribute : AutoDataAttribute
    {
        public TestAutoDataAttribute() : base(() => 
            new Fixture().Customize(new CompositeCustomization(new Customization(), new AutoNSubstituteCustomization())))
        {}
    }

    private class Customization : ICustomization
    {
        public void Customize(IFixture fixture)
        {
            fixture.Register(() => new Multiplier());
        }
    }
}

Using
Resharper 2018.2.3
Visual Studio 15.8.6

Compiling against .Net 4.7.2


RSRP-464002: Do not suggest adding reference to the same project for multi target frameworks project

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Mar 28, 2017 3:46:52 PM
Updated Oct 15, 2018 12:10:28 PM
Resolved Oct 15, 2018 12:10:28 PM
Subsystem Quick Fixes
Assignee Lilia Shamsutdinova (Lilia.Shamsutdinova)
Priority Critical
State Obsolete
Type Bug
Fix version Backlog
Affected versions 2017.1
Fixed In Version ReSharper Undefined
VsVersion VS 2017 RTM
The solution from https://youtrack.jetbrains.com/issue/RSRP-464001

After applying this quickfix


we get this

RSRP-115863: Option: Silent code cleanup on Save (and Save All)

$
0
0
Reporter Lars Corneliussen (lcorneliussen) Lars Corneliussen (lcorneliussen)
Created Jul 28, 2009 3:53:23 PM
Updated Oct 15, 2018 12:12:20 PM
Subsystem Code Style - Cleanup
Assignee Razmik Seysyan (razmik)
Priority Critical
State Open
Type Feature
Fix version Backlog
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
When I hit CTRL-S, or when files are saved automatically for a build or checkin, I want silent clean-up to run automatically.

RSRP-465731: InspectCode.exe Verbosity Levels

$
0
0
Reporter Calvin Pomerantz (calvinpom) Calvin Pomerantz (calvinpom)
Created Aug 2, 2017 6:18:24 PM
Updated Oct 15, 2018 12:14:15 PM
Resolved Oct 15, 2018 12:13:02 PM
Subsystem ReSharper Automation Tools (Command Line)
Assignee Slava Trenogin (derigel)
Priority Normal
State Fixed
Type Feature
Fix version 2018.3
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
It would be useful for InspectCode.exe to have a command line flag to only output issues of certain severities.
For example, "\verbosity 4" to only output error level issues, or "\verbosity 3" to output error and warning level issues.
Issues of other severities would be ignored.

RSRP-315568: Problem with sealed class

$
0
0
Reporter Marius (geimas5) Marius (geimas5)
Created Jun 22, 2012 4:58:55 PM
Updated Oct 15, 2018 12:17:56 PM
Subsystem Quick Fixes
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Submitted
Type Bug
Fix version Backlog
Affected versions 7.0, 2018.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
If i have the following class that is used through structuremap i get the "The class is never instantaniated.

public sealed class AbnormalityReporterFactory : IAbnormalityReporterFactory
{

}

If i now apply the quickfix "Make class 'class name'" abstract i end up with the following code:
public abstract sealed class AbnormalityReporterFactory : IAbnormalityReporterFactory
{

}

RSRP-465536: Expose a command to perform format/code clean up synchronously

$
0
0
Reporter Mackenzie Zastrow (Mackenzie.Zastrow) Mackenzie Zastrow (Mackenzie.Zastrow)
Created Jul 20, 2017 9:37:44 PM
Updated Oct 15, 2018 12:26:28 PM
Subsystem Code Style - Cleanup
Assignee Razmik Seysyan (razmik)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions 2017.2, 2016.3
Fixed In Version ReSharper Undefined
VsVersion VS 2015 RTM, VS 2017 RTM
It seems like at some point, the Resharper_ReSharper_SilentCleanupCode was changed to be asynchronous instead of synchronous.

This command is used by various Visual Studio Extensions to format the document before save, for example, my ReSharperFormatOnSave extension. This change to asynchronous now breaks these extensions, as right after the document is saved, the document is formatted and needs to be re-saved (which will reformat the document again of course).

If you're not going to implement something like RSRP-115863 any time soon, I request that you either restore the synchronous behavior of the Resharper_ReSharper_SilentCleanupCode command, or add another command that acts synchronously. Or alternatively, expose an api that allows us to invoke the behavior directly in a VS-extension.

RSRP-468645: Get a warning when using [Values] attribute in NUnit tests with [Test] attribute

$
0
0
Reporter Anup Shah (Anup.Shah) Anup Shah (Anup.Shah)
Created Mar 12, 2018 1:49:29 PM
Updated Oct 15, 2018 12:31:52 PM
Resolved Sep 27, 2018 6:45:38 PM
Subsystem Code Analysis - C#
Assignee Vladimir Belov (Vladimir.Belov)
Priority Normal
State Fixed
Type Bug
Fix version 2018.3
Affected versions 2016.3.2
Fixed In Version ReSharper Undefined
VsVersion All Versions

Problem:
Try to use the [Values] attribute in an NUnit test, as seen in any example here: https://github.com/nunit/docs/wiki/Values-Attribute

By default you will get the NUnit.MethodWithParametersAndTestAttribute warning.

Example:

Expected behaviour:
No warning.

RSRP-287549: Make method private quick fix doesn't appear immediately after code analysis

$
0
0
Reporter Greg Law (lothan) Greg Law (lothan)
Created Jan 3, 2012 3:47:02 AM
Updated Oct 15, 2018 12:39:35 PM
Resolved Oct 15, 2018 12:39:34 PM
Subsystem Quick Fixes
Assignee Lilia Shamsutdinova (Lilia.Shamsutdinova)
Priority Normal
State Fixed
Type Usability Problem
Fix version Unidentified prior version
Affected versions 6.1.1
Fixed In Version ReSharper Undefined
VsVersion All Versions
Perform an action such as renaming a property or parameter that requires reanalyzing the current file. While the analysis is in progress, go to a public method or constructor that should be protected or a public or protected method that should be private and press Alt+Enter. When the code analysis completes, the quick fix options presented are 'Make method protected', 'Make method internal', and 'Make method private'.

Escape out of the quick fix options and press Alt+Enter again. This time the quick fix options presented are 'Make method foo private' and 'Inspection options for 'Method can be made private.'

The difficulty here is that I have to wait until code analysis seems complete (e.g. I get the yellow square) and then wait another two or three seconds before I get the real quick fix options.

RSRP-471845: No completion for keywords outside namespace

$
0
0
Reporter Eugene Auduchinok (Eugene.Auduchinok) Eugene Auduchinok (Eugene.Auduchinok)
Created Oct 12, 2018 4:57:10 PM
Updated Oct 15, 2018 12:50:38 PM
Subsystem No Subsystem
Assignee Alexander Shvedov (shvedov)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
I've tried typing namespace, public, class outside namespace in C# file and got no completion at all.
I was editing small files like test data and scratches where it could make sense to remove all boilerplate and write a small snippet instead.

JetBrains Rider 2018.3 EAP
Build #RD-183.3647.86, built on October 11, 2018
Rider EAP User
Expiration date: November 10, 2018
JRE: 1.8.0_152-release-1343-b5 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 10 10.0

RSRP-471846: unknown type is not recognized

$
0
0
Reporter NN __ (NN) NN __ (NN)
Created Oct 15, 2018 1:28:16 PM
Updated Oct 15, 2018 1:28:16 PM
Subsystem TypeScript
Assignee Nikita Popov (poksh)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions 2018.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
Could not find type unknown

const a: unknown - {};

unknown is a reserved keyword in TypeScript 3.0

RSRP-188346: Move To Folder corrupts SVN entry and doesn't move file

$
0
0
Reporter JD Stuart (jdstuart) JD Stuart (jdstuart)
Created Aug 13, 2010 9:49:37 PM
Updated Oct 15, 2018 1:32:07 PM
Resolved Oct 15, 2018 1:32:07 PM
Subsystem Refactorings
Assignee Lilia Shamsutdinova (Lilia.Shamsutdinova)
Priority Major
State Fixed
Type Bug
Fix version Unidentified prior version
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
When doing Ctrl+Shift+R -> "Move To Folder" on a class (MyClass.vb) located in a folder (SubSubFolder) and try to move it to a folder parent to that folder(SubFolder), the "Move To Folder" function seems to corrupt the SVN entry for that file.

  • The file is also not moved to the folder

FolderStructure:
  • Root
    —|SubFolder
    -----|SubSubFolder
    -------|MyClass.vb


  • When then trying to manually move the file using Solution Explorer the following error is provided from VisualSVN:

File 'D:\RootFolder\SubFolder\SubSubFolder\MyClass.vb' cannot be renamed on top of missing file 'D:\RootFolder\SubFolder\MyClass.vb' (it was removed from disk but not marked as deleted in working copy). Please mark this file as deleted. Select 'VisualSVN->Show Changes' in menu, right-click on file 'D:\RootFolder\SubFolder\MyClass.vb' and select 'Delete'

Visual SVN 1.7.3 installed

RSRP-379925: Resharper fails to move a type to outer scope

$
0
0
Reporter Mike Andrews (seablade) Mike Andrews (seablade)
Created Jul 20, 2013 1:13:40 AM
Updated Oct 15, 2018 1:38:05 PM
Resolved Oct 15, 2018 1:38:05 PM
Subsystem Refactorings
Assignee Lilia Shamsutdinova (Lilia.Shamsutdinova)
Priority Normal
State Fixed
Type Bug
Fix version Unidentified prior version
Affected versions 8.0 EAP
Fixed In Version ReSharper Undefined
VsVersion VS 2012 RTM U2
Resharper fails to move a type to outer scope when using the Microsoft git plugin and the project is under git source control.

You get an error stating that "The files are still read only."

RSRP-471847: This property is locked. It can only be changed by the owner of the token.

$
0
0
Reporter Lilia Shamsutdinova (Lilia.Shamsutdinova) Lilia Shamsutdinova (Lilia.Shamsutdinova)
Created Oct 2, 2018 2:36:55 PM
Updated Oct 15, 2018 2:02:48 PM
Subsystem No Subsystem
Assignee Serge Baltic (baltic)
Priority Normal
State Submitted
Type Exception
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs15 Wave 183 Hive _3f3919c0 — JetBrains ReSharper Ultimate 2018.3 EAP 1 D Build 183.0.20181002.50509-eap01d

JetBrains dotCover 2018.3 EAP 1 D Build 2018.3.20181002.54636-eap01d
JetBrains dotMemory 2018.3 EAP 1 D Build 2018.3.20181002.54430-eap01d
JetBrains dotTrace 2018.3 EAP 1 D Build 2018.3.20181002.54651-eap01d
JetBrains ReSharper 2018.3 EAP 1 D Build 2018.3.20181002.54318-eap01d
JetBrains ReSharper C++ 2018.3 EAP 1 D Build 2018.3.20181002.54321-eap01d
JetBrains TeamCity Add-in 2018.3 EAP 1 D Build 2018.3.20181002.54327-eap01d

This property is locked. It can only be changed by the owner of the token.

— EXCEPTION #1/2 [ReadOnlyException]
Message = “This property is locked. It can only be changed by the owner of the token.”
ExceptionPath = Root.InnerException
ClassName = JetBrains.Util.DataStructures.ReadOnlyException
Data.PropertyID = ITextControl::JetTextControl
Data.AttemptedValue = VsTextControl(Class8.vb)/Zatu
Data.CurrentValue = VsTextControl(Class8.vb)/Syso
Data.AttemptedToken = <null>
Data.LockingToken = “Readonly{Property locked by an active SetValue()-with-lifetime call.}”
HResult = DataReadOnly=80131927
Source = JetBrains.Platform.Core
StackTraceString = “
 at JetBrains.DataFlow.Property`1.ThrowReadonlyFail(BeforePropertyChangedEventArgs`1 args, Object tokenExpected)
 at JetBrains.DataFlow.Property`1.ThrowReadonlyFail(BeforePropertyChangedEventArgs`1 args, Object tokenExpected)
 at JetBrains.DataFlow.PropertyValidator.<>c__DisplayClass4_0`1.<CreateReadonlyValidator>b__0(BeforePropertyChangedEventArgs`1 args)
 at JetBrains.DataFlow.Signal`1.NotifySinks(TValue payload)


— Outer —

— EXCEPTION #2/2 [LoggerException]
Message = “This property is locked. It can only be changed by the owner of the token.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.ManagedThreadName = <NULL>
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2018.3 EAP 1 D Build 183.0.20181002.50509-eap01d”
Data.SubProducts.#0 = “JetBrains dotCover 2018.3 EAP 1 D Build 2018.3.20181002.54636-eap01d”
Data.SubProducts.#1 = “JetBrains dotTrace 2018.3 EAP 1 D Build 2018.3.20181002.54651-eap01d”
Data.SubProducts.#2 = “JetBrains ReSharper C++ 2018.3 EAP 1 D Build 2018.3.20181002.54321-eap01d”
Data.SubProducts.#3 = “JetBrains TeamCity Add-in 2018.3 EAP 1 D Build 2018.3.20181002.54327-eap01d”
Data.SubProducts.#4 = “JetBrains ReSharper 2018.3 EAP 1 D Build 2018.3.20181002.54318-eap01d”
Data.SubProducts.#5 = “JetBrains dotMemory 2018.3 EAP 1 D Build 2018.3.20181002.54430-eap01d”
Data.SccRevisionEnv = “
Platform\Core\Shell,
Platform\VisualStudio:
    git::refs/heads/183::e74f46d2a0da2b322032116a265908f025e5910f

Data.VsVersion = 15.8.28010.2036
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
 at JetBrains.DataFlow.Signal`1.NotifySinks(TValue payload)
 at JetBrains.DataFlow.Signal`1.NotifySinks(TValue payload)
 at JetBrains.DataFlow.Signal`1.Fire(TValue value, Object cookie)
 at JetBrains.DataFlow.Property`1.FireBeforeChange(TValue old, TValue new, Object cookie)
 at JetBrains.DataFlow.Property`1.SetValue(TValue value, Object cookie)
 at JetBrains.DataFlow.IPropertyEx.<>c__DisplayClass30_0`1.<SetValue>b__0()
 at JetBrains.DataFlow.Lifetime.AddBracket(Action FOpening, Action FClosing)
 at JetBrains.DataFlow.IPropertyEx.SetValue[TValue](IProperty`1 property, Lifetime lifetime, TValue value, Object cookie)
 at JetBrains.Platform.VisualStudio.SinceVs10.TextControl.VsTextControlDevTen.Init_AdvertiseOnVsObject()
 at JetBrains.Util.Logging.Logger.Catch(Action action)
 at JetBrains.Platform.VisualStudio.SinceVs10.TextControl.VsTextControlDevTen..ctor(IWpfTextView vstextview, VsDocumentWhidbey document, WindowFrame frame, ICreateTextControlParams createParams, IShellLocks locks, IWindowsHookManager windowsHookManager, IVsTextControlDevTenIncrementalSearchClient vsTextControlDevTenIncrementalSearchClient, IUIApplication environment, VsErrorStripeLayoutManagerDevTen errorStripeLayoutManager, TextControlTypingHandlers textControlTypingHandlers, VsCommandProcessor vsCommandProcessor, IVsActionManager vsActionManager, ChangeManager changeManager, DocumentChangeManager documentChangeManager, VsDocumentModelSynchronization vsDocumentModelSynchronization, Lazy`1 vsEditorAdaptersFactoryService, Lazy`1 outliningManagerService, Lazy`1 editorOperationsFactoryService, TextControlPreferences textControlPreferences, Lazy`1 classificationTypeRegistryService, Lazy`1 classificationFormatMapService)
 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.Components.FactoryComponentContainer.CreateInstance[TInstance](Lifetime lifetime, IComponentContainer parent, Object[] args)
 at JetBrains.Platform.VisualStudio.SinceVs10.TextControl.VsTextControlCreatorDevTen.CreateTextControl[TTextControl](CreateTextControlParams`1 param)
 at JetBrains.Platform.VisualStudio.SinceVs10.TextControl.AttachTextControlsToTextViews.VsAttachTextControlsToTextViews.<>c__DisplayClass0_1.<.ctor>b__1()
 at JetBrains.Application.Threading.IShellLocksEx.ExecuteWithReadLock(IShellLocks thіs, Action F)
 at JetBrains.Platform.VisualStudio.SinceVs10.TextControl.AttachTextControlsToTextViews.VsAttachTextControlsToTextViews.<>c__DisplayClass0_0.<.ctor>b__0(Lifetime lifetimeView, VsTextViewDataForTextControlDevTen data)
 at JetBrains.DataFlow.ICollectionEventsEx.<>c__DisplayClass9_1`1.<ForEachItemCore>b__1()
 at JetBrains.Util.Logging.Logger.Catch(Action action)
 at JetBrains.DataFlow.ICollectionEventsEx.<>c__DisplayClass9_0`1.<ForEachItemCore>b__0(AddRemoveEventArgs`1 args)
 at JetBrains.DataFlow.Signal`1.NotifySinks(TValue payload)
 at JetBrains.DataFlow.Signal`1.Fire(TValue value, Object cookie)
 at JetBrains.DataFlow.CollectionEvents`1.FireAddRemove(AddRemove action, TValue value, Object cookie)
 at JetBrains.DataFlow.CollectionEvents`1.InternalAdd(TValue value, Object cookie)
 at JetBrains.DataFlow.CollectionEvents`1.Add(TValue value, Object cookie)
 at JetBrains.DataFlow.ICollectionEventsEx.<>c__DisplayClass16_1`2.<FlowInto>b__1(AddRemoveEventArgs`1 args)
 at JetBrains.DataFlow.Signal`1.NotifySinks(TValue payload)
 at JetBrains.DataFlow.Signal`1.Fire(TValue value, Object cookie)
 at JetBrains.DataFlow.CollectionEvents`1.FireAddRemove(AddRemove action, TValue value, Object cookie)
 at JetBrains.DataFlow.DictionaryEvents`2.InternalAdd(KeyValuePair`2 value, Object cookie)
 at JetBrains.DataFlow.DictionaryEvents`2.set_Item(TKey key, Object cookie, TValue value)
 at JetBrains.DataFlow.DictionaryEvents`2.set_Item(TKey key, TValue value)
at JetBrains.Platform.VisualStudio.SinceVs10.TextControl.AttachTextControlsToTextViews.VsTextViewDataForTextControlCollectorDevTen.<>c__DisplayClass0_1.<.ctor>g__ApplyData|4(IWpfTextView view, VsTextViewDataForTextControlDevTen newdata)
 at JetBrains.Platform.VisualStudio.SinceVs10.TextControl.AttachTextControlsToTextViews.VsTextViewDataForTextControlCollectorDevTen.<>c__DisplayClass0_7.<.ctor>b__17()
 at JetBrains.Platform.VisualStudio.SinceVs10.TextControl.AttachTextControlsToTextViews.VsTextViewDataForTextControlCollectorDevTen.<>c__DisplayClass0_7.<.ctor>b__17()
 at JetBrains.Application.Threading.IShellLocksEx.ExecuteWithReadLock(IShellLocks thіs, Action F)
 at JetBrains.Platform.VisualStudio.SinceVs10.TextControl.AttachTextControlsToTextViews.VsTextViewDataForTextControlCollectorDevTen.<>c__DisplayClass0_1.<.ctor>b__6(EventArgs`1 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.Platform.VisualStudio.SinceVs10.TextControl.AttachTextControlsToTextViews.TrackVsTextViewDataForTextControlChangesEx.<>c__DisplayClass0_0.<FireTextViewDataChanged>b__0()
 at JetBrains.Platform.VisualStudio.SinceVs10.TextControl.AttachTextControlsToTextViews.TrackVsTextViewDataForTextControlChangesEx.FireTextViewDataChangedImpl(ITrackVsTextViewDataForTextControlChanges trackVsTextViewDataForTextControlChanges, Lifetime lifetime, IShellLocks locks, Action action)
 at JetBrains.Platform.VisualStudio.SinceVs10.TextControl.AttachTextControlsToTextViews.TrackVsTextViewDataForTextControlChangesEx.FireTextViewDataChanged(ITrackVsTextViewDataForTextControlChanges trackVsTextViewDataForTextControlChanges, Lifetime lifetime, IShellLocks locks, Func`1 isEventStillActual, IWpfTextView wpfTextView)
 at JetBrains.Platform.VisualStudio.SinceVs10.IDE.VsDocumentManagerWhidbey_TrackVsTextViewDataForTextControlChanges..ctor(Lifetime lifetime, VsDocumentManagerWhidbey docman, ITrackVsTextViewDataForTextControlChanges tracker, IShellLocks locks)
 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.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.ProjectModel.SolutionInstance.OpenSolution(ISolutionOwner solutionOwner)
 at JetBrains.ProjectModel.SolutionManagerBase.<>c__DisplayClass23_0.<CreateSolutionInstance>b__0()
 at JetBrains.ProjectModel.Tasks.SolutionLoadTasksSchedulerBase.<>c__DisplayClass21_0.<ExecuteTask>b__1()
 at JetBrains.Util.ILoggerEx.Catch(ILogger thіs, Action F, ExceptionOrigin origin, LoggingLevel loggingLevel)
 at JetBrains.ProjectModel.Tasks.SolutionLoadTasksSchedulerBase.ExecuteTask(SolutionLoadTask task)
 at JetBrains.ProjectModel.Tasks.SolutionLoadTasksSchedulerAsync.<Schedule>b__5_0()
 at JetBrains.Application.Threading.IShellLocksEx.ExecuteWithReadLock(IShellLocks thіs, Action F)
 at JetBrains.Application.Threading.IShellLocksEx.<>c__DisplayClass11_0.<QueueReadLock>b__0()
 at JetBrains.Threading.ReentrancyGuardEx.<>c__DisplayClass0_1.<Queue>b__3()
 at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
 at JetBrains.Threading.ReentrancyGuard.ExecutePendingActions()
 at JetBrains.Threading.JetDispatcher.Closure.Execute()
 at JetBrains.Util.Concurrency.WinJetDispatcher.ProcessQueue(Int32 nMinBucket)
 at JetBrains.Util.Concurrency.WinJetDispatcher.ExternalIdleProcessing.OnExternalDriverIdle()
 at JetBrains.VsIntegration.Shell.VsDoIdleDispatcherSink.Microsoft.VisualStudio.OLE.Interop.IOleComponent.FDoIdle(UInt32 grfidlef)

RSRP-471848: Import symbol is unused and not resolved in variable

$
0
0
Reporter NN __ (NN) NN __ (NN)
Created Oct 15, 2018 2:18:29 PM
Updated Oct 15, 2018 2:19:16 PM
Subsystem TypeScript
Assignee Nikita Popov (poksh)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions 2018.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
The project is opened as folder (File->Open Folder)
Tested on this project: https://github.com/fuse-box/fuse-box/

ReSharper thinks that 'fs' is not used while in the code (fs.existsSync) it thinks that it is not defined.



import * as path from "path";
import * as fs from "fs";
import * as fsExtra from "fs-extra";
import * as glob from "glob";

const deleteFolderRecursive = p => {
    if (fs.existsSync(p)) {
        fs.readdirSync(p).forEach((file, index) => {
            let curPath = path.join(p, file);
            if (fs.lstatSync(curPath).isDirectory()) {
                // recurse
                deleteFolderRecursive(curPath);
            } else {
                // delete file
                fs.unlinkSync(curPath);
            }
        });
        fs.rmdirSync(p);
    }
};

RSRP-183485: Adding reference to external assembly adds a reference to output version when output path is non-standard

$
0
0
Reporter Colin Scott (ColinScott) Colin Scott (ColinScott)
Created Jun 22, 2010 2:19:55 PM
Updated Oct 15, 2018 2:19:20 PM
Resolved Oct 15, 2018 2:19:20 PM
Subsystem Context Actions
Assignee Lilia Shamsutdinova (Lilia.Shamsutdinova)
Priority Critical
State Fixed
Type Bug
Fix version Unidentified prior version
Affected versions 5.0
Fixed In Version ReSharper Undefined
VsVersion All Versions
The Context Action that adds references seems to have an issue when projects are building to non-standard locations. If Project 1 references an external assembly then the context action in Project 2 will suggest adding a reference if you use a type from the external assembly. This works perfectly if the projects build to a common location. If you change the project output directories to something non-standard (in my case a sibling of the parent directory) then the context action will add to Project 2 a reference to the copy put in the output directory by Project 1.

Depending on the build order this can result in the build breaking after a clean as the copy will not yet exist. The attached is an example solution that demonstrates this. Remove the reference to Abstract2ion from ClassLibrary2 and open Class2.cs. The context action in this file will add a reference to Abstract2ion.dll from the Output directory not from Lib which is where it should be referenced from.

RSRP-467608: Ambiguous invocation: DevExtreme.AspNet.Mvc.Builders.DataGridColumnBuilder.Add

$
0
0
Reporter Andrey Simukov (Andrey.Simukov) Andrey Simukov (Andrey.Simukov)
Created Dec 15, 2017 2:16:57 PM
Updated Oct 15, 2018 2:21:50 PM
Subsystem ASP.NET
Assignee Andrey Simukov (Andrey.Simukov)
Priority Normal
State To Reproduce
Type Bug
Fix version 2018.3
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
I am getting an error in VS 2017 IDE with the following message:
"Ambiguous invocation: DevExtreme.AspNet.Mvc.Builders.DataGridColumnBuilder.Add".

This is when adding in columns to the DevExtreme DataGrid, but only where it includes a CUSTOM CELL TEMPLATE.

The project builds and publishes fine with no error.

RSRP-470611: The method or operation is not implemented.

$
0
0
Reporter Lilia Shamsutdinova (Lilia.Shamsutdinova) Lilia Shamsutdinova (Lilia.Shamsutdinova)
Created Jul 16, 2018 3:49:46 PM
Updated Oct 15, 2018 2:40:52 PM
Subsystem IntelliSense (Code Completion)
Assignee Alexander Shvedov (shvedov)
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 _3f3919c0 — JetBrains ReSharper Ultimate 2018.2 EAP 4 D Build 182.0.20180714.125507-eap04d

JetBrains dotCover 182 Build 182.0.20180714.131033-eap04d
JetBrains dotMemory 182 Build 182.0.20180714.130916-eap04d
JetBrains dotTrace 182 Build 182.0.20180714.131048-eap04d
JetBrains ReSharper 182 Build 182.0.20180714.130753-eap04d
JetBrains ReSharper C++ 182 Build 182.0.20180714.130743-eap04d
JetBrains TeamCity Add-in 182 Build 182.0.20180714.130733-eap04d

The method or operation is not implemented.

— EXCEPTION #1/2 [NotImplementedException]
Message = “The method or operation is not implemented.”
ExceptionPath = Root.InnerException
ClassName = System.NotImplementedException
HResult = E_NOTIMPL=80004001
Source = JetBrains.ReSharper.Psi.Web
StackTraceString = “
 at JetBrains.ReSharper.Psi.Html.Parsing.HtmlCompoundLexer`1.get_CurrentPosition()
 at JetBrains.ReSharper.Psi.Html.Parsing.HtmlCompoundLexer`1.get_CurrentPosition()
 at JetBrains.ReSharper.Feature.Services.Lookup.LookupUtil.InsertTokens(ITextControl textControl, TokenNodeType[] tokens, DocumentOffset offset, BracketsBalanceEvaluator balanceEvaluator, ILexer tailLexer)
 at JetBrains.ReSharper.Feature.Services.Lookup.LookupUtil.InsertTailType(ITextControl textControl, DocumentOffset offset, TailType tailType, ISolution solution, Boolean emulateTypingOfSpace, PsiLanguageType language)
 at JetBrains.ReSharper.Feature.Services.CodeCompletion.Infrastructure.AspectLookupItems.Behaviors.KeywordBehavior.InsertTailType(ITextControl textControl, ISolution solution, DocumentOffset offset, TailType tailType)
 at JetBrains.ReSharper.Feature.Services.CodeCompletion.Infrastructure.AspectLookupItems.Behaviors.TextualBehavior`1.Accept(ITextControl textControl, DocumentRange nameRange, LookupItemInsertType insertType, Suffix suffix, ISolution solution, Boolean keepCaretStill)
 at JetBrains.ReSharper.Feature.Services.CodeCompletion.Infrastructure.AspectLookupItems.BaseInfrastructure.LookupItem`1.Accept(ITextControl textControl, DocumentRange nameRange, LookupItemInsertType insertType, Suffix suffix, ISolution solution, Boolean keepCaretStill)
 at JetBrains.ReSharper.Feature.Services.CodeCompletion.Infrastructure.LookupItems.LookupItemCompletor.CompleteItem(Action executeInsideCommandScope)
 at JetBrains.ReSharper.Feature.Services.CodeCompletion.Lookup.LookupActions.CompleteHandler.Execute(IDataContext context, DelegateExecute nextExecute)
 at JetBrains.Application.UI.ActionsRevised.Handlers.ExecutableActionEvaluator.Execute(IAction action, IReadOnlyCollection`1 allActions, IDataContext dataContext)
 at JetBrains.Application.UI.ActionsRevised.Handlers.EvaluatedAction.ExecuteWithoutRequirements()
 at JetBrains.Application.UI.ActionsRevised.Handlers.EvaluatedAction.<>c__DisplayClass21_1.<PrepareRequirementsAsync>b__0()


— Outer —

— EXCEPTION #2/2 [LoggerException]
Message = “The method or operation is not implemented.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.ManagedThreadName = <NULL>
Data.LastExtension = cshtml
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2018.2 EAP 4 D Build 182.0.20180714.125507-eap04d”
Data.SubProducts.#0 = “JetBrains dotCover 182 Build 182.0.20180714.131033-eap04d”
Data.SubProducts.#1 = “JetBrains dotTrace 182 Build 182.0.20180714.131048-eap04d”
Data.SubProducts.#2 = “JetBrains ReSharper C++ 182 Build 182.0.20180714.130743-eap04d”
Data.SubProducts.#3 = “JetBrains TeamCity Add-in 182 Build 182.0.20180714.130733-eap04d”
Data.SubProducts.#4 = “JetBrains ReSharper 182 Build 182.0.20180714.130753-eap04d”
Data.SubProducts.#5 = “JetBrains dotMemory 182 Build 182.0.20180714.130916-eap04d”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    git::refs/heads/182::2fd1edea4a9601b5c5a45397b2b2594fb633aee1


Platform\VisualStudio:
    git::refs/heads/182::d7f5ae379f802e1f164ec64c8bc6212ce560403e

Data.VsVersion = 15.7.27703.2042
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
 at JetBrains.Application.UI.ActionsRevised.Handlers.EvaluatedAction.<>c__DisplayClass21_1.<PrepareRequirementsAsync>b__0()
 at JetBrains.Application.UI.ActionsRevised.Handlers.EvaluatedAction.<>c__DisplayClass21_1.<PrepareRequirementsAsync>b__0()
 at JetBrains.Application.UI.ActionSystem.ActionsRevised.Handlers.RequirementsManager.ExecuteActionAsync(IActionRequirement requirement, Action continueWith, Action failWith, Boolean reSharperIsThinking)
 at JetBrains.Application.UI.ActionsRevised.Handlers.EvaluatedAction.PrepareRequirementsAsync(OuterLifetime lifetime, Func`1 executeWhenRequirementsReady, Action`1 failWith)
 at JetBrains.Application.UI.ActionsRevised.Handlers.EvaluatedAction.Execute()
 at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.<>c__DisplayClass26_0.<TryDelegateToTypingHandlers_NonTyping>b__0()
 at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.WithRegisteredDelegateBackToVsHandler(String sCommandName, Action`1 FExecDelegateBackToVs, Action FRun)
 at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.TryDelegateToTypingHandlers_NonTyping(CommandID commandid, Action`1 FExecDelegateBackToVs)
 at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.TryDelegateToTypingHandlers(Boolean bIsTyping, CommandID commandid, IntPtr pvaIn, Action`1 FExecDelegateBackToVsClosed)
 at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.<>c__DisplayClass29_0.<Microsoft.VisualStudio.OLE.Interop.IOleCommandTarget.Exec>b__0()
 at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
 at JetBrains.Threading.ReentrancyGuard.TryExecute(String name, Action action)
 at JetBrains.VsIntegration.TextControl.VsTextControlOleCommandTarget.Microsoft.VisualStudio.OLE.Interop.IOleCommandTarget.Exec(Guid& pguidCmdGroupRef, UInt32 nCmdID, UInt32 nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut)
 at Microsoft.VisualStudio.Editor.Implementation.CommandChainNode.InnerExec(Guid& pguidCmdGroup, UInt32 nCmdID, UInt32 nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut)
 at Microsoft.VisualStudio.Editor.Implementation.CommandChainNode.InnerExec(Guid& pguidCmdGroup, UInt32 nCmdID, UInt32 nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut)
 at Microsoft.VisualStudio.Editor.Implementation.SimpleTextViewWindow.Exec(Guid& pguidCmdGroup, UInt32 nCmdID, UInt32 nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut)
 at Microsoft.VisualStudio.Editor.Implementation.CompoundTextViewWindow.Exec(Guid& pguidCmdGroup, UInt32 nCmdID, UInt32 nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut)
 at Microsoft.VisualStudio.Platform.WindowManagement.DocumentObjectSite.Exec(Guid& pguidCmdGroup, UInt32 nCmdID, UInt32 nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut)
 at Microsoft.VisualStudio.Platform.WindowManagement.WindowFrame.Exec(Guid& pguidCmdGroup, UInt32 nCmdID, UInt32 nCmdexecopt, IntPtr pvaIn, IntPtr pvaOut)

RSRP-197163: VB.NET: Large Files & Create Property

$
0
0
Reporter Denis Abramov (sparky2708) Denis Abramov (sparky2708)
Created Nov 5, 2010 5:43:04 PM
Updated Oct 15, 2018 2:42:48 PM
Resolved Oct 15, 2018 2:42:48 PM
Subsystem Quick Fixes - Create From Usage
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Fixed
Type Bug
Fix version Unidentified prior version
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
If I am working in a large file (currently the one I am looking at is 34,000 lines). I tried to do "Alt-Enter" and select "Create Property" in a class in this file. It was taking over 30 seconds so I gave up waiting so I went to create the property manually.

RSRP-469740: Waiting in FireOutgoing more than 30000 ms. Possible livelock. Breaking

$
0
0
Reporter Fedor Buyvol-Kot (Fedor.Buyvol-Kot) Fedor Buyvol-Kot (Fedor.Buyvol-Kot)
Created Feb 19, 2018 7:16:10 PM
Updated Oct 15, 2018 2:45:58 PM
Resolved Aug 7, 2018 1:07:21 PM
Subsystem External Sources
Assignee Fedor Buyvol-Kot (Fedor.Buyvol-Kot)
Priority Show-stopper
State Duplicate
Type Exception
Fix version No Fix versions
Affected versions 2018.1.1, 2018.1
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs14 Wave 12 — JetBrains ReSharper Ultimate 2018.1 EAP 1 Build 112.0.20180217.80255-eap01

JetBrains dotCover 2018.1 EAP 1 Build 2018.1.20180217.134746-eap01
JetBrains dotMemory 2018.1 EAP 1 Build 2018.1.20180217.134747-eap01
JetBrains dotTrace 2018.1 EAP 1 Build 2018.1.20180217.134740-eap01
JetBrains ReSharper 2018.1 EAP 1 Build 2018.1.20180217.81231-eap01
JetBrains ReSharper C++ 2018.1 EAP 1 Build 2018.1.20180217.81230-eap01

Waiting in FireOutgoing more than 30000 ms. Possible livelock. Breaking

— EXCEPTION #1/1 [LoggerException]
Message = “Waiting in FireOutgoing more than 30000 ms. Possible livelock. Breaking”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.ManagedThreadName = FileSystemTrackerCommit
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2018.1 EAP 1 Build 112.0.20180217.80255-eap01”
Data.SubProducts.#0 = “JetBrains dotCover 2018.1 EAP 1 Build 2018.1.20180217.134746-eap01”
Data.SubProducts.#1 = “JetBrains dotTrace 2018.1 EAP 1 Build 2018.1.20180217.134740-eap01”
Data.SubProducts.#2 = “JetBrains ReSharper C++ 2018.1 EAP 1 Build 2018.1.20180217.81230-eap01”
Data.SubProducts.#3 = “JetBrains ReSharper 2018.1 EAP 1 Build 2018.1.20180217.81231-eap01”
Data.SubProducts.#4 = “JetBrains dotMemory 2018.1 EAP 1 Build 2018.1.20180217.134747-eap01”
Data.SccRevisionEnv = “
Platform\Core\Shell,
Platform\VisualStudio:
    git::refs/heads/wave12-eap1

Data.VsVersion = 14.0.25431.1
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
 at JetBrains.Application.Threading.Tasks.FreeThreadedGroupingEvent.FireOutgoing(Boolean waitIfAlreadyFiring, Boolean fireIfNoIncoming)
 at JetBrains.Application.Threading.Tasks.FreeThreadedGroupingEvent.FireOutgoing(Boolean waitIfAlreadyFiring, Boolean fireIfNoIncoming)
 at JetBrains.Application.Threading.Tasks.FreeThreadedGroupingEvent.WaitAndPumpUntilNoIncoming()
 at JetBrains.ReSharper.Feature.Services.ExternalSources.Pdb.Cache.PdbCacheInvalidator.OnPossibleCacheFileChanged(ICollection`1 names)
 at JetBrains.ReSharper.Feature.Services.ExternalSources.Pdb.Cache.PdbCacheInvalidator.OnFileSystemChange(FileSystemChange change)
 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.Application.FileSystemTracker.FileSystemTrackerImpl.DispatchChange(FileSystemChange change)
 at JetBrains.Application.FileSystemTracker.FileSystemTrackerImpl.DoCommit(FileSystemPath[] paths)
 at JetBrains.Application.FileSystemTracker.FileSystemTrackerImpl.AsyncCommitThread.<CommitChanges>b__11_0()
 at JetBrains.Threading.ReentrancyGuardEx.<>c__DisplayClass0_0.<Queue>b__3()
 at JetBrains.Threading.ReentrancyGuard.Execute(String name, Action action)
 at JetBrains.Threading.ReentrancyGuard.ExecutePendingActions()
 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 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 JetBrains.Interop.WinApi.User32Dll.DispatchMessageW(MSG* lpmsg)
 at JetBrains.Util.Concurrency.WinJetDispatcher.WinJetDispatcherStaticMethods.InternalPumpMessagesOnce()
 at JetBrains.Util.Concurrency.WinJetDispatcher.WinJetDispatcherStaticMethods.JetBrains.Util.Concurrency.IJetDispatcherStaticMethods.Run()
 at JetBrains.Threading.JetDispatcher.<>c__DisplayClass19_1.<CreateDispatcherThread>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-200400: 'CreateFromUsage' in VB calculates ExpectedTypes in 'IsAvailable' check when C# action doesn't

$
0
0
Reporter Olga Lukianova (olka) Olga Lukianova (olka)
Created Dec 15, 2010 5:50:10 PM
Updated Oct 15, 2018 2:46:16 PM
Subsystem Quick Fixes - Create From Usage
Assignee Alisa Afonina (alisa.afonina)
Priority Normal
State Submitted
Type Task
Fix version Backlog
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
If it is possible to remove expected types calculation from 'IsAvaialable' in VB too. Or just to share results with 'Execution' stage.
Viewing all 106942 articles
Browse latest View live


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