We're using Rake with Albacore for our build & deploy process in TeamCity but my latest solution is causing me problems when I compile.
When I run msbuild I get the following error:
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v9.0\WebApplications\Microsoft.WebApplication.targets(60,3): error MSB3021: Unable to copy file "bin\admin.web.dll" to "C:/src/Trunk/admin/output/_PublishedWebsites\web\bin\admin.web.dll". Could not find file 'bin\admin.web. dll'.
The build output path for the website project is set to bin\ in VS & when I build through VS it copies them into there fine. But building through Rake & MSBuild doesn't work.
My compilation ruby file has the :outdir set to "output/_PublishedWebsites" and it copies fine for all my other solutions.
It's an edge case but it's causing me pain - anybody got any ideas?