Is there someway to get MSBuild to skip over missing files when using /p:OutDir?

I am working with TeamCity to continuously build a large webproject. I have written a program that handles our continuous deployment but I am running into an issue with MSbuild. I am using the property switch OutDir to output my needed web files.

Here is my msbuild command:

msbuild project.sln /property:Configuration=Release /property:OutDir=R:\BuildOutput\

MSBuild is failing with OutDir because there are files missing. Example:

error MSB3021: Unable to copy file "Api\Js\excanvas.min.js" to "R:\BuildOutput\_PublishedWebsites\Web\Api\Js\excanvas.min.js". Could not find file 'Api\Js\excanvas.min.js'.

It's a very large and old project with lots of missing files. Is there someway to get MSBuild to skip over these files and/or ignore these errors.

Thanks, any help will be appreciated.

Adding the missing files is a quick fix, but I don't want to add all the missing files every time we run into this issue.

link|improve this question

feedback

1 Answer

The problem here is that your csproj is pointing, either explicitly or implicitly to files that don't exist

/p:OutDir just changes the location of something that's already happening.

So the unfortunate answer is... go fix that and don't blame the messenger.

EDIT: BTW adding /v:diag to the MSBuild invocation args will give you complete dumps of item lists as they are computed during the processing

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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