Flack
Flack

Reputation: 5899

Visual Studio won't stop displaying "Source not found" window for third party dlls

I am debugging an app that makes use of System.Reactive.dll. I am not sure how it happened but all of a sudden while debugging VS will stop and show a "Source not found" window for basically anything from System.Reactive.dll. For example:

Subject.cs not found

You need to find Subject.cs to view the source code for the current call stack frame.

This happens for Merge, RefCount, TakeUntil, Select, etc.

"Enable Just My Code" is checked in the debug options. I am not trying to step into any of these reactive methods (I am just hitting F10 while debugging).

How can I disable this? It is making debugging the app impossible.

Upvotes: 6

Views: 4972

Answers (1)

Jingmiao Xu-MSFT
Jingmiao Xu-MSFT

Reputation: 2297

According to your description, If “Enable Just My Code” doesn’t work you can try the following methods:

  1. check Enable source server support under Tools > Options > Debugging > General enter image description here
  2. Reset all settings under Tools > Import and Export Settings enter image description here

Upvotes: 9

Related Questions