What will happen to my xamarin form project after the xamarin support ends ?

Dev 0 Reputation points
2024-01-17T10:55:42.6233333+00:00

Currently it will take time for me to migrate xamarin forms project to maui. So i want to know what will happen to my project if i don't migrate ?

Xamarin
Xamarin
A Microsoft open-source app platform for building Android and iOS apps with .NET and C#.
5,294 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 56,026 Reputation points
    2024-01-17T17:20:34.0133333+00:00

    nothing happens. MS is just stopping updates, bug fixes and support. the Xamarin tools may disappear in future versions of visual studio.

    Your code will still run. The most typical consequence is that the mobile O/S may make a change that breaks your code or the Xamarin runtime, so your code will not run on that version of the O/S without a fix. I assume the repo will remain open source, so you can clone and fix the runtime yourself, but this may not be practical.

    with IOS, code signing may be the first issue you run into. You are often required to update Xcode to sign, and typically you need a Xamarin update for each new release of Xcode.

    1 person found this answer helpful.
    0 comments No comments