Hi,
As far as i know, Application_start event will be invoked by Azure application (After OnStart method), please refer to this tutorial:
http://msdn.microsoft.com/en-us/wazplatformtrainingcourse_introtowindowsazurelabvs2010_topic2#_Toc313609301
void Application_Start(object sender, EventArgs e)
{
Microsoft.WindowsAzure.CloudStorageAccount.SetConfigurationSettingPublisher((configName, configSetter) =>
{
configSetter(RoleEnvironment.GetConfigurationSettingValue(configName));
});
}
Do you mean you can not set breakpoints in Application_start code block, but can not see the breakpoints works? If so, i think there's something wrong with the VS or Azure emulators, but the code in Application_Start will be invoked as usual.
Hope this helps.
Please mark the replies as answers if they help or unmark if not. If you have any feedback about my replies, please contact
msdnmg@microsoft.com
Microsoft One Code Framework