views:

46

answers:

1

I'm wrestling with the Azure Deployment process. I have an application (many applications) that have run very-well-thank-you-very-much on my local machine, but when I publish and run them they often are "Initializing...." and then "Stopping..." because they've hit some error.

My question is: How can I find out what the error was that stopped it from running?

I want to be able to capture or view errors that stopped the actual deployment.

Thanks in advance

A: 

This is problem is normally caused by referenced assemblies - you will need to check that you have set the "Copy Local" attribute to true for any 3rd party assemblies within your project.

See the following blog post for a more in-depth analysis of this issue.

Nicholas Murray
I appreciate your advice, but most of my resolved problems have had nothing to do with this. What I'm after is a way of DETERMINING the error.. not troubleshooting it.
Evildonald