Visual studio unit test, how to set the PATH?
Hello, I would like to create a folder structure like this: Solution directory Solution file .sln Project 1 source files of project 1 Test project Source files of tests WorkFolder File used for testing My problem is defining the…
Developer technologies | Visual Studio | Testing
.NET 9 OpenAPI document not generating at build time (Microsoft.Extensions.ApiDescription.Server)
Hi all, I'm working on a .NET 9 web API project and I'm trying to generate an OpenAPI document at build time, as described in the official documentation here:…
Developer technologies | ASP.NET | ASP.NET API
if two tasks get completed at the same time the what happens in WhenAny
hi, IEnumerable<Task<int>> downloadTasksQuery = from url in s_urlList select ProcessUrlAsync(url, s_client); List<Task<int>> downloadTasks = downloadTasksQuery.ToList(); Task<int> finishedTask = await…
Developer technologies | ASP.NET | ASP.NET Core
Installation of C++ Runtime 2015-2022 ignores /noreboot option. How can the reboot be prevented?
From a vendor we have to install a C++ Runtime 2015-2022 (14.42.34338) and we try to deploy it on the PC's with installation option: vcredist_x86.exe /quiet /noreboot On most PC's a reboot is forced. How can the automatic reboot be prevented? Windows…
Developer technologies | C++
WebView is not working correctly in IOS MAUI
I have added a webview in my MAUI crossplateform app but I am not able to type in textbox or click on image buttons even pop up shows up but not able to even ok/cancel. While working fine with Android, Another issue with voice and video that is happening…
Developer technologies | .NET | .NET MAUI
Problem with Blazor InputSelect
I've been trying to learn Blazor and I've been working with a movie app tutorial that I got here: https://learn.microsoft.com/en-us/aspnet/core/blazor/tutorials/movie-database-app/?view=aspnetcore-9.0. I've added a lookup table with a "Star…
Developer technologies | ASP.NET | ASP.NET Core
A Blazor app I've been working on, no longer can access our Azure Key Vault
I've been working on rewriting an app for a while. I have successfully debugged the app, and it's read from our Azure Key Vault, many times before. Now, without making any changes, it no longer can access it. I'm getting a, "No connection could be…
Developer technologies | ASP.NET | ASP.NET Core
Visual studio 2022 Maui project unable to compile for .net 9.0-ios target
Hi, I am trying to deploy a test app to iPhone from windows visual studio but getting the following error when trying to compile. The specified network password is not correct. I have completed the automatic provisioning : I obviously have no problem…
Developer technologies | .NET | .NET MAUI
how cancel token work in these cases
following code is from https://learn.microsoft.com/en-us/dotnet/csharp/asynchronous-programming/cancel-an-async-task-or-a-list-of-tasks i could not understand when it will show following two messages from last main code. Console.WriteLine("Download…
Developer technologies | ASP.NET | ASP.NET Core
Microsoft Analytics API returns a response "200 OK" status but the result is empty
I have a UWP app, and it is already in the Microsoft Store. I'm using Microsoft Partner Center as the service of the app. In the Dashboard, I see all the details about the app from the acquisition, insights, usage and etc. I'm investigating right now to…
Developer technologies | Universal Windows Platform (UWP)
Issues with NVDA Virtual Machine During Credential Test
Encountered a problem while attempting to take a credential test that requires the NVDA virtual machine. After starting the test, an instructions window appeared alongside the virtual machine window, which remained black and failed to load any content.…
Developer technologies | ASP.NET | Other
.NET 9 Aspire project: SQL Server login failed and database becomes unhealthy on restart
Hi, I have a project running on .NET 9 using .NET Aspire. When I start the project for the first time, everything works fine. But if I stop and start it again, I see the following error in the Aspire logs related to the database: Login failed for user…
Developer technologies | .NET | Other
Microsoft Emulator - how to use it
I cannot instal Sage software on my laptop due to the fact that the laptop has ARM based CPU. My question is if the Microsoft Emulator could help to resolve the issue. If I download it on my laptop will I be able to download Sage software which requires…
Developer technologies | Small BASIC
Issues with the Android emulator
Hi everyone, I'm facing a major issue running my .NET MAUI apps in the Android emulator. The emulator starts the app without any errors, but after launching in the taskbar, it doesn't appear on the screen when I click on it. I've already tried…
Developer technologies | .NET | .NET MAUI
Windows for business | Windows Client for IT Pros | User experience | Other
Developer technologies | Visual Studio | Other
How do I recover from .net maui error NU1105 ... The property PackageVersion was expected to have a single value across all target frameworks, but instead...
This happened after I upgraded Microsoft.Maui.Controls from 9.0.70 to 9.0.81 using the NuGet Package Manager. Full error message: NU1105 Unable to read project information for '<MyProject>': The property PackageVersion was expected to have a single…
Developer technologies | .NET | .NET MAUI
How to fix problem with Chrome and visual studio..navegater not loading
The navigator isn't displaying using various browsers, including chrome. Microsoft Edge does display it. We thought it might be a security issue so added our url to secure sites. Also deleted extensions and cleared cashe and cookies. Any other…
Developer technologies | Visual Studio | Other
Visual Studio Developer Community website returns 500 error
Trying to view a specific item or just any items by browsing produces a 500 error in some fashion. Clearly this is not useful or the intended behaviour, and the queried feedback items should be shown. The service status says 'Healthy' at…
Developer technologies | Visual Studio | Other

Usage of TLS 1.3 protocol using SCHANNEL in C++ language for TCP/IP
We are trying to build one sample application using only TLS 1.3(No fallback to older TLS versions) protocol with below registries added, [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Client]…
Developer technologies | C++
How do you add a ELF symbol file using symstore.exe ?
According to the dotnet-sos and dotnet-symbols we see that modern symstore fetches support downloading ELF symbols files (ex: libcoreclr.so). The microsoft github repository for theses tools also show that support for elf file was added. This suggests…
Developer technologies | C++
Blazor WebAssembly (.NET 8) - AuthenticationService.init JSInterop Error and Debugger Protocol Issues
I'm working on a Blazor WebAssembly solution targeting .NET 8, with both client and server projects. The client uses MSAL authentication (Microsoft.AspNetCore.Components.WebAssembly.Authentication and Microsoft.Authentication.WebAssembly.Msal). I'm…