I just created an asp.net mvc4 with the internet template.
My idea is to be able to develop locally using EF Code First, but I also configured team foundation service to automatically build and publish to a windows azure web site.
the web.config is as follows:
<profile defaultProvider="DefaultProfileProvider">
<providers>
<add name="DefaultProfileProvider" type="System.Web.Providers.DefaultProfileProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" applicationName="/" />
</providers>
</profile>
What do I need to do, in order to make this work locally and in azure with code first ?