AsyncStackTraceEx 1.0.1.1

dotnet add package AsyncStackTraceEx --version 1.0.1.1
NuGet\Install-Package AsyncStackTraceEx -Version 1.0.1.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AsyncStackTraceEx" Version="1.0.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AsyncStackTraceEx --version 1.0.1.1
#r "nuget: AsyncStackTraceEx, 1.0.1.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AsyncStackTraceEx as a Cake Addin
#addin nuget:?package=AsyncStackTraceEx&version=1.0.1.1

// Install AsyncStackTraceEx as a Cake Tool
#tool nuget:?package=AsyncStackTraceEx&version=1.0.1.1

Normally when you look at Exception.StackTrace, it looks pretty bad for async method calls, and doesn't even include line numbers when it's run on a device like Phone which lacks PDBs.
   
This package provides an alternative, Exception.StackTraceEx(), which has cleaned up async output, and which gives line and file numbers even on phone.

This way, if your app crashes, you can synthesize much better crash reports for the user to email back to you.

Await DownloadAsync(url).Log()

To get that richer information in exception stack-traces, you have to augment your "await expr" calls with "await expr.Log()", as shown above.

Await DownloadAsync(url).Log("DownloadAsync",url)

If you chose to include more information, then the exception stack traces you get will be even richer and more actionable.

Product Compatible and additional computed target framework versions.
.NETPlatform dotnet is compatible. 
Windows Phone wpa is compatible. 
Windows Store win is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1.1 92,264 8/15/2015
1.0.0.2 1,681 4/13/2015
1.0.0.1 1,941 9/3/2014
1.0.0 1,679 8/24/2014