ashilon
ashilon

Reputation: 1941

Slow debugging in .NET Core

We are developing a web application in ASP.NET Core (1.1.2), and we are experiencing a huge slowness in debugging. We are using Visual Studio 2015, but i'm guessing that it has more to do with .NET Core than with Visual Studio. But I might be wrong. Is this a known issue with .NET Core at the moment? Will upgrading to Visual Studio 2017 help in some way? And are there any known workarounds for this? The whole team is having the same problem, so it can't be just my specific machine that's problematic.

Thanks,
ashilon

Upvotes: 1

Views: 1872

Answers (2)

ashilon
ashilon

Reputation: 1941

Well, I think that as a workaround, there might be a solution that might work: Go to Tools | Options | Debugging | General and check "Use the legacy C# and VB expression evaluators" option.
Worked for me, might work for you too.

Upvotes: 0

Harold Javier
Harold Javier

Reputation: 887

Upgrading to Visual Studio 2017 won't help you.

Just try to deactivate the diagnostic tool in Visual Studio and see the result:

Tools -> Options -> Debugging -> General (Then, uncheck "Enable Diagnostic Tools while debugging")

Hope it helps.

Upvotes: 1

Related Questions