Remote debugging for a .NET WPF application through the Visual Studio 2008 remote debugger?

Remote Debugging for .NET WPF Application via Visual Studio 2008 Can Remote Debugger be executed? I only see native in options? Any help please ...

0


source to share


1 answer


Yes maybe. You run the remote debugger on the client PC, you run VS2008 on your PC. You select "attach to process" and enter the name of the remote server in the filter field. Then you can select an application from the list of processes. (Obviously, you need to make sure the list shows a managed process - this can be changed using an option in the dialog)



It makes no difference that this is a WPF application, you can remotely debug any .net application with visual studio as long as you have the correct source code and the appropriate symbol files.

+1


source







All Articles