I am using Visual Studio Express 2013 for Web & developing web APPS ( not sites ) on .net 4.5.
I build,test & view my site on a local IIS 7.5. I host on Azure - using App Services. I build and release to an App Services slot using VSTS Online
I have my classes in an App_Code folder - files are marked as compile This appears to be the only way I can set this up to work on local IIS ( or am I missing something ?) And it all works - all classes are available
But I need to build and release on VSTS/TFS ( using VS Team explorer to push) I am using the standard Azure Web App build definition module on TFS - Which takes the App_Code folder and moves it into the bin folder - but does not compile it - thus breaking the classes when they are deployed
I have tried renaming App_Code but that breaks local and still does not compile on TFS
What am I missing - how do I get TFS to either compile my classes OR copy the App_Code folder to the root ( not ideal but hey it works )?