Simply create a PhoneGap application for Windows Phone 7.5 in Visual Studio 2010

The beta of the Amazon Web Services SDK for Windows Phone has recently been released. This SDK provides developers with a speed dial that lets you quickly connect and integrate Windows Phone applications with AWS S3, SimpleDB and SQS services.
This video shows how to install the SDK and explains the steps required to configure a Windows Phone application project to take full advantage of the assemblies that allow connecting to S3, SimpleDB and SQS Cloud services.
The SDK can be downloaded from here.
I downloaded AWS SDK.I did as explained in video.But my application is not launching.
When i debugged application is comes to following function :
// Code to execute on Unhandled Exceptions
private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
{
if (System.Diagnostics.Debugger.IsAttached)
{
// An unhandled exception has occurred; break into the debugger
System.Diagnostics.Debugger.Break();
}
}
I think problem with aws dll.Please help me out here.