116,118 questions
0
votes
0
answers
44
views
Visual Studio 2022 (MAUI/Xamarin) can’t import Apple .p12 (password accepted, no cert added) and doesn’t show Xcode/manual certificates
I’m building iOS apps with Visual Studio 2022 (MAUI/Xamarin) on Windows paired to a Mac.
In Tools → Apple Accounts → View Details → Certificates, Visual Studio only shows:
iOS Distribution (existing)
...
1
vote
0
answers
78
views
COM issues while remote debugging
I have configured my computer for remote debugging: I have the Visual Studio solution and projects on my development computer and the testing is about to happen on a remote testmachine.
On the ...
-1
votes
0
answers
94
views
Overloaded function is not found [duplicate]
I am following the example from the book professional cpp 5ed, ch9.
I have a .ixx file with a member swap function taking 1 argument, and a non-member function taking 2.
export module Spreadsheet;
...
Advice
0
votes
2
replies
35
views
LinqToSql GUI Tool editor not available in Visual Studio 2026
There seems to be no way to install this in MSVS 2026?
So I have to use MSVS2022 to edit my data context...
0
votes
1
answer
42
views
Hide partial class members in Visual Studio drop down members list
Is there a way to have only the members belonging to the current file listed in Visual Studio drop-down members list (above the code, below the documents well)?
It gets particularly polluted when ...
1
vote
0
answers
127
views
JavaScript breakpoints are never hit while debugging Blazor web app (.Net 10)
UPDATE: If I put debugger; statements within the JS code, debugging execution breaks on that statement, within a new tab VS generates for dynamic execution. From that point, I can add new breakpoints ...
Tooling
0
votes
4
replies
76
views
How to preview SQLite database in Visual Studio 2022/2026
I am looking for a proper extension in Visual Studio 2026 to be able to visually preview my SQLite database.
Currently, I am using SQLite and SQL Server Compact Toolbox. It is functional, but I'd like ...
3
votes
0
answers
44
views
Using a common library which contains MEF exports in multiple Visual Studio extensions
I am building a Visual Studio extension which uses a 3rd-party library (MonoDevelop.Xml to be specific). The library contains some MEF components intended to be used together with my custom components....
1
vote
1
answer
73
views
Cannot start debug session in Visual Studio due to SSL cert missing or being out of date
I have an ASP.NET web application that has been working fine when pressing F5 to start a debug session in Visual Studio. Last Friday (January 23) I started getting this exception:
System....
1
vote
0
answers
137
views
How to register an C# class for COM?
I'd like to create an C# WPF library exposing some class to COM to use the class functionality from separate C++ project.
What I'd like to achieve is to have a WPF class which implements simple form ...
1
vote
0
answers
64
views
VS 2022 Repeatedly props modal window 'Connect to Feed'
When I try to switch branches or try to rebuild in VS 2022 then it continusly props modal window about 'Connect to Feed'.
Then every time I need to press "Finish" button to continue build or ...
0
votes
0
answers
61
views
Unresolved external symbol google::protobuf::internal::fixed_address_empty_string when linking a static libprotobuf.lib from pre‑built binaries
I downloaded the gRPC binaries from thommyho/Cpp‑gRPC‑Windows‑PreBuilts (gRPC pre‑built Windows binaries and libs | x64 and x86 | MSVC143, MSVC142 (legacy 141 and 140) | Debug, Release, RelWithDebInfo,...
1
vote
1
answer
118
views
Cross-compiling for ARM64 using Visual Studio and WSL2 is generating x64 binary
I was using VS2026, but have switched back to VS2022 for now. The project is a MSBuild project, not a CMake project. I have the C++ ARM64/ARM64EC build tools installed (latest) and I have all the ...
5
votes
3
answers
252
views
The auto-completion for await changes the method's signature - how do I prevent that?
Running Visual Studio 2022 (17.14.20)
Reproduce by:
Create a void method.
In it type awa then press Tab.
See the signature change from void to async Task.
How can that be prevented? I want it to:
...
0
votes
0
answers
53
views
How to prevent SSDT/DACPAC publish with DropObjectsNotInSource=True from dropping Azure Functions az_func runtime tables
I’m deploying a SQL Server/Azure SQL database using an SSDT .sqlproj (DACPAC) and SqlPackage.exe (DacFx publish). For local dev we require DropObjectsNotInSource=True so schema drift/renames are ...