-
Notifications
You must be signed in to change notification settings - Fork 1.9k
[Bug] DevOps pipeline fails for Xamarin.iOS after moving to XF5 #14163
Comments
Removing the select-xamarin-sdk.sh for us worked. Your error(s) look different to what we were having though. Have you tried enabling Clean on your pipeline? It looks like maybe something related to your obj folder containing stale binaries. |
@nbevans Thanks for the suggestion but it still fails, also my understanding is that clean wouldn't do anything for a hosted build agent. I wonder if it is due to me also updating all nuget packages to latest stable but it is not obvious to me which one if any would be causing issues? |
_CloseHandle, _DuplicateTokenEx, _FindFirstFileExW , it sounds like these are windows api, I think there is probaly a dll and/or static library that is not targeted to iOS that is included in this build, (like @nbevans said it sounds like there was a build for windows done in the same directory, which feels rather unlikely since this is a mac, or maybe you have set a explicit (full path) native reference to a non-ios library directly in your repository?, or some scripts is downloading it?) dont you have a way to have the direct output of the clang++ executable ? i would expect it to have the exact name of the files where the undefined references are coming from... from the name of the undefined reference i would probably expect it to be somethink like EDIT: dont you have any warning, (before the CompileToNative targets), somethings like "warning package XXX have been restored using netframework xxx, this package might not be compatible with your project. " ? |
Funny you say that as it is a multi-stage pipeline set to build Android, UWP as well as iOS but separately I believe (i mean it worked until moving to v5). I do not have an error similar to what you indicated but as I appreciate you talking about this issue and want to reduce the back and forth here is my full output: 2021-04-15T12:07:42.3847820Z ##[section]Starting: Build Xamarin.iOS solution **/.sln |
as we can deduce from this full log, the undefined symbols come from the https://www.nuget.org/packages/System.Security.AccessControl/4.7.0 nuget, either you referenced this or some package you are referencing has a dependency on this. This nuget can theorically target netstandard2.0 and 1.3 so this should be supported on mono/ios but maybe there is a problem with the nuget, investigation should be made in this direction (i think...) |
there also is the https://www.nuget.org/packages/System.Security.Principal.Windows/4.7.0 nuget that is probably not supporting ios either |
@tmijieux This is great information but it is not obvious to me which package has this dependency. I am looking in Dependencies area of NuGet solution window under updates, any advice? Edit: I think it may be System.IO.Abstractions: |
@dannythomas13 the full dependency graph should be generated after restore in |
those 3 files are for windows; |
I think I've just found the issue thanks to you, it seems I have a direct reference to System.IO.Abstractions from within my Xamarin.iOS project, I only meant to reference it within the core project - it will be interesting to see what errors I get on this running build. If it still pulls them in and I get the same errors I will likely look to remove the package entirely plus the unit tests...fingers crossed this does it |
@tmijieux Thank you so much for your help, it was indeed System.IO.Abstractions causing the issue - removing it from Xamarin.iOS was not enough and I had to actually remove it from the core project entirely, shame for those unit tests that require file system but at least the build now works, it is really not worth the uncertainty to try and get it working. Many thanks! |
Hi all.
I stumbled across a past bug on this site as I was facing build errors on Azure DervOps after moving to XF5. I had the following task:
sudo $AGENT_HOMEDIRECTORY/scripts/select-xamarin-sdk.sh $(MonoVersion)
And I could see that it was selecting Xamarin.iOS 13.18.2.1
After disabling the task I could see that Xamarin.iOS 14.14.2.5 is now used and I was hopeful that all would be well but unfortunately the build is still failing. I would really appreciate it if someone could help as I'm worried I will have to rollback to XF4.
I am using the following XF version 5.0.0.2012
And getting the following errors/warnings:
_CompileToNative:
/Library/Frameworks/Xamarin.iOS.framework/Versions/Current/bin/mtouch @/Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/response-file.rsp
Xamarin.iOS 14.14.2.5 (d16-9: 3836759d4 using framework: /Applications/Xcode_12.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk
Process exited with code 1, command:
/Applications/Xcode_12.4.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -framework CoreFoundation -framework Security -framework SafariServices -framework ContactsUI -framework CoreTelephony -framework SystemConfiguration -framework Photos -framework OpenGLES -framework MobileCoreServices -framework MediaPlayer -framework ImageIO -framework GLKit -framework CoreText -framework CoreSpotlight -framework CoreLocation -framework CoreImage -framework CoreGraphics -framework QuartzCore -framework Contacts -framework AssetsLibrary -framework WebKit -framework UIKit -framework Foundation -framework CoreVideo -framework AVFoundation -framework CFNetwork -framework GSS -weak_framework AuthenticationServices /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/registrar.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/main.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Veridian.iOS.exe.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/mscorlib.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Xamarin.iOS.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Mono.Security.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Xml.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Numerics.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Core.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Net.Http.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Drawing.Common.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Xamarin.Forms.Platform.iOS.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Xamarin.Forms.Core.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Data.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.ComponentModel.Composition.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Runtime.Serialization.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.ServiceModel.Internals.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Web.Services.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Xml.Linq.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Xamarin.Forms.Platform.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Autofac.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Wood.Veridian.Tablet.Core.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Xamarin.Forms.Xaml.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.IO.Abstractions.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.IO.FileSystem.AccessControl.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Memory.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Runtime.CompilerServices.Unsafe.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Buffers.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Security.AccessControl.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Security.Principal.Windows.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Acr.UserDialogs.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/BTProgressHUD.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Newtonsoft.Json.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Polly.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Xamarin.Essentials.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/OpenTK-1.0.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Rg.Plugins.Popup.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Plugin.Media.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Serilog.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/SQLite-net.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/SQLitePCLRaw.core.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/SQLitePCLRaw.batteries_v2.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/SQLitePCLRaw.nativelibrary.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/SQLitePCLRaw.provider.dynamic_cdecl.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfImageEditor.XForms.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.Core.XForms.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.Licensing.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfPdfViewer.XForms.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.Pdf.Portable.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.Compression.Portable.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Text.Encoding.CodePages.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfProgressBar.XForms.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfRangeSlider.XForms.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Microsoft.AppCenter.Analytics.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Microsoft.AppCenter.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Microsoft.AppCenter.iOS.Bindings.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Microsoft.AppCenter.Analytics.iOS.Bindings.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Microsoft.AppCenter.Crashes.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Microsoft.AppCenter.Crashes.iOS.Bindings.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Serilog.Sinks.Async.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Microsoft.AspNetCore.WebUtilities.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Microsoft.Net.Http.Headers.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Microsoft.Extensions.Primitives.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Text.Encodings.Web.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Serilog.Sinks.File.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Xamarin.Forms.BehaviorsPack.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfAutoComplete.XForms.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfRichTextEditor.XForms.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.Buttons.XForms.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfPicker.XForms.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfComboBox.XForms.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfPopupLayout.XForms.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Plugin.FilePicker.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfImageEditor.XForms.iOS.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/System.Json.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.Core.XForms.iOS.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfPdfViewer.XForms.iOS.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfBusyIndicator.iOS.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfRangeSlider.XForms.iOS.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfRangeSlider.iOS.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfRichTextEditor.XForms.iOS.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfComboBox.XForms.iOS.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Syncfusion.SfPopupLayout.XForms.iOS.dll.o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/AppCenter.a /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/AppCenterAnalytics.a /Library/Frameworks/Xamarin.iOS.framework/Versions/14.14.2.5/SDKs/MonoTouch.iphoneos.sdk/lib/libmonosgen-2.0.a /Library/Frameworks/Xamarin.iOS.framework/Versions/14.14.2.5/SDKs/MonoTouch.iphoneos.sdk/lib/libxamarin.a /Library/Frameworks/Xamarin.iOS.framework/Versions/14.14.2.5/SDKs/MonoTouch.iphoneos.sdk/lib/libmono-native-unified.a -force_load /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/AppCenterCrashes.a -force_load /Library/Frameworks/Xamarin.iOS.framework/Versions/14.14.2.5/SDKs/MonoTouch.iphoneos.sdk/lib/libapp.a -lsqlite3 -lc++ -Wl,-pie -arch arm64 -miphoneos-version-min=11.0 -isysroot /Applications/Xcode_12.4.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk -lz -liconv -lz -o /Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/obj/iPhone/Release/mtouch-cache/arm64/Veridian.iOS -u _xamarin_log -u _xamarin_find_protocol_wrapper_type -u _xamarin_release_block_on_main_thread -u _xamarin_get_block_descriptor -u _xamarin_IntPtr_objc_msgSend_IntPtr -u _xamarin_IntPtr_objc_msgSendSuper_IntPtr -u _UIApplicationMain
Undefined symbols for architecture arm64:
MTOUCH : error MT5210: Native linking failed, undefined symbol: _AdjustTokenPrivileges. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in. [/Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/Veridian.iOS.csproj]
MTOUCH : error MT5210: Native linking failed, undefined symbol: _CloseHandle. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in. [/Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/Veridian.iOS.csproj]
MTOUCH : error MT5210: Native linking failed, undefined symbol: _CreateDirectoryW. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in. [/Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/Veridian.iOS.csproj]
MTOUCH : error MT5210: Native linking failed, undefined symbol: _CreateWellKnownSid. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in. [/Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/Veridian.iOS.csproj]
MTOUCH : error MT5210: Native linking failed, undefined symbol: _DuplicateTokenEx. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in. [/Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/Veridian.iOS.csproj]
MTOUCH : error MT5210: Native linking failed, undefined symbol: _FindClose. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in. [/Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/Veridian.iOS.csproj]
MTOUCH : error MT5210: Native linking failed, undefined symbol: _FindFirstFileExW. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in. [/Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/Veridian.iOS.csproj]
MTOUCH : error MT5210: Native linking failed, undefined symbol: _FormatMessageW. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in. [/Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/Veridian.iOS.csproj]
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GetCurrentProcess. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in. [/Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/Veridian.iOS.csproj]
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GetFileAttributesExW. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in. [/Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/Veridian.iOS.csproj]
MTOUCH : error MT5210: Native linking failed, undefined symbol: _GetNamedSecurityInfoW. Please verify that all the necessary frameworks have been referenced and native libraries are properly linked in. [/Users/runner/work/1/s/Veridian.Xamarin/Veridian.iOS/Veridian.iOS.csproj]
The text was updated successfully, but these errors were encountered: