Hello

Every now and again I get asked to publish websites using code that's been supplied to me by our CTI supplier. The code does everything that it's supposed to do, so I've never seen any need to try and debug it.

When we publish these websites, we do so on our external webserver, and in the past I've always done the work that I need to do directly onto that server, but I'm concerned that by doing so, I risk breaking live code.

With that in mind, I've created a brand new empty solution in VS2010, and a project in which to hold the code. I can then source-control it using TFS2010 and have the code that I'm working on residing on my local machine until such time as I'm ready to deploy it. The issue that I have though is that there are errors within various aspx.vb pages that cause the site to fail to compile. I don't want it to compile though, merely to copy the files from my local machine to the designated location on the remote server.

Does anyone know of a way of forcing VS2010 to just publish code without validating it? I realise that it's an unusual thing to want to do, but my issue is that the code works in terms of what the website needs to do, so I'm not keen on editing the code in case it compiles properly but doesn't then work.

TIA