Resharper 8 slows down the vs 2013 razor editor - razor

I having problems with resharper in visual studio 2013 razor editor. Trying to move to another line of code with mouse gets about 1 sec to complete. Moving with arrows is a bit faster. Intelisense and code completion is very slow also.
I'm using an Core i7, 12GB DDR3, RAID0 SSDs PC.
Any help would be appreciated.
Thank you.

I had the same problem. I manage to solve this by following the steps in this blog.
I didn't have to do all of the steps. The step that "saved" me was
Disable "Rich client visual experience" in the "Options -
Environment". Here's how that settings page should look:screenshot
I hope this will solve your problem.

The solution (Disable "Rich client visual experience" ) does not work for me.
I noticed that the problem only occurs when a document is reopened. If the document is already open when you open the Solution not the problem occurs.

Devexpress published an update to their vs menu integration (i think) which solves the problem.
https://www.devexpress.com/Support/Center/Question/Details/Q561434
Thank you all.

Related

Visual Studio 2022 hangs when open Razor file

Created a stock Blazor project (Client or Server side, both do it).
When I open the _Imports.razor, not a problem.
Open NavMenu.razor, a problem.
The IDE opens the file, displays formatted Razor and after a couple of seconds just hangs, CPU usage for devenv.exe goes 50% and stays there until End Task.
Any idea how to fix this? The IDE should not hang when I try and work with a Razor file.
Thanks to the effort by these guys, changing the IDE font from 'Cascadia Mono' to Consolas sorted the problem:
https://youtrack.jetbrains.com/issue/RSRP-487353/Visual-Studio-2022-stops-responding-when-used-with-Resharper
(Note: Not using Resharper, stock VS2022 install)

Where can I find the "Work Offline" option in SSIS location

I was having trouble finding the work offline option in SSIS. I was receiving a suggestion from visual studio that I should try to set Work Offline to off. I am going to answer this myself.
Make sure you are on the control flow tab and right click and you will see the option to work offline or not.
They took away the dropdown of SSIS in my version of visual studio (Installed September 2021). I know it might seem simple but it took me some time to find it and the internet was not helpful in my searchings.

Visual Studio Community 2019 Debugger Not Preempting Chrome Debugger with Blazor Wasm App

I am playing with a Blazor Wasm app on VS Community 2019 v16.6.2 using AspNetCore v3.2.0 and Chrome v83.0.4103. When I set a break point in some native javascript in VS, Chrome breaks on that statement instead of VS as shown in the screenshot below (look for the small light yellow "Paused in debugger" popup). This has happened before, but then I discovered I had '"nativeDebugging": true,' in the IIS Express profile in launchSettings.json. I got rid of it, and the problem went away. Now it is back, without nativeDebugging set. This is a giant pain. Any idea what I am missing this time?
Thanks. Steve
I'm not sure this is a real answer. As I said above, the problem went away when I merely opened the .map file for the TypeScript file. I assume that triggered some rebuild-like process, but that's purely conjecture.

Telerik KendoUI Mvc SSRS Slow

So I recently installed Telerik UI for ASP.NET MVC and it seems to have totally bodged my SSDT/SSRS projects in visual studio. The projects work but can take upwards of 20-30 seconds to save making them basically unusable.
Originally we thought this issue may have been have been something to do with ReSharper however having contacted their support and done some captures they said that it looked like Telerik was the culprit.
Extract from the capture trace here...
Having uninstalled Telerik completely low and behold my save speeds go back to normal (less than a second).
Now full disclaimer - we are not using the most up to date version of Telerik (it's a slightly older version 2018.2.620) as this is the version we are licensed for which I would like to think wouldn't make a difference but putting it here just in case!
Has anyone else experienced this issue with SSRS projects? It's strange as, as far as I can tell, there is nothing in the project that should be referencing any MVC/Telerik code.
We have tried this on multiple machines and all seem to suffering the same problem although looking at Google I can't find anyone else reporting the same issue... Annoyingly I can't post of the telerik forums directly as they only let you do that if you have an active account...
If anyone can assist I would really appreciate it!

Modality issue in SWT_AWT bridge

I am using EmbeddedSwingComposite (built on SWT_AWT bridge) which is mentioned in the following article :
http://www.eclipse.org/articles/article.php?file=Article-Swing-SWT-Integration/index.html
Though it says that using the above technique modality issues are resolved. But in my case there are still some modality issues left. I guess maybe becuause I am using JDK6 wherein Swing modality was changed.
Anybody with experience or any idea on this. Any further info please post.
Thanks in advance
I ran into this problem as well. My solution was to change the shell on the pop-up box / shell to an SWT shell, while keeping the children as Swing components. This sorts everything out completely, but might be incompatible with your existing APIs.