Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error in Visual Studio while debugging "parameter 'basepath' cannot have zero length"

I am facing this error while trying to debug C code in Visual Studio 2010. When searched in google all i could find something related is as below

http://connect.microsoft.com/VisualStudio/feedback/details/615793/badly-formed-debugger-command-causes-error-parameter-basepath-cannot-have-zero-length.

Any suggestions to overcome this is really appreciated . Thanks

like image 715
Shash Avatar asked Feb 29 '12 10:02

Shash


1 Answers

Same problem, I was building a function library to load on demand, but got this message. It is a matter of don't quote the VSDebugger options.

Remove the double quotes from the full path of the executable the command arguments the working directory

embedded spaces can be passed to the command line by single quotes, if really required.

like image 151
KAS Avatar answered Sep 24 '22 19:09

KAS