Gladi8or

We Were trying out the "HelloSequentialWorkflow"from msdn, wherein there was a call command to deploy the workflow using "PostBuildActions.bat" file. The Build Failed and we got the following Error:
The command "call "C:\Documents and Settings\ctr5809\My Documents\Visual Studio 2005\Projects\SharePointDemo\SharePointDemo\\DeploymentFiles\PostBuildActions.bat" "Debug" "C:\Documents and Settings\ctr5809\My Documents\Visual Studio 2005\Projects\SharePointDemo\SharePointDemo\" "C:\Documents and Settings\ctr5809\My Documents\Visual Studio 2005\Projects\SharePointDemo\SharePointDemo\bin\Debug\" "SharePointDemo" DEPLOY
" exited with code 255. SharePointDemo
Kindly help us out.


Re: Team Foundation Server - Build Automation error "exited with code 255"

Jason Pricket - MSFT

From the error message, it looks like you are building a Sharepoint workflow example. Here is the workflow example that I found:

http://msdn2.microsoft.com/en-us/library/ms742162.aspx

Is that the one you have

Thanks,

Jason





Re: Team Foundation Server - Build Automation error "exited with code 255"

Gladi8or

Thanks Jason,

link ya've given contains console and form based but we are workin on Infopath based workflows....

could ya tip on that one.....





Re: Team Foundation Server - Build Automation error "exited with code 255"

Jason Pricket - MSFT

I can't seem to find the demo that the error message mentions. Can you give me a link to the download page

Thanks,

Jason





Re: Team Foundation Server - Build Automation error "exited with code 255"

Leo Vildosola

Try replacing "call" with "cmd /c". The error code "255" usually means that it is not able to find the file you are asking it to execute. "call" is usually used inside batch or command files and not directly as an exectuable.