Reputation: 619
I have problems in setting up Visual Studio 2012 for Remote Debugging. In the first place, I don’t see the option, in the Properties page of my project Debug->Start Options, “Target device” as in this page stated:
http://hsballina.wordpress.com/2012/11/20/remote-debugging-in-visual-studio-2012-on-windows-8/
Actually, the options are different from my project:
Why is that? is it because my project is for “Windows Forms Application” and not targeted to Windows 8?
Thank you,
Upvotes: 1
Views: 880
Reputation: 11832
WinForms project does not support deploying on remote machines, which means that you cannot setup F5 experience out-of-box for this kind of projects. To debug your application on remote machine - you can do
Upvotes: 1