Maksym Koshovyi
Maksym Koshovyi
> the challenge of updating CI config will likely come up again for thi Example of MAUI CI: https://github.com/maxkoshevoi/NureTimetable/blob/maui/.github/workflows/build.yml You'll just need to run `dotnet workload install maui` instead of...
You are right! Didn't cross my mind that Xamarin NuGet can not reference any Xamarin related packages. One thing though. Starting MAUI Android projects will be built using `net6.0-android`, and...
I think, you can retarget this package to `.net6` (or release a new one, it seems like most Xamarin NuGets a getting re-released for MAUI) to get advantage of new...
Yeah, they are unifying BCL for both runtimes (from what I understand), and more generally unifying all .Net frameworks under `.netX-yyy` umbrella. From what I have seen, UI packages will...
Here's some more info: https://www.youtube.com/watch?v=xGIkGX2FXPE
**Update** I created a MAUI sample app running .Net 6 Preview 6 using those commands: ```ps dotnet new --install Microsoft.Maui.Templates::6.0.100-preview.6.1003 dotnet new maui -n HelloMaui ``` - Release APK size...
Also this could be used to run Android and iOS tests in CI after migrating to .net6: https://github.com/dotnet/xharness It's currently used in https://github.com/dotnet/runtime
Looks like .net6 migration will be needed after all. Haven't tested myself, but turns out there's no backwards compatibility on iOS: - https://github.com/dotnet/maui/discussions/1743#discussioncomment-1923598 - https://github.com/dotnet/designs/blob/main/accepted/2021/net6.0-tfms/net6.0-tfms.md#design
@TheAlmightyBob as mentioned in the article above, net6.0-ios project cannot reference Xamarin.* projects. You can add net6.0-ios as a new TFM, but it's better to retarget whole NuGet to net6...
@chrfin How about droping support for all non-net6 TFMs? And mark this next version as pre-release in case there're any bugs. I don't see any point in supporting them further....