Migration From Xamarin Native IOS to MAUI

ヴィン- vinh-nn2 1 Reputation point
2022-10-24T09:05:48.62+00:00

I have a Xamarin native IOS application that needs to be migrated to MAUI
What is the best solution here?
I only researched solutions for Xamarin.Form without Xamarin native

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,231 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. QeOu-3748 1 Reputation point
    2022-10-24T11:58:35.457+00:00

    hi
    I think I ABp to migarate

    0 comments No comments

  2. Lex Li (Microsoft) 5,322 Reputation points Microsoft Employee
    2022-10-24T19:51:25.163+00:00

    Assume you are with latest .NET SDK (6 or 7 RC),

    1. Create a new folder somewhere.
    2. In this folder run dotnet new ios to create a native iOS project using .NET MAUI.
    3. Run this default project and make sure it works.
    4. Cut and paste useful code from your old Xamarin project to this new project.

    Microsoft will probably make the migration simpler with upgrade assistant, https://github.com/dotnet/upgrade-assistant

    0 comments No comments