Timo Partl
Timo Partl
I think it can be done pretty similar to how it is done for the iOS part already: https://github.com/AzureAD/microsoft-authentication-library-for-dotnet/blob/1ba884de8ac7b5c0754c6b4079f97fbc8754f3b2/src/client/Microsoft.Identity.Client/Platforms/iOS/SystemWebview/SystemWebUI.cs#L57-L83 For the `ASWebAuthenticationPresentationContextProviding` I am using `NSApplication.SharedApplication.MainWindow` but one could also...
The reason why I added this issue to the other issue that was about trimming is because I think this issue is also related to trimming. When you use this...
@Hemantxk Sure - here's an example project: [test.zip](https://github.com/user-attachments/files/20722353/test.zip)
Thanks for your response and workaround @zinniaa. I think it can be simplified as follows: ``` void ItemsView_Loaded(object sender, RoutedEventArgs e) { var itemsView = sender as ItemsView; itemsView.ScrollView.PointerWheelChanged +=...
> It looks like we're currently only setting this for MAUI and Android: The data also seems to be populated on iOS (I am not using MAUI, but .NET for...
I'd be willing to help with this work and I had a closer look at the source code, but I was kind of overwhelmed by the complexity. I don't know...
Ok, I will see if I can wrap my head around the complexities and get some progress once I find some free time. Unfortunately, I have a very busy week...
> The information is also missing on macOS ("os.name" is always "Darwin", but os version is missing), could it be added for that platform as well? >   @jamescrosswell...
@jamescrosswell the OS version can also be queried using `Environment.OSVersion.Version.ToString()`, as I suggested above. But for I didn't find something similar for the device model, which is why I suggested...
I don't want to use MAUI - it would pull in way too many dependencies just for the sake of getting device info... How is it done for iOS? Device...