Can you specify the folder that VS will use when debugging mobile apps?

Debug debug will deploy the application to \ program files \ AppNamespace \ AppName.exe and attach to it. However, my application works on a memory card \ SD-MMC Card.

This means I am debugging and running in different locations, so I have a little maintenance headache.

So the question is, does anyone know if you can specify the folder that VS will use when debugging?

0


source to share


1 answer


Why are you debugging from \ program files \ AppNamespace \ AppName.exe? Debug from the actual target location.

Project Properties-> Devices-> Output File Folder

Set for "Location" = "Root folder" and "Subdirectory" to "\ SD-MMC card".



Also, when you reply to someone here on SO, don't create an answer for that, leave a comment in your post.

Also see this question .

+3


source







All Articles