I have a c# MVC, entity framework web application and I've been using the web deploy method to move my application from dev to staging to live. Works great.
Our systems team are looking to role out a new server (cluster) and due to permission problems the web deploy method no longer works.
I can do a file deploy and doing some testing this runs through the migrations on launch but doesn't execute the seed command. The web deploy seems to do some extra stuff to the web config that the file one doesn't do.
I'm thinking that the only way to get this working is to do a web deploy - perhaps locally and then copy those files to the live server.
Any other ideas?