116,182 questions
Advice
0
votes
0
replies
9
views
Visual Studio snippet with variable number of arguments
I recently learned about making snippets in Visual Studio and can make simple replacement ones and understand what's going on.
However I saw this Make a vscode snippet that can use a variable number ...
-1
votes
1
answer
55
views
Is there a way to see all objects while debugging in Visual Studio?
Is there any way, using the Visual Studio debugger, to see all the objects belonging to the application currently running? e.g. for tracking down rogue instances of a class that might be still hanging ...
-1
votes
0
answers
50
views
How do you fix Intellisense errors in a CMake project when Visual Studio Community is connected to WSL:Ubuntu?
I am running a CMake project in Visual Studio Community 2026 and it is connected to WSL: Ubuntu. It is running the Linux Debug configuration preset. WSL is running the gcc 15.1.0 compiler.
My C++ code ...
0
votes
0
answers
17
views
How to Step Into NuGet package functions during debugging in Visual Studio?
I’m trying to debug inside a function that comes from a NuGet package (for example AutoMapper or FluentValidation).
I want to Step Into the built-in function during debugging in Visual Studio to ...
0
votes
1
answer
47
views
How do I make Visual Studio 2026 browse for symbols?
I'm debugging memory dumps. Visual Studio 2022 would have a "browse" button when it could not immediately find the symbols and that button would lead to an Open File dialog that would let me ...
0
votes
1
answer
41
views
Visual Studio 2026 .net Maui, annoying menu popup in Android Emulator Pixel v.7
I recently installed VS 2026 and noticed that a menu pops up when I run the Android Emulator Pixel 7. I don't get this when I use Emulator Pixel-5. This is very annoying because it pops up in the ...
Advice
0
votes
2
replies
32
views
How to manage build order for C++ 20 modules in MSVC (vcxproj)?
I am creating a new project heavily laveraging C++ 20 modules in Visual Studio 2022.
For me it is working perfectly as I can successfully build my sources, the only drawback is I still do not know how ...
-1
votes
0
answers
48
views
Swagger not showing v2 data in UI with no way of changing [closed]
I'm implementing some versioning in my Minimal API for .NET 8 and I've hit a bit of a snag.
My documentation won't load the v2 API doc into Swagger when I run the application.
I have this Swagger ...
1
vote
1
answer
108
views
Prevent Visual Studio from autocorrecting (in this case quotes don't overwrite)
If I select something and then type quotes, it doesn't replace as expected, it just puts quotes around the selected text.
select
type one quote (")
instead of the expected
or
How do I ...
-1
votes
0
answers
103
views
What caused an unexpected build error in C# with Visual Studio [closed]
I have a C# program, and I am using Microsoft Visual Studio. I have been able to build and run the program without any issue for a long time. Now, unexpectedly I get this error:
I:\source\megaSearch\...
-5
votes
0
answers
134
views
New version of Visual Studio 2026 gives internal compiler error when compiling reflect.h [closed]
I installed the new Visual Studio 2026, and last I checked reflect.h from reflect-cpp was compiling, but no longer. It gives a internal compiler error C1001.
The version I'm using is 18.0.2 (from the ...
-2
votes
0
answers
40
views
Cypress Application Crashes when Clicking E2E [closed]
Suddenly My Cypress App crashes when I click on E2E
This is the error I am getting
Circular symlink detected: "C:\Users\PoojaPatel\AppData\Local\Application Data" points to "C:\Users\...
-5
votes
0
answers
122
views
The error line is not present in build output, how can I get it there?
I'm building a Visual Studio solution, consisting out of 54 projects. There are several error lines in the "Error List" window; the first is:
The system cannot find the file '!(bindpath.bin)...
0
votes
1
answer
49
views
Visual Studio munges characters in build event command lines
In a command line of a pre-build event in a VS 2026 C++ project, I have the line
git log -1 --date=format:%G --output=year.tmp --format="%cd"
which is supposed to write the numerical year of ...
0
votes
1
answer
75
views
How to link a RPi library using Visual Studio CMake?
I am trying to learn RPi dev
I cannot use an IDE on the RPi, because ultimately the RPi needs to run without a GUI (Incompatible with hardware I intend to use), so I want to use Visual Studio (or ...