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

RSRP-467316: Feature Request: allow setting Environment Variables for test runs

$
0
0
Reporter Davyd McColl (Davyd_McColl) Davyd McColl (Davyd_McColl)
Created Nov 30, 2017 12:14:06 PM
Updated Oct 18, 2018 7:23:46 PM
Subsystem Unit Testing
Assignee Eugene Strizhok (Eugene.Strizhok)
Priority Normal
State Fixed In Branch
Type Feature
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
We use environment variables to configure run-time behavior for tests, specifically with regard to database connections (host, user, password, etc) so that:
a) Sensitive information doesn't have to be saved in the repository
b) Each machine can determine their own setup in a safe way

The problem comes when changing these variables (or adding to them), one has to restart Visual Studio to have them come into effect. Also, this requires devs to set up environment variables on their machines which are only pertinent to a specific project (and which may conflict with another project, requiring that the two projects aren't worked on at the same time and that VS is restarted in between working on them).

It would be very handy if the developer could specify environment variables for test-running – and it would be very cool if those settings could be saved to the DotSettings file (for the developer, or, if the team determines that some or all of the variables aren't sensitive, to the team-shared file) and if these variables were re-interpreted before each test run so that a change would take immediate effect.

RSRP-471901: .Net Core: Support IHtmlLocalizer

$
0
0
Reporter Tatyana Lunegova (lunega) Tatyana Lunegova (lunega)
Created Oct 18, 2018 7:26:31 PM
Updated Oct 18, 2018 7:26:35 PM
Subsystem Localization (i18n, ResX)
Assignee Anton Spilnyy (Anton.Spilnyy)
Priority Normal
State Submitted
Type Task
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions

RSRP-471902: .Net Core: Support IViewLocalizer

$
0
0
Reporter Tatyana Lunegova (lunega) Tatyana Lunegova (lunega)
Created Oct 18, 2018 7:27:28 PM
Updated Oct 18, 2018 7:27:28 PM
Subsystem Localization (i18n, ResX)
Assignee Anton Spilnyy (Anton.Spilnyy)
Priority Normal
State Submitted
Type Task
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions

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 18, 2018 7:35:24 PM
Subsystem Unit Testing
Assignee Eugene Strizhok (Eugene.Strizhok)
Priority Show-stopper
State Fixed In Branch
Type Bug
Fix version 2018.3
Affected versions 2018.2.3
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-471903: .Net Core: Support DataAnnotations localization

$
0
0
Reporter Tatyana Lunegova (lunega) Tatyana Lunegova (lunega)
Created Oct 18, 2018 7:39:04 PM
Updated Oct 18, 2018 7:39:04 PM
Subsystem Localization (i18n, ResX)
Assignee Anton Spilnyy (Anton.Spilnyy)
Priority Normal
State Submitted
Type Task
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions

RSRP-471171: unit tests run all tests from fixture although I asked to run 1 test

$
0
0
Reporter Anton Spilnyy (Anton.Spilnyy) Anton Spilnyy (Anton.Spilnyy)
Created Aug 21, 2018 2:36:18 PM
Updated Oct 18, 2018 8:05:55 PM
Subsystem Unit Testing
Assignee Eugene Strizhok (Eugene.Strizhok)
Priority Show-stopper
State Open
Type Bug
Fix version 2018.2.1
Affected versions 2018.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
nunit3
repro
in r# solution run test SnapshotsComparisonVmTest.should_be_sorted_by_property

RSRP-471904: Visual Studio startup time is very slow with 2018.3 EAP 2 & 3

$
0
0
Reporter José Mélançon (karaziox) José Mélançon (karaziox)
Created Oct 18, 2018 9:07:16 PM
Updated Oct 18, 2018 9:07:16 PM
Subsystem No Subsystem
Assignee Unassigned
Priority Normal
State Submitted
Type Performance Problem
Fix version No Fix versions
Affected versions 2018.3
Fixed In Version ReSharper Undefined
VsVersion VS 2017 15.8.6
I've updated to EAP2, and EAP3 this morning and I have had a lot of issues with Visual Studio since. I'm usually using Visual Studio Preview (15.9 Preview 3) but I also see this in the 15.8 release. Visual Studio notifies me resharper is slowing down the startup by 80-90seconds. Even without a solution to open, simply opening the IDE causes this.

I've captured and attached a Sampling dotTrace when opening VS Preview

RSRP-471768: One or more errors occurred. Method not found: 'System.Collections.Generic.IEnumerable`1

$
0
0
Reporter ReSharper anonymous (resharper) ReSharper anonymous (resharper)
Created Oct 1, 2018 7:02:33 PM
Updated Oct 18, 2018 9:21:50 PM
Subsystem Unit Testing
Assignee Eugene Strizhok (Eugene.Strizhok)
Priority Normal
State Submitted
Type Exception
Fix version No Fix versions
Affected versions 2018.2.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
ReSharperPlatformVs15 Wave 182 Hive _c1dfaa6d — JetBrains ReSharper Ultimate 2018.2.3 Build 182.0.20180912.70621

JetBrains ReSharper 2018.2.3 Build 2018.2.20180912.160227

SubProducts.0 = JetBrains ReSharper 2018.2.3 Build 2018.2.20180912.160227

One or more errors occurred. Method not found: 'System.Collections.Generic.IEnumerable1<System.Collections.Generic.IEnumerable1<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria>> Microsoft.VisualStudio.TestWindow.Controller.TestRunConfiguration.GetAllCriteriaQueues()'.

— EXCEPTION #1/3 [MissingMethodException]
Message = “Method not found: 'System.Collections.Generic.IEnumerable1<System.Collections.Generic.IEnumerable1<Microsoft.VisualStudio.TestPlatform.ObjectModel.Client.TestRunCriteria>> Microsoft.VisualStudio.TestWindow.Controller.TestRunConfiguration.GetAllCriteriaQueues()'.”
ExceptionPath.1 = Root.InnerException.InnerException
ExceptionPath.2 = Root.InnerException.InnerExceptions.#0
ClassName = System.MissingMethodException
HResult = COR_E_MISSINGMETHOD=80131513
Source = JetBrains.ReSharper.UnitTestProvider.MSTest15
StackTraceString = “
 at JetBrains.ReSharper.UnitTestProvider.MSTest11.New.MsTestRunnerBase.Run(IUnitTestRun run, IDeploymentData deploymentData, ITestContainer testContainer, Action onRunCompletion)
 at JetBrains.ReSharper.UnitTestProvider.MSTest11.New.MsTestRunnerBase.Run(IUnitTestRun run, IDeploymentData deploymentData, ITestContainer testContainer, Action onRunCompletion)
 at JetBrains.ReSharper.UnitTestProvider.MSTest11.New.Windows10AppRunStrategyBase.<>c__DisplayClass27_1.<RunTests>b__2(Task __)
 at System.Threading.Tasks.ContinuationTaskFromTask.InnerInvoke()
 at System.Threading.Tasks.Task.Execute()


— Outer —

— EXCEPTION #2/3 [AggregateException]
Message = “One or more errors occurred.”
ExceptionPath = Root.InnerException
ClassName = System.AggregateException
InnerException = “Exception #1 at Root.InnerException.InnerException”
HResult = COR_E_EXCEPTION=80131500
Source = mscorlib
InnerExceptions.#0 = “Exception #1 at Root.InnerException.InnerException”
StackTraceString = “
 at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions)
 at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions)
 at System.Threading.Tasks.Task.Wait(Int32 millisecondsTimeout, CancellationToken cancellationToken)
 at JetBrains.ReSharper.UnitTestProvider.MSTest11.New.Windows10AppRunStrategyBase.<>c__DisplayClass27_0.<RunTests>b__1()
 at JetBrains.Util.ILoggerEx.Catch(ILogger thіs, Action F, ExceptionOrigin origin, LoggingLevel loggingLevel)


— Outer —

— EXCEPTION #3/3 [LoggerException]
Message = “One or more errors occurred.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
Data.ManagedThreadName = “JetPool(L) #7”
Data.SccRevisionShell = “<there are no packages matching the criteria>”
Data.HostProductInfo = “JetBrains ReSharper Ultimate 2018.2.3 Build 182.0.20180912.70621”
Data.SubProducts.#0 = “JetBrains ReSharper 2018.2.3 Build 2018.2.20180912.160227”
Data.SccRevisionEnv = “
Platform\Core\Shell:
    git::refs/heads/182-eap12-2018.2.3::5568ce45a9672dd8997819ab37f68ac707581ebd


Platform\VisualStudio:
    git::refs/heads/182-eap12-2018.2.3::291c1135b6b287764887c208c7a13422c38434a8

Data.VsVersion = 15.8.28010.2036
InnerException = “Exception #2 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
 at JetBrains.Util.ILoggerEx.Catch(ILogger thіs, Action F, ExceptionOrigin origin, LoggingLevel loggingLevel)
 at JetBrains.Util.ILoggerEx.Catch(ILogger thіs, Action F, ExceptionOrigin origin, LoggingLevel loggingLevel)
 at JetBrains.ReSharper.UnitTestProvider.MSTest11.New.Windows10AppRunStrategyBase.<>c__DisplayClass27_0.<RunTests>b__0(Task _)
 at System.Threading.Tasks.ContinuationTaskFromTask.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 #D.JetPool(L) #7(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()

RSRP-471905: Can't run MSTests in UWP project.

$
0
0
Reporter Fedor Buyvol-Kot (Fedor.Buyvol-Kot) Fedor Buyvol-Kot (Fedor.Buyvol-Kot)
Created Oct 18, 2018 9:20:42 PM
Updated Oct 18, 2018 9:21:50 PM
Subsystem Unit Testing
Assignee Eugene Strizhok (Eugene.Strizhok)
Priority Show-stopper
State Submitted
Type Bug
Fix version 2018.3
Affected versions 2018.2.3
Fixed In Version ReSharper Undefined
VsVersion All Versions
VS2017 15.8.7, tests are in Inconclusive state.

RSRP-471906: R# ignoring my xunit user furnished configuration

$
0
0
Reporter Michael Powell (mwpowellhtx) Michael Powell (mwpowellhtx)
Created Oct 18, 2018 9:33:24 PM
Updated Oct 18, 2018 9:46:39 PM
Subsystem Unit Testing
Assignee Eugene Strizhok (Eugene.Strizhok)
Priority Normal
State Submitted
Type Unspecified
Fix version No Fix versions
Affected versions 2018.2.1
Fixed In Version ReSharper Undefined
VsVersion VS 2017 15.8.6

VS version: 15.8.7 not 15.8.6
Happening in at least R# 2018.2.1
This may or may not be a bug; best case for you is that it is just me troubleshooting and tracing what/where R# is injecting xunit configuration.
Literally, I am providing the <AssemblyName>.xunit.runner.json strategy with the following content. I've also tried with the xunit.runner.json strategy with the same results.

{
  "appDomain": "ifAvailable",
  "longRunningTestSeconds": 0,
  "preEnumerateTheories": true,
  "shadowCopy": true
}

These are also the xunit defaults, however R# is exhibiting preEnumerateTheories=false behavior.
How did I get there? I was using xunit 2.3.1 and the default behavior preEnumerateTheories=true was working fine, or at least the default behavior was doing as I expected.
Specifically, Theory test cases were rolling up successfully.
Then I updated to xunit 2.4.0, things seemed fine, but I must not have verified or something.
Between then and the next day of work my I experienced a BSOD on startup of my development machine. Recovered from that to a prior system restore. I don't think it was related, but it was non-trivial from my POV.
Went in to verify the xunit upgrade and began experiencing odd behavior in preEnumerateTheories=false.
In my troubleshooting I downgraded to xunit 2.3.1 and re-ran the tests. Still exhibiting preEnumerateTheories=false behavior.
That's when I introduced my configuration (above). However, the behavior is still showing preEnumerateTheories=false behavior.
I am also targeting .NET Framework 4.7.2 instead of .NET Framework 4.6.2 in the midst of all that.
One thought crossed my mind: whether this was a difference in framework collection behavior?
Open question for me is this: I need to know at least what settings are used by R#, if not also where they are stored, etc, in order to troubleshoot.
Whether R# is honoring the user furnished settings? That may or may not be the issue, I do not know.

RSRP-471637: Unexpected new line causes typos

$
0
0
Reporter Vianney PHILIPPE (vianney) Vianney PHILIPPE (vianney)
Created Sep 26, 2018 1:38:41 PM
Updated Oct 19, 2018 12:36:26 AM
Subsystem ReSpeller
Assignee Artem Bukhonov (Artem.Bukhonov)
Priority Critical
State Submitted
Type Bug
Fix version 2018.3
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
In the following lines of code, Resharper finds a typo in strings with 'ative' or 'ools' or 'inaries'.
var s = @"C:\native\";
var t = "C:\\native\";
var u = @"C:\tools\inspectcode";
var v = @"C:\binaries\";

Re# 2018.2.3
VS 15.8.5

RSRP-460597: Intellisense doesn't work in XAML files

$
0
0
Reporter Maria Pleskunina (Maria.Pleskunina) Maria Pleskunina (Maria.Pleskunina)
Created Aug 31, 2016 4:55:26 PM
Updated Oct 19, 2018 12:40:27 AM
Subsystem XAML
Assignee Alexander Shvedov (shvedov)
Priority Major
State Submitted
Type Bug
Fix version No Fix versions
Affected versions 2016.2
Fixed In Version ReSharper Undefined
VsVersion All Versions
When I use resharper intellisense, I nothing appears when I'm typing in xaml members. For instance ScrollViewer. fails to show anything.

If I switch back to VS intellisense, I get the full list options.

I'm sure this used to work fine?


<GridView ScrollViewer.HorizontalScrollBarVisibility="Auto" />

RSRP-471907: "Possible System.NullReferenceException" is shown for all HtmlControls in code-behind

$
0
0
Reporter RAMON RITTER (ramonritter) RAMON RITTER (ramonritter)
Created Oct 19, 2018 12:47:51 AM
Updated Oct 19, 2018 1:00:09 AM
Subsystem Code Analysis - C#
Assignee Ivan Serduk (IvanSerduk)
Priority Normal
State Submitted
Type Usability Problem
Fix version No Fix versions
Affected versions 2018.3, 2018.2.3
Fixed In Version ReSharper Undefined
VsVersion All Versions

The warning "Possible System.NullReferenceException" is shown for all HtmlControls in code-behind of my aspx pages when I read or assign a value to an HTML Control.

This forces me to test 'if (myControl != null)' before read or assign each control.

Is it possible to disable this warning only for the HTML controls? I want be warned for null reference in other objects...

RSRP-471842: Support Better Multi-line ValueTuple Formatting

$
0
0
Reporter Mackenzie Zastrow (Mackenzie.Zastrow) Mackenzie Zastrow (Mackenzie.Zastrow)
Created Oct 15, 2018 4:58:06 AM
Updated Oct 19, 2018 2:53:07 AM
Subsystem Code Style - Formatter
Assignee Dmitry Osinovsky (Dmitry.Osinovsky)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions 2018.2.3
Fixed In Version ReSharper Undefined
VsVersion VS 2017 15.6
Multi-line ValueTuple formatting seems a bit off. The first element seems to be un-indented compared to the following elements:

public static void TestFormatting()
{
int caret = 19;
int index = 199;

// right here, index and distance are aligned different from caret
var aTupleFormatting = (
caret: caret,
index: index,
distance: caret
);

MethodFormatting(caret,
index,
caret);

MethodFormatting(
caret,
index,
caret);

var anonData = new
{
caret = caret,
index = index,
distance = caret
};
}

public static void MethodFormatting(params object[] args)
{
}

I'd expect tuple formatting to follow the method call syntax (always align the later elements with the first element).

Note: The "Align Multiline Constructs > Tuple Components" option doesn't seem to affect this at all (I toggle it on/off and see no difference).

RSRP-471908: Convert to property with backing field places backing field in odd location

$
0
0
Reporter Adam Scoble (stuntboots) Adam Scoble (stuntboots)
Created Oct 18, 2018 3:25:00 AM
Updated Oct 19, 2018 8:49:26 AM
Subsystem Context Actions
Assignee Andrew Karpov (andrew.karpov)
Priority Normal
State Submitted
Type Bug
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions

Hi there,

If I create a property, and then select to create a property with a backing field, it places the backing field at a random point among my other variables. I would expect it to be placed directly above (or below) the current property?


RSRP-471909: Consider Singleton Instances in Type Instance Resolution Suggestions

$
0
0
Reporter Michael DeMond (Mike-EEE76) Michael DeMond (Mike-EEE76)
Created Oct 19, 2018 8:52:25 AM
Updated Oct 19, 2018 8:52:25 AM
Subsystem No Subsystem
Assignee Unassigned
Priority Normal
State Submitted
Type Feature
Fix version No Fix versions
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions

Would be handy to be able to point to a singleton instance if it exists on the class type.

RSRP-427896: Code analysis is single threading (uses single core only)

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Nov 19, 2014 5:11:37 PM
Updated Oct 19, 2018 10:49:49 AM
Resolved Oct 15, 2018 12:16:24 PM
Subsystem ReSharper Automation Tools (Command Line)
Assignee Mikhail Senkov (micha)
Priority Major
State Fixed
Type Feature
Fix version 2018.3
Affected versions No Affected versions
Fixed In Version ReSharper Undefined
VsVersion All Versions
Multithreading would definitely provide a major performance improvement. Especially at continuous integration servers like the ones we’re using, featuring 24 cores and code inspections taking more than 10 minutes after cache has been build.

RSRP-427889: SharePoint: Cannot resolve resource 'myresource'

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Nov 19, 2014 2:35:27 PM
Updated Oct 19, 2018 11:35:46 AM
Subsystem Code Analysis
Assignee Maltseva Ekaterina (Maltseva.Ekaterina)
Priority Critical
State To Reproduce
Type Bug
Fix version Backlog
Affected versions 9.0 EAP
Fixed In Version ReSharper Undefined
VsVersion All Versions
Look for resources to SharePoint mapped folders "Resources" and "CONFIG\Resources" in current project. ReSharper ignores these resources now.

RSRP-427891: SharePoint: Cannot resolve resource 'dlc'

$
0
0
Reporter Alexander Kurakin (Alexander.Kurakin) Alexander Kurakin (Alexander.Kurakin)
Created Nov 19, 2014 2:38:34 PM
Updated Oct 19, 2018 11:35:46 AM
Subsystem Code Analysis
Assignee Maltseva Ekaterina (Maltseva.Ekaterina)
Priority Critical
State To Reproduce
Type Bug
Fix version Backlog
Affected versions 9.0 EAP
Fixed In Version ReSharper Undefined
VsVersion All Versions
Search for resources in this folder too: "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\CONFIG\Resources\"

RSRP-471467: Code cleanup produces code which doesn't compile

$
0
0
Reporter Ruslan Isakiev (ruslan.isakiev) Ruslan Isakiev (ruslan.isakiev)
Created Sep 6, 2018 1:53:30 PM
Updated Oct 19, 2018 11:39:39 AM
Resolved Oct 19, 2018 11:39:35 AM
Subsystem Code Analysis - C#
Assignee Andrew Karpov (andrew.karpov)
Priority Critical
State Fixed
Type Bug
Fix version 2018.3
Affected versions No Affected versions
Fixed In Version ReSharper 2018.3 EAP 2
VsVersion All Versions
##1:
PackageInstallResult installationResult = default(PackageInstallResult);
converted to
var installationResult = default;

##2:
var newProbingId = (ProbingId)(++myProbingIdCounter);
converted to
var newProbingId = (ProbingId) ++myProbingIdCounter;

JetBrains Rider 2018.2.1
Build #RD-182.4231.348, built on August 30, 2018
Viewing all 106942 articles
Browse latest View live


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