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.
Add the following reference to your cake build script:
#addin "Cake.Raygun"
var filePath = new FilePath(@"./artifacts/ios/appstore/MyCoolApp.app.dSYM.zip");
var settings = new RaygunSymbolSettings() { ApplicationIdentifier = "", Username = "", Password = "" };
UploadSymbolsToRaygun(filePath, settings);