Click here to Skip to main content
16,002,236 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am moving a solution from Windows 7 to Windows 8.1. When I run the app in debug mode I am getting this error. It asks me to browse to the file - where would that be?

Locating source for 'f:\dd\ndp\fx\src\Core\System\Linq\Enumerable.cs'. (No checksum.)
The file 'f:\dd\ndp\fx\src\Core\System\Linq\Enumerable.cs' does not exist.
Looking in script documents for 'f:\dd\ndp\fx\src\Core\System\Linq\Enumerable.cs'...
Looking in the projects for 'f:\dd\ndp\fx\src\Core\System\Linq\Enumerable.cs'.
The file was not found in a project.
Looking in directory 'C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\vc7\atlmfc'...
Looking in directory 'C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\vc7\crt'...
The debug source files settings for the active solution indicate that the debugger will not ask the user to find the file: f:\dd\ndp\fx\src\Core\System\Linq\Enumerable.cs.
The debugger could not locate the source file 'f:\dd\ndp\fx\src\Core\System\Linq\Enumerable.cs'.
Posted

1 solution

That file is part of the .NET Framework, so you're unlikely to have a copy on your computer.

You can set up Visual Studio to enable you to step into the .NET Framework code - the instructions vary slightly depending on your version of Visual Studio:
How to: Debug .NET Framework Source[^]

If you don't want to step into the framework code, then enable the "Just My Code" option under Tools -> Options -> Debugging -> General.
 
Share this answer
 
Comments
Idle_Force 6-Jan-15 14:51pm    
Good to know about that "Just My Code" part!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900