vote up 1 vote down star

I have project with a post build event:

copy $(ProjectDir)DbVerse\Lunaverse.DbVerse.*.exe  $(TargetDir)

I works fine every time on my machine. I have a new developer who always gets the "exited with code 1" error. I had her run the same command in at a DOS prompt, and it worked fine. What could be causing this? Is there any way to get to the real error?

We are both using Visual Studio 2008.

flag

73% accept rate

3 Answers

vote up 1 vote down check

Get process monitor from SysInternals set it up to watch for the Lunaverse.DbVerse (on the Path field) look at the operation result. It should be obvious from there what went wrong

link|flag
vote up 0 vote down

As a matter of good practice I suggest you replace the post build event with a MS Build File Copy task.

link|flag
vote up 2 vote down

She had a space in one of the folder names in her path, and no quotes around it.

link|flag
putting quotes on path names is a good practice. not working in paths that contains space is event better :-) – Asher Nov 21 '08 at 21:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.