How do I get FilePicker to return a non-null result on MacCatalyst?
Maui Workload 9.0.14/9.0.100 SDK 9.0.200 XCode 16.3 (16e140) Mac OS Sequoia 15.3.2 Visual Studio Code 1.98.2 (Universal) I am developing a MAUI App that needs to run on Windows, MacOS and iOS (iPad only). I am trying to get…
How to set up Custom Authentication State in Blazor Server .net 8 or 9
Hi, I set authentication settings in Blazor Server .NET 9. After setting it, I put the [Authorize] attribute on the API call in the controller. So it will fetch the authorization header of the access token, and the API will be authorized to show…

How to Monitor Performance of Message Consumer Applications
I have developed a background service in .NET 8.0 which is responsible for receiving messages from an Azure Service Bus queue. The Program.cs has Application Insights configured as you can see in the code snippet below. Is it possible to see in…
Add-Migration works, but Update-Database says "no migrations to update". I tried deleting the Mig.. Folder
Visual Studio and EF Core problem. Migrations don't work. Add-Migration Title works to update the schema, but Update-Database in NuGet Command Console says that the db is already up to date, but the db does not have my new table in it. I tried…
I get cswinrt.rsp exited with error code 1 when compiling for ios simulator
Building for local iOS iPhone is OK. Only fails when building for iOS simulator. Visual Studio is running on a PC and paired to a Mac. 1>EXEC : error : Path '18.2' is not a file or…
Clickonce: error of downloading application file for Install Mode and Settings: This application is available online only
Hi I have the following Windows forms application which is used to publish by ClickOnce technology. When I publish the application with "Install Mode and Settings: This application is available online only". The setup.exe is generated in…
Line number and path or file name missing when logs maintain in azure applicationinsights for blazorWASM application
I had develop blazorWASM application logs using these links. I had used .NET core 6.0.I had use ILoggers<Type> logger…
HttpClient - Uploading file through API is taking more time in .NETMAUI(.NETCore 8.0) compared to Xamarin.Forms
In MAUI application from Android device, I am uploading file through API via HttpClient into controller. In Xamarin.Forms upload file is taking 3 minutes of time, but after migrating into .NET MAUI uploading is taking 6 minutes of time. I am suspecting…
AADSTS165000: invalid Request: The request tokens do not match the user context,
MAUI. Android app, use Oauth2D to login. Always get the error: Requestld:50664542-03a0-48dc-b330-acf123cf9f00 Correlationld:27fdf9bd-1dd4-4b3b-a556-34f7c03c17af Timestamp:2025-04-02T02:58:37Z Message:AADSTS165000: invalid Request: The request tokens do…
Create an IPA from Windows MAUI iOS + Extensions
Hi, we have a MAUI project with iOS extensions. We can run them on emulators and create the IPA either in Visual Studio or Visual Code on a Mac. Due to dotfuscator issues, we need to create the IPA, but now from Windows! We can create the IPA using the…
Deployment as exe on windows 11 is not working
Hi, Please see: https://app.screencast.com/LrNZnzuMjSgLd I installed the app ,deployed as exe with using -- self contianed ,on windows 11 and it not openning. dotnet publish -f net9.0-windows10.0.19041.0 -c Release -p:WindowsPackageType=None…
Unable to Publish .NET MAUI iOS App for Ad-Hoc Distribution
Hi, I have been following the steps outlined in this guide to publish my .NET MAUI iOS app for ad-hoc distribution. However, I am encountering an issue in the "Publish the app" section, specifically at Step 5. When I attempt to archive the app…
App.Current.GoToAsyn("page") in NET 9 will work ?
Hi, I have MAUI app in .NET 8 . In this MAUI app I used for navigation only : await App.Current.GoToAsyn("new_page") while moving from page to page. Does this will work in .NET 9? Thanks,
Why does my app show in a mobile phone resolution when deployed on a tablet simulator
Hello, I'm developing an application in .NET MAUI. I managed to have a functional MainPage like the following image. Then, I tested if it could work on Android, and after adding some code to make it build, it worked on a Pixel 7 simulator for Android.…
Does using --self-contained will install all the need runtime files for running the app in server 2019/2022Does using --self-contained will install all the need runtime files for running the app in server 2019/2022
Hi, I have Maui app in .NET 9. Does using --self-contained will install all the need runtime files for running the app in server 2019/2022. I installed the app ,deployed as exe with using -- self contianed. dotnet publish -f net9.0-windows10.0.19041.0 -c…
Win11 - User32.GetRawInputData fails to read data since 24H2
Background: We are using HwndHost class to host child window inside WPF application. From WndProc method we are forwarding input messages (WM_INPUT) to child process/window using User32.SendMessage. The child process/window WndProc method then receives…
Toolkit DrawingView is giving AndroidRuntime] java.lang.RuntimeException: Canvas: trying to draw too large(216039040bytes) bitmap.
Toolkit DrawingView is giving AndroidRuntime] java.lang.RuntimeException: Canvas: trying to draw too large(216039040bytes) bitmap when I draw a single horizontal line after reading from Memory stream await using var stream = await…
.NET Cannot access network on Mac
Hello, I am encountering an issue where a new install of .NET on Mac is unable to access the network. My network is just fine, I can access everything successfully from a browser and Curl. This exhibits by not being able to do a dotnet restore (hangs and…
How to use a blazor server app with a web api for authentication and persist authentication across circuits?
I originally posted a comment under this question as I am following a similar scenario: https://learn.microsoft.com/en-us/answers/questions/1454927/how-to-use-a-blazor-server-app-with-a-web-api-for I have a custom AuthenticationStateProvider which is…
Report on progress bar of download file
Hi, I have progress bar control, i got from API the content stream response. How i can report on progress of download process of file in the UI page? Thanks, try { using (var fileStream = File.Create(zipPathForFolderOrPathForFile)) …