Eilon Lipton

Results 497 comments of Eilon Lipton
trafficstars

@Musicnotes - in general in .NET MAUI you always have access to native UI on each platform. You could, for example, in `MainPage.xaml.cs` have code like this: ```c# public MainPage()...

@mnxamdev - this doc has some guidance on platform-specific code in .NET MAUI apps: https://learn.microsoft.com/dotnet/maui/platform-integration/invoke-platform-code?view=net-maui-8.0. The specific examples there are focused on Android and iOS, but the exact same pattern...

Thank you @Musicnotes ! I saw one thing that could be the problem: All the lines in this section should be removed: https://github.com/Musicnotes/Sample_WinUI_Maui_App/blob/main/MauiTestApp/MauiTestApp.csproj#L73-L101 Probably some action in VS accidentally added...

Thank you @Musicnotes , I think I found something important. When I comment out this line: https://github.com/Musicnotes/Sample_WinUI_Maui_App/blob/main/MauiTestApp/MauiTestApp.csproj#L26 To be: ```xml ``` Then the project builds fine. I guess the "default...

Ah, that makes sense. I've tried debugging this some more but I can't figure out why the manifest file doesn't become available in that scenario. If I add this: ```xml...

Apparently if you're .NET MAUI is up-to-date enough, then you should have a new **.NET MAUI Multi-Project App** available in Visual Studio (or command-line): ![image](https://github.com/dotnet/maui/assets/202643/7564ff76-39a6-483b-a994-8e6bb43ddb68) And from that you can...

Hi @Musicnotes unfortunately this is now at the limit of how much I know about WinUI usage in .NET MAUI projects. It seems like with enough MSBuild XML tags there...

> @Eilon or someone in @dotnet/dotnet-maui-blazor-eng care to review? > > This ignores a trimmer warning in WinForms/WPF BlazorWebView, but we filed an issue for the future at: > >...

Yikes, that doesn't look good. This looks more like it's a problem with the native WebView on Android, so we'll have to try that out and see if we need...

I built a repro app here: https://github.com/Eilon/maui19822headcontent But couldn't reproduce the exact error. I was seeing the issue described by https://github.com/dotnet/aspnetcore/issues/51391, but I don't have that patch on this machine,...