Tagged Questions
10
votes
3answers
5k views
eclipse debugger: attaching source-code of maven dependencies?
I'd like to use the source code of maven-managed dependencies when debugging our webapp in myEclipse 8.
I have managed to attach the sources to the libraries in the "Maven Managed Dependencies" ...
1
vote
4answers
748 views
Can you debug a .NET app with ONLY the source code of one file?
I want to debug an application in Visual Studio but I ONLY have the source code for 1 class. I only need to step through a single function in that file, but I don't understand what I need to do it. ...
9
votes
2answers
2k views
How to attach sources to referenced assembly in Visual Studio
I am fairly new to Visual Studio, coming from Java development on Eclipse. Among other things I sorely miss from Eclipse is an ability to view source of binary assemblies.
In Eclipse I can attach ...
5
votes
3answers
3k views
Debugging x86 .NET application on Windows x64
I use the x64 version of Windows 7. My application use some COM servers (usual native x86 COM Servers) that can't be loaded in x64 context. So I decided run it as a x86 application using WOW so I set ...
1
vote
1answer
202 views
Can't step through .NET method System.Web.Security.RolePrincipal.IsInRole due to missing source
In my ASP.NET MVC 3 project, with Visual Studio 2010 and .NET 4.5, I'm trying to step through the method System.Web.Security.RolePrincipal.IsInRole, but am unable to due to the source file not being ...
0
votes
4answers
2k views
“The source file is different…” message in Visual Studio 2008 is result of debugging x32 apps on x64 Windows
I'm writing ADO.NET provider. For debugging I use class DbProviderFactories.GetFactory method. This method constructs my inherited DbProviderFactory class that i use for create DbConnection inheritor ...