Attaching to WSL process from a visual studio extension.
I can attach to a WSL process in visual studio by going Debug -> 'Attach To Process' in the menu, then setting the 'Connection type' to 'Windows subsystem for Linux', selecting the process from the list, and clicking the 'attach' button. How can I do…
Developer technologies | Visual Studio | Extensions
how to present ID3D11Texture2D using swapChain?
just set once RenderTargetView or present then release the rendertargetView and then again set the rendertarget view?OMSetRenderTargets or swapChain->GetBuffer?
Developer technologies | C++
why ViewData is encoded for unicode text in asp.net web?
ViewData["Title"] ="xxxxxxxxxxx"; it is 首页 why?
Developer technologies | ASP.NET | ASP.NET Core
How to handle "RunCommand property is not defined" issue?
Here I have a .NET 6 ASP.NET project. When run IIS Express, it pops "RunCommand property is not defined".
Developer technologies | ASP.NET | ASP.NET API
Publishing a .NET MAUI app fails with error message "You must include a valid app package manifest file named AppxManifest.xml in the source."
I'm trying to publish a .NET MAUI app. The source code contains a "Package.appxmanifest" file. When I try to publish, it fails with the following error messages: You must include a valid app package manifest file named AppxManifest.xml in…
Developer technologies | .NET | .NET MAUI
Azure API gateway
Can we create a streaming protocols in Azure Api gateway
Developer technologies | C#
Azure API Gateway
API management capability assessment Management of billing plans, usage plans and pricing models Ability to manage and monitor API consumption Established portal for self-service catalogue of APIs
Developer technologies | C#
CORS Policy Blocking POST Request in ASP.NET Core Minimal API with IIS Express (GET Works)
I'm developing an ASP.NET Core Minimal API using Visual Studio 2022 and running it with IIS Express. While GET requests work as expected, POST requests are being blocked due to CORS policy. Access to XMLHttpRequest at 'https://localhost:44302/api/xxx'…
Developer technologies | ASP.NET | ASP.NET API
How to create two different style Switch in maui?
I have a requirement to utilize switch control in MAUI but in two different styles. I am able to create one in the green color by modifying the toggle switch code from source styles file and adding it into windows/app.xaml file. Now I want to create one…
Developer technologies | .NET | .NET MAUI
How to To Change Auto Navigation in a Modal?
I have a modal that previews my image products (originally i have a productgridcontainer that automatically circles through these image products for my customers to see the avilable products which i want it to be that way but i want the modal to be…
Developer technologies | ASP.NET | ASP.NET Core


Flyout separators
Hello So, I am trying to clone this design Note the shell will only be visible on windows Note: the red square, is becouse of privacy reasons if you read this…
Developer technologies | .NET | .NET MAUI
Seeing red dot sign on MAUI (explorer on resources) in .NET 9
I am seeing the red small sign on Resources folder in .NET MAUI (in .NET 9). I am working on the folder that is in a GitHub repository have a workflow open. How to resolve this problem.
Developer technologies | .NET | .NET MAUI

Why am I receiving warnings on my code, but it is still working.
namespace MauiApp1 { public partial class MainPage : ContentPage { int count = 0; public MainPage() { InitializeComponent(); } private void OnCounterClicked(object sender, EventArgs e) …
Developer technologies | .NET | .NET MAUI
How to Debug Remote MAUI App Launch
I have a .NET 9 MAUI app being deployed to a remote Xcode iOS iPhone 16 Plus. All components have the latest release software. The deployment is successful, and the application is launched and the splash screen displayed on the phone. However, the first…
Developer technologies | Visual Studio | Debugging

If a method declared with the async modifier returns a cached result or completes synchronously,
i could not understand so could i get an exmaple of cached result and syncronous completion of async method. following is the lines from https://learn.microsoft.com/en-us/dotnet/csharp/asynchronous-programming/async-scenarios "If a method…
Developer technologies | ASP.NET | ASP.NET Core
When using OpenXML do I need to create a new abstract numbering for each numbered list if i want it to restart
Using c# openxml, when i create multiple numbering instance referring to the same abstract num (ordered list), each list continues its numbering upwards throughout the document. If i want numbering to restart do i need to create a new abstract or is…
Developer technologies | C#
How do I control which database to use when a Blazor Server app starts?
I'm working on a rewrite of an old WebForms application. I want to be able to control, through a GitHub Action running in a self-hosted runner, which database (test or production) the application should run against. I thought I could do this with the…
Developer technologies | ASP.NET | ASP.NET Core
SAML Access Denied from Azure AD - Localhost Sustainsys Setup
I am trying to set up an SAML based authentication using ASP.Net framework 4.8. But after login i am returning back to my localhost site and getting error like https://localhost:44353/Saml2/Acs?error=access_denied . I have assigned users and all the…
Developer technologies | ASP.NET | ASP.NET API
ms-appinstaller protocol has been disabled.
Hi, I have a WPF application and a Windows Application Packaging Project. I use Publish -> Create App package -> Sideloading -> enable automatic updates package is created and we put the output entire folder on our website. when Win10 users…
Developer technologies | Universal Windows Platform (UWP)
Dynamic NavMenu
I am trying to implement the default NavMenu.razor with a number of NavLinks where one of the items is not visible by default. It should only become visible after an authenticated user belonging to a specific role condition is true. My code snippet is…