I am just trying to migrate an old Xamarin app to .Net Maui in VS2022 (17.1.6). I have created the base application, however I have an old class library (dll) that contains common code that is used by more than one app.
Can anyone tell me what project type I need to use to create what in old .net standard terms would be a shared class library (dll).
I've read through the online documentation (as far as I can find it) and the focus is on individual apps and does not seem to mention much about shared components (non-ui).
I have seen references to a template called a .Net Maui Class library, but nothing tangible that I can use.
In Visual Studio I can see there are individual libraries for each platform (IOS, Android, Windows) but I am not terribly keen on writing the same code multiple times for different platforms.
There is a class library project which seems like it may work, but it says MacOS rather than IOS in the description.
Regards