vote up 0 vote down star

I have a post-build event that runs some commands for a c# project. The last command would sometimes cause the ERRORLEVEL value not equils to zero and then the build fails.

I want to append an extra line of command to always set the ERRORLEVEL value to zero. What is the most convenient way to do that?

flag

50% accept rate
The build doesn't really fail, only the IDE does look like it. – Dykam Jul 11 at 14:02

4 Answers

vote up -1 vote down

So, does the post-build event run stuff from the command line? If so, just make sure each command returns 0 to the OS.

link|flag
I can't do that, because I know some of the commands do return non-zeros in some cases. – askalee Jul 11 at 13:45
vote up 0 vote down

Seems to do the trick:

ver > nul

Not everything works, and it is not clear why. For example, the following do not:

echo. > nul
cls > nul
link|flag
3  
I think the reason of why "echo" and "cls" don't work is because they are the shell built-in commands, not real programs. – askalee Jul 11 at 13:43
I'll give you that, but where is ver.exe? – binarycoder Jul 11 at 15:28
I can't find "ver.exe" or "ver.com" either. I don't know how to explain that. – askalee Jul 12 at 13:29
vote up 1 vote down check

I found that "exit 0" looks like a good way to deal with this problem.

link|flag
vote up 2 vote down

if you use exit /b 0 you can return an errorlevel 0 from within a child batch script without also exiting the parent.

link|flag

Your Answer

Get an OpenID
or

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