Stuck on trying to join Microsoft Developer Program
When the system asks for the phone number and I click the send code button, I never receive the code to my phone. I have tried a couple of phone numbers without success. Please help as I need to develop a prototype for my client and I wasting hours in…
Developer technologies | Universal Windows Platform (UWP)
The correct CChildFrame is not activated after the predecessor is closed.
MFC MDI application. Opened several CChildFrame s. (To illustrate better my issue I identified every CChildFrame with an unique id.) Opened, lets say, 5 CChildFrame. 1, 2, 3, 4, 5. List the order of the CChildFrame by menu: About: List…
Developer technologies | C++
How is a Blazor Server app deployed in Linux?
I have a Blazor Server app, developed in VS Code on a Mac. At this point in development, it runs correctly on localhost, as well as on a Windows Server instance in AWS Lightsail, using IIS. For final deployment, I would like to install the app on a Linux…
Developer technologies | ASP.NET | ASP.NET Core
How to load Langauge Server (LSP) when loading the extension package
I have a requirement of loading the Language Server (LSP) explcitly without opening any file (of the Language Server's content type). But currently the Langauge Server gets loaded only when a file of this content type is opened. Is there a way to load…
Developer technologies | Visual Studio | Extensions
.NET MAUI CollectionView GroupHeaderTemplate Crashing on iOS with Incomplete List Rendering
I'm developing a .NET MAUI application that displays a list of Primary Buddies and Secondary Buddies grouped inside a CollectionView. Everything works perfectly on Android — all buddies are listed, grouped, and the UI updates and refreshes as expected. …
Developer technologies | .NET | .NET MAUI
Good installer for visual studio 2019 c# projects
Still using Visual Studio 2019 professional. I have several independent solutions (single project solutions). I need to create an installer that installs 6 different projects on a computer. Right now, I have a single deployment project in each…
Developer technologies | C#
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
I have having an Trust issue in publishing the xbap in Test Environment. How to resolve the issue.
I have having an Trust issue in publishing the xbap in Test Environment. How to resolve the issue. Which certificate is require for trusting the application to host the xbap application.
Developer technologies | Windows Presentation Foundation
How do I add an existing directory tree to a project in Visual Studio
I was trying to use this solution, but realize that Visual Studio 2022 does not have the option "Include in Project.". What feature replaces this, for getting a directory tree into my project? Thanks.
Developer technologies | C++
How to regulate Microsoft store on Linux and Apple developer Hardware server
How to generate new App center for App host Remote Microsoft and apple distribution app portal. All this supported by Google bridge developer distrbutions cloud management and all premium Google Aps for new interface Linux productions
Developer technologies | Universal Windows Platform (UWP)
How to open a new file in memory in visual studio using my editory factory
I want to open a new .sql file in memory not in the disc and also when the file is open i want to use my editory factory to it I tried this method to create a new .sql in memory file but using this way I am not able to use my editory factory to it. var…
Developer technologies | Visual Studio | Extensions
How to fix error "operation could not be completed. Access is denied" that I am getting while sign the assembly.
When I am trying to sign the Assembly, I am getting below error. I am using Visual Studio Enterprise 2022 and framework 4.6.2. I tried using latest framework as well.
Developer technologies | Visual Studio | Setup
Best CPU for Gaming & Work Expert Suggestion
I have been researching the best CPU for the past few days because I want to upgrade my PC to handle both gaming and work tasks smoothly. I checked reviews on the New York Times, Consumer Reports, and Popular Mechanics, and they are marking these two…
Developer technologies | C#
why my request for Azure free credits is rejected?
I'm a personal user, I have created a new azure account and visual studio subscription today, when I try to activate my free azure credits, it says "you are not eligible for free azure credits", why is that? I have not used this account for…
Developer technologies | Visual Studio | Setup
Asp Net, MVC design patterns
Good afternoon, I'm currently developing in ASP.NET using the MVC 5 framework, and I have SPA applications. I want to migrate or unify my SPA applications into a single project. The project will have charts, reports, forms, and approximately 20 pages.…
Developer technologies | ASP.NET | ASP.NET Core
Blazor Warm Start
I have a landing page and when the user clicks a button it does Blazor.start(); Q. Is there a way that I can do something like Blazor.preload(); where it will preload the *.wasm assemblies into the Wasm runtime while the user is reading the landing page…
Developer technologies | ASP.NET | ASP.NET Core
Issue with Pip after migrating from .Net 6 to .Net 7 docker image
I am migrating an application from .NET 6 to .NET 8. I want to update my docker file with latest SDK version. After migrating it to SDK 8.0, I am getting error with pip command This was in .NET 6 Dockerfile FROM mcr.microsoft.com/dotnet/sdk:6.0 RUN…
Developer technologies | ASP.NET | ASP.NET Core
Developer technologies | .NET | Other
Validate file content type for txt, log, JSON file in C#
public static bool IsFileValid(IFormFile file) { using (var reader = new BinaryReader(file.OpenReadStream())) { var signatures = _fileSignatures.Values.SelectMany(x => x).ToList(); // flatten all signatures to single list var headerBytes =…
Developer technologies | ASP.NET | ASP.NET Core
Microsoft 365 and Office | Development | Office JavaScript API

Developer technologies | .NET | Other
Developer technologies | ASP.NET | Other
Developer technologies | C#
Unable to connect Visual Studio debugger to Azure Web App
I have a web app running in Azure. This is a mature app. I have always been able to periodically connect my Visual Studio 2022 debugger to this web app to debug code. At some point in the last month, this has stopped working. I should say that this…
Developer technologies | Visual Studio | Debugging
Is it still the case that a Blazor WebAssembly cannot reference a Blazor Server-Side project?
I'm working on rewriting an old ASP.NET WebForms app. I've created an ASP.NET Core Blazor app using .NET 9, with both a server-side project and a WebAssembly (Client) project. The server-side project has the Home page and allows the user to change the…