cake-contrib / Cake.Raygun

Objective-C debug symbols (dSYM) are essential to debugging Xamarin iOS application crashes. This Cake add-in uploads these symbols to Raygun.io which creates delightfully readable stack traces which aid you in tracking down those bugs.
https://ghuntley.com/
MIT License
1 stars 5 forks source link

Cake.Raygun Build status

Objective-C debug symbols (dSYM) are essential to debugging Xamarin iOS application crashes. This Cake add-in uploads these symbols to Raygun.io which creates delightfully readable stack traces which aid you in tracking down those bugs. As Raygun adds additional functionality to their API, these features will also be made available in this add-in.

Installation

Add the following reference to your cake build script:

#addin "Cake.Raygun"

Usage

var filePath = new FilePath(@"./artifacts/ios/appstore/MyCoolApp.app.dSYM.zip");
var settings = new RaygunSymbolSettings() { ApplicationIdentifier = "", Username = "", Password = "" };

UploadSymbolsToRaygun(filePath, settings);

See also