Hi everyone, hoping you are doing excellent!
Currently, our organization has a mobile framework based on xamarin forms . We are interested in migrating our framework to .NET6, without using MAUI, we were able to accomplish full migration on the Xamarin.Shared and Xamarin.Android projects. However, on Xamarin.iOS, it doesn't recognize the below namespaces:
- Xamarin.Forms.Platform.iOS
- Xamarin.iOS
Could you provide us some advice how to proceed in this case and why it is working only on Android? Below you'll find the Xamarin.iOS project definition
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-ios16.0;xamarinios</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>true</ImplicitUsings>
<SignAssembly>True</SignAssembly>
<SupportedOSPlatformVersion>13.0</SupportedOSPlatformVersion>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Controls.SignaturePad.Forms" Version="3.0.0" />
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2196" />
</ItemGroup>
</Project>