Results 8 comments of devmikew

Just some thoughts! In the pure MVVM world your view models should not have references to UI components. This is so they can be unit tested!! Which is your problem...

The ICalendarRepository seems to be a data/business layer. Couldn't you add a net6.0 target framework for this (the repository) project and in that target framework implementation do nothing. Normally you...

Sorry, but what I tried to say, was to provide an implementation for net-6.0. This implementation does not need to do anything except return a valid result. Get Outlook for...

I have a sample working with the maui project targeting net6.0. This allows the test project to reference the maui project and the repository project (assuming its net6.0). The maui...

Attached is a sample project and tests where the VMs and helpers are linked into another project. [MauiAppLinked.zip](https://github.com/dotnet/maui/files/7614579/MauiAppLinked.zip)

@JohnHDev. The projects I sent only provide the scaffolding for a possible implementation. Eg: 1. The repository project has different packages references for windows and android. You could also provide...

@JohnHDev I'm not sure what else to do re unit testing a maui app. It is obvious that it can be done, 'like elephants mating'. I think the only easy,...

After a little inspection, maui does target net6.0. It seems to have most of the code compiled, however there is a broken reference to Microsoft. Maui Graphics. So I'm going...