Vladislav Antonyuk

Results 165 comments of Vladislav Antonyuk

Hey @profix898 , are you working on adding docs? Do you need any help?

Make sure you call UseMauiMaps in MauiProgram.cs

If you are on Windows (WinUI app), it is expected. Maps handler will be a part of Community Toolkit (it will be shipped in November) On other platforms it should...

Please see how it is implemented in Community toolkit https://github.com/CommunityToolkit/Maui/blob/main/src/CommunityToolkit.Maui.UnitTests/CommunityToolkit.Maui.UnitTests.csproj

could you share your simple project to reproduce the issue? most likely you have some dependencies which cannot be resolved

I see, you try to add executable project to unit test lib. you can only add Maui Library project. ![image](https://user-images.githubusercontent.com/33021114/143642310-e0b35e5e-3326-4063-8cb4-d69f085dfa8d.png)

you are doing it wrong. you are trying to add maui library to net6.0 library. it is not correct. the path should be: net6.0=>maui library=>maui executable

[UnitTestExample.zip](https://github.com/dotnet/maui/files/7610864/UnitTestExample.zip)

You can change your test project to support the same frameworks as your Maui project. In that case it should work. I suppose it is by design if .NET, not...

@devmikew Maui can't target net6.0. It doesn't make any sense. Net6.0 is like netstandard (like abstract class), which only describes what you can do in all platforms. For specific implementation...