I have a build process which takes my VS 2008 .NET 2.0 ASP.NET project and builds it using MSBuild. The project contains ASPX files, plus a web service, and also connects to another web service ;)
All seems to work well except MSBuild puts the *.XmlSerializers.dll assembly file into the folder _PublishedWebsites\MySite rather than in _PublishedWebsites\MySite\bin like it does with the other dll.
Does it matter that the *.XmlSerializers.dll assembly file is not in the bin folder?
Or should I use my build process to copy the *.XmlSerializers.dll assembly into the bin folder after MSBuild has finished?