Copilot Code Review in Visual Studio - cannot see generated comments
I use GitHub Copilot Code Review in Visual Studio, it generates some comments but they cannot be viewed. In Visual Studio, in the Git Changes panel, I click on the chat icon above my staged changes. It works for a minute and then displays a message that…
Developer technologies | Visual Studio | Other
MAUI: Issue with displaying Flyout menu page
My app’s home page is a FlyoutPage. The Flyout part is my menu. The Detail part is a DashboardTabPage, which has three child tabs. The problem I’m facing is this: When I open the menu for the first time, it works fine. But after I close it, if I try…
Developer technologies | .NET | .NET MAUI
Mismatching versions of System.Text.Json
In our company, we develop 2 .NET solutions. Solution 1 contains - amongst others - a couple of .NET Framework 4.7.2 class libraries used in other projects. Some of these class libraries reference the NuGet package System.Text.Json 9.0.11 because this is…
Developer technologies | .NET | .NET Runtime
MAUI: Issue with displaying Flyout menu page
My home page is a FlyoutPage with Flyout as menu and Detail as DashboardTabPage. There are 3 children in DashboardTabPage and the last tab is menu. If I tap on menu once, the menu will open from left and if tap outside it hides. My problem is If I open…
Developer technologies | .NET | .NET MAUI
How can I create an Azure Web App using .NET 10 (LTS)? I only se the .NET 10 (LTS) (Preview)
I am trying to deploy a webapp to production that uses .NET 10 (LTS). I only see .NET 10 (LTS) (Preview) as an option. When will the .NET 10 (LTS) runtime stack be available in Azure?
Developer technologies | .NET | .NET Runtime
Visual Studio Installer not working after upgrading to Windows 11
After upgrading my work laptop from Windows 10 to Windows 11, Visual Studio Installer cannot install new version or updates anymore. When I start an installation, a dialog box opens saying The Windows Installer Service is unavailable, but the Windows…
Developer technologies | Visual Studio | Setup
How to use SelectedIndexChanged or CommandParameter with CommunityToolkit.Mvvm
I am using CommunityToolkit.Mvvm with ObservableObject and ObservableProperty. In the MVVM pattern, how can I trigger the SelectedIndexChanged event for a Picker when an item is selected, or handle changes in an Entry when typing into the textbox? …
Developer technologies | .NET | .NET MAUI
getting CS1061 and CS7036 in Billing.cs. How to fix. Error code below.
Severity Code Description Project File Line Suppression State Error (active) CS1061 'QueryProductDetailsResult' does not contain a definition for 'ProductDetails' and no accessible extension method 'ProductDetails' accepting a first argument of type…
Developer technologies | C#
How do you integrate Microsoft Learn modules into your team’s training or onboarding process?
I’m interested in hearing from professionals who use Microsoft Learn as part of their team’s training or onboarding. How do you incorporate these modules into your workflow—do you assign specific courses for new hires, use them to supplement internal…
Developer technologies | Windows Forms
Does a website built on asp.net have a Content Management System (CMS)?
I have a client that is using an agency that is using asp.net to build their website. I've never heard of this before. My agency provides SEO and I'm trying to find out if the new website will have a Content Management System and logins so my team can do…
Developer technologies | ASP.NET | Other
does visual studio 2026 upgrade visual studio 2022?
does visual studio 2026 upgrade visual studio 2022 or is visual studio 2026 standalone? if standalone, how do i uninstall visual studio 2022? do i use the app system icon or do i need to reset my pc? note to the moderators: this is my first time. i do…
Developer technologies | Visual Studio | Other
Can not login to Github Copilot in VisualStudio running with administrator rights
I have a Github Copilot, and I would like to login into Github account to be able to use it with my Visual Studio 2022. I can do it when VisualStudio started with usual user. But when it started with administrator rights (I need it to be run with admin…
Developer technologies | Visual Studio | Extensions
Unsafe-inline and unsafe-eval
Hi All, We have an application developed in ASP.NET (.NET Framework 4.6.2). Understand from the below article that we need unsafe-inline and unsafe-eval settings in order to run the…
Developer technologies | ASP.NET | Other
How to read the table from the PDF.
Hello, I'm trying to read the table from the pdf, Actually i had tried with the aspose pdf library but it not working as expected. it fails reading the multiline header. Could you please suggest me a library that can read the multiline header. here…
Developer technologies | C#
Unable to install .NET Framework 4.8 in silent mode
Hi, I am unable to install .NET Framework 4.8 offline installer via silent mode. I used Admin CMD with "ndp48-x86-x64-allos-enu.exe /q /norestart" command to install. It won't install and stuck in End User Accept License area. I knew this…
Developer technologies | .NET | .NET Runtime
Best practice to handle dates when visitors are in different timezones?
I have a blog application (.NET/C#/API) where users can create posts for specific dates. The blog is public (no login required to read posts). Problem: A user in Sweden (UTC+1) creates a post on 2025-10-31 at 00:30 local time. They want the post to be…
Developer technologies | ASP.NET | ASP.NET API
Test UX Auto Tagging Q&A
In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.
Developer technologies | .NET | .NET Internet of things
How to write data to a gip device (Xbox Series controller)?
I am working on a program that would send a power off packet to my xbox series controller in order to turn it off. In 2024 Microsoft released GIP docs and as far as I understand Xbox One and Series work with GIP. I run a win10 pc and use an Xbox Series…
Developer technologies | C#
How to Implement Branching Storylines and Decision-Based Events in Unity/C# Like Summertime Saga?
Hi everyone, I’m exploring game development and storytelling techniques. While playing Summertime Saga, I noticed its interactive storylines and character progression. I’m curious about how similar branching story logic or decision-based events can be…
Developer technologies | C++
Open a new file in memory from extension using custom editor
I am trying to open a new file (with .sql extension) in memory not in disc using a custom editor factory that I have implemented. IVsUIShellOpenDocument shellOpenDocument =…