TheDeveloper
TheDeveloper

Reputation: 1217

.dSYM file missing in VSTS build

I am building the Xamarin ios app on VSTS. I see that its generating .dSYM file during the build time but when I check the artifact folder, I could see ipa file but not dSYM file.

I need dSYM file to run Xamarin Test Cloud.

Am I looking at wrong place or do I need to do something different to get .dSYM file ?

Upvotes: 0

Views: 1272

Answers (1)

SushiHangover
SushiHangover

Reputation: 74094

When building iOS apps from visual studio, the .dSYM file that can be used to symbolicate crash reports ends up on the build host at path:

/Users/<username>/Library/Caches/Xamarin/mtbs/builds/<appname>/<guid>/bin/iPhone/<configuration>

https://kb.xamarin.com/customer/portal/articles/1969488--where-can-i-find-the-dsym-file-to-symbolicate-ios-crash-logs-

Upvotes: 1

Related Questions