I am getting following error

C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets (178): Unable to copy file "bin\AjaxControlToolkit.pdb" to "C:\Builds\2\testbox\test\Binaries\_PublishedWebsites\test\bin\AjaxControlToolkit.pdb". Could not find a part of the path 'bin\AjaxControlToolkit.pdb'.

Just checked file is available on path. same working fine on local as well as while building from team city. Don't know whats going wrong.

Edited

Just cant understand why it is trying to copy from obj directory..Please see the following log

 Copying file from "obj\Debug\Manager.dll" to "C:\Builds\2\box\Two\Binaries\Manager.dll".
Manager -> C:\Builds\2\box\Two\Binaries\Manager.dll
Copying file from "obj\Debug\Manager.pdb" to "C:\Builds\2\box\Two\Binaries\Manager.pdb".
Copying file from "obj\Debug\Manager.xml" to "C:\Builds\2\box\Two\Binaries\Manager.xml".
Done Building Project "C:\Builds\2\box\Two\Sources\Manager\Manager.vbproj" (default targets)

Where as I have set the output to bin.

link|improve this question

72% accept rate
My apologies for this. – sam Jan 31 at 10:57
feedback

1 Answer

Possible reasons:

  1. This reference is dynamic, meaning its path gets cleared and created on each build. Third party reference files should be checked in the source control to a common shared folder (e.g. \lib).

  2. Your project have a file reference to AjaxControlToolkit to a path which does not exist on build the server. Open the project's .csproj file,and check the HintPath of AjaxControlToolkit.

  3. Avoid referencing third party assemblies from the GAC (where the first bullet is applicable).

link|improve this answer
Plz see the edit section...as tried all what you said but couldnt fix it. – sam Jan 31 at 10:49
can you post your .csproj file? share the link on codepaste.net – KMoraz Jan 31 at 16:44
I think problem was with build agent working directory. I deleted the current working directory and changed the working directory to a different path and all builds starting to pass. – sam Feb 1 at 13:18
feedback

Your Answer

 
or
required, but never shown

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