Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
82 views

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 ...
ispiro's user avatar
  • 28k
-1 votes
1 answer
50 views

My habits have been ruined lately since a windows update (it seems) corrupted a file in .Net Framework, named clr.dll, preventing Visual Studio 2019 from launching (and not only that software). It ...
grimoiredark's user avatar
0 votes
1 answer
43 views

I have written a VSIX extension to bring my "version" of ChatGPT into Visual Studio 2022. I haven't even gotten to the wireup with Chat GPT phase yet. All I've done thus far is write it to ...
Wayne E. Pfeffer's user avatar
-1 votes
1 answer
57 views

My project is able to build and run, but when I want to publish the project, I get this : Warning As Error: Detected package downgrade: System.Net.NameResolution from 4.3.0 to 4.0.0. Reference the ...
hmmmmm's user avatar
  • 1
Advice
0 votes
4 replies
45 views

I'm working on updating an older solution at the moment, part of this is changing to referencing newer versions of some NuGet packages, where there are vulnerabilities and such. This part is causing ...
Paul Brindley's user avatar
-4 votes
0 answers
109 views

I'm building a Visual Studio solution, consisting out of 54 projects. There are several error lines, the first is: The system cannot find the file '!(bindpath.bin)\somefile.dll'. In the output ...
Dominique's user avatar
  • 17.6k
0 votes
0 answers
37 views

I'm trying to do some driver development work with Visual Studio 2022. I'm looking at this article. I have downloaded everything that is listed with the VS2022 installer and had no installation issues,...
Himilou's user avatar
  • 177
0 votes
0 answers
64 views

I'm running into a specific issue with my web.config when trying to serve XML files. As soon as I add this rule: <add name="XmlFile" path="*.xml" verb="GET,HEAD" ...
Mohammad Taha Moghaddasi's user avatar
Best practices
1 vote
7 replies
97 views

I have two numerical maths libraries given by DLLs (I am under Windows) and header files. (I can't modifiy the headers and anyway there are dozens of them. I also don't have have access to a code that ...
Olórin's user avatar
  • 3,880
0 votes
0 answers
27 views

Opening Visual Studio today, I was asked for credentials for our TFS server and unthinkingly entered the admin credentials. Now, whenever I create a workspace in Source Control Explorer (SCE) it is ...
TVJohn's user avatar
  • 1
0 votes
0 answers
34 views

I was able to change the header font size (like this) but not the content itself. This is how changed the tooltip header font size: Tools → Options → Environment → Fonts and Colors => Editor ...
Ros's user avatar
  • 39
-1 votes
1 answer
82 views

I am migrating a C++ project from VS2012 to VS2022. Here is the build error I have, pls let me know how to resolve this, Thanks. ##[error]FlexLib.lib(lm_redir_std.obj)(0,0): Error LNK2001: unresolved ...
Ming's user avatar
  • 595
0 votes
0 answers
11 views

In Visual Studio 2022, C# project, I need to keep an eye on an expression that's valid only in a specific method, but I need to keep an eye on it even when I'm stepping through called methods, and ...
Kjell Rilbe's user avatar
  • 1,623
0 votes
0 answers
39 views

This only happened a few days ago and I usually keep on top of the updates in vs 2022. When making a change the the code behind for a razor partial view - hitting save would auto-build the changes and ...
tqrecords's user avatar
  • 541
-2 votes
1 answer
45 views

I have a file that needs to be in the output directory for a project to run properly. If this file (a 3rd party dll) is in the main project directory with "Build Action" set to "None&...
GafferMan2112's user avatar
4 votes
1 answer
175 views

I am encountering suspicious behavior with std::atomic_ref::is_lock_free() in Microsoft Visual Studio's C++ compiler (MSVC version 14.38.33130). The method returns true for a very large structure (...
undefined's user avatar
  • 228
-1 votes
0 answers
96 views

Problem Description I'm unable to use the Slowly Changing Dimension Wizard in Visual Studio 2022 with SSIS. I get different errors on subsequent attempts: First attempt: Method does not exist. (...
user31839324's user avatar
0 votes
0 answers
75 views

I am debugging a solution in VS 2022 with two projects. The startup project is an ASP.Net Core application that references a dll project in the same solution, with both projects targeting .NET 8. ...
Sunil's user avatar
  • 21.6k
0 votes
0 answers
87 views

I'm debugging a C++ program, and in order to do that, I'd like to have a look at objects, defined in imported libraries. However, the "Modules" window mentions some symbols not to be loaded ...
Dominique's user avatar
  • 17.6k
3 votes
1 answer
133 views

I'm working with COM objects, which means I need to debug SAFEARRAY objects. It looks as follows in the watch-window: receivedData 0x007cc980 safearray of UI1, [rank]=1 _variant_t safearray ...
Dominique's user avatar
  • 17.6k
2 votes
0 answers
45 views

I am trying to create UML-like diagram tool in Visual Studio 2022 which supports composition and aggregation. I know that Visual Studio 2022 has a Class Designer (.cd file extension) but it is missing ...
alex's user avatar
  • 21
-3 votes
0 answers
52 views

I would like to sign my locally build application. Application code is C++ / MFC, build for 32 Bit. It is a legacy application which should be replaced by new one in one - three years, so no much ...
DigitalMachine's user avatar
1 vote
1 answer
74 views

I've been working with this C# project in VS2022 for months with no problems. All of a sudden when I try to debug and view content of variables I get: Unable to evaluate within module 'MyModule' (...
user3161924's user avatar
  • 2,547
-3 votes
1 answer
73 views

I tried to install theme in Vs 2022, but I encountered this problem. I search a lot of solution in Bing index, but most of them are not useful for me. How to solve this problem? After I download the ...
tayir's user avatar
  • 61
3 votes
1 answer
145 views

I just installed Visual Studio 2022 and I'm trying to get an application working with a dialog box as a main window in order to make the GUI easier to produce. But the thing is that I've found nothing ...
ciddu42's user avatar
  • 63
0 votes
0 answers
80 views

I'm compiling this with VS 2022 C++ compiler, as "ISO C++20 Standard (/std:c++20)" for a Debug configuration. How come this throws the following std::regex_error: regex_error(error_backref):...
c00000fd's user avatar
  • 22.8k
0 votes
0 answers
46 views

I am starting building a library (.dll) for EPlan in C#. And i will use System.Windows.Forms. If i create a Windows application, there are no issues, but it can't find the System.Windows.Forms when i ...
tannic's user avatar
  • 39
2 votes
1 answer
79 views

When I open my Unity scripts in Visual Studio 2022, I am greeted with this error: I tried deleting all .csproj files before opening in VS and also tried reinstalling VS and Unity. The file being ...
JSB's user avatar
  • 49
0 votes
0 answers
64 views

As explained in "NuGet Pack ..." error: The user name or password is incorrect. Where is "NuGet Pack" getting its information from?, I'm attempting to build a solution consisting ...
Dominique's user avatar
  • 17.6k
0 votes
1 answer
111 views

While building my C++ application, the postbuild event contains the following command: NuGet pack "$(ProjectPath)" -OutputDirectory "$(TargetDir)NuGet" -...
Dominique's user avatar
  • 17.6k
6 votes
1 answer
592 views

Updated to Visual Studio 17.14.17, and my previously working .NET 8 MAUI project is now broken — random build errors, IntelliSense failure, and runtime issues. CLI works, VS doesn’t. How can an IDE ...
Teoman shipahi's user avatar
0 votes
0 answers
20 views

I have a 3rd party SDK which was installed via VSIX / NuGet package. Let's call it FoodFight/CoolKids for Windows. I'm working on a VSIX that does a wizard implementation of this SDK as part of its ...
CatAtGat's user avatar
0 votes
0 answers
38 views

I'm trying to figure out which setting this in in VS2022, but can't find it. Whenever the light bulb "is being helpful" and highlights a section of code, it becomes nearly unreadable when ...
James Kazmierczak's user avatar
0 votes
0 answers
34 views

I am currently using VS Code (version 1.105.1), and I have noticed an annoying detail. I switched my IDE from Visual Studio 2022 to VS Code while working on a C# project. However, I noticed a ...
serhat yarış's user avatar
1 vote
0 answers
160 views

Recently I have to update from windows 10 to windows 11. I'm using address sanitizer with Visual Studio compiler. Before update now it was working fine but after switching from win 10 to win 11. I get ...
praks411's user avatar
  • 1,992
1 vote
1 answer
129 views

I am using Visual Studio 2022 and CMake to build my project. In a third_party directory under the project root, I extracted the OpenCV build from the OpenCV 4.12.0 windows downloader. In a CMakeLists....
Alan Chen's user avatar
2 votes
1 answer
127 views

I'm having an issue with the Powershell terminal in Visual Studio 2022 (currently on 17.14.16, but it's been here for months at this point, ever since I started using that terminal). Whenever I type ...
Kolichikov's user avatar
  • 3,112
1 vote
0 answers
102 views

I'm working with several msvc projects that I want to also compile with Visual Studio clang-cl. The msvc projects compile fine with no errors (intellisense errors or otherwise). Changing the platform ...
dts's user avatar
  • 223
0 votes
0 answers
40 views

I'm using SonarQube with Visual Studio 2022 (connected mode) and looking for the best way to filter SonarQube issues in the error list. Goal: easily isolate SonarQube issues from compiler warnings, ...
manjuv's user avatar
  • 347
1 vote
0 answers
32 views

I wrote rules in .editorconfig: [*.cs] csharp_style_namespace_declarations = file_scoped:error dotnet_diagnostic.IDE0161.severity = error And added this to Directory.Build.props: <Project> &...
Alex Veto's user avatar
1 vote
0 answers
65 views

I'm trying to analyse our build and see if anything can be sped up and using Build Insights including "Collect template instantiation". This works for small portions of the solution, but it ...
rubenvb's user avatar
  • 77.2k
0 votes
1 answer
87 views

Under Project Properties in Package > General the field Package Version has per default VersionPrefix defined. Where is this VersionPrefix defined? I have also the fields 'Assembly version', 'File ...
snowrunner's user avatar
1 vote
1 answer
259 views

I can get each of the component's class (partial class) files to nest in the IDE's solution view under its .razor file, but it insists on going a step further and creating a hierarchical tree in this ...
hamstar's user avatar
  • 345
-5 votes
1 answer
208 views

I have an existing c++ project that compiles fine with msvc, and I'm trying to get it to compile in Visual Studio 2022 with LLVM (clang-cl). At the moment I'm using C++ Language Standard Preview ISO C+...
dts's user avatar
  • 223
1 vote
1 answer
94 views

Opened a blazor project for the first time in a while and suddenly no code or components are recognized (even on newly created projects): When I hover over components no auto-completion suggestions, ...
zhrgci's user avatar
  • 716
0 votes
1 answer
40 views

Currently all of our SSDT packages have been created with SQL Server Data Tools 2015 We are looking to upgrade to SSDT 2022. I installed Visual Studio 2022 with the following selected during setup: ...
JetRocket11's user avatar
0 votes
0 answers
77 views

Visual studio 2022 sometimes shows code suggestions like this. How do I trigger this suggestion (for example when I dismiss it)? I search in settings and shortcut but I couldn't find anything. I don't ...
rholek's user avatar
  • 340
0 votes
1 answer
74 views

i am trying to run a .net 8.0 application on Linux / Raspbian with System.IO.Ports, i have done this previously with the same setup with no issues. This time i am getting this exception when running ...
Alex Bäumler's user avatar
0 votes
0 answers
164 views

I have been trying to build a C++ program using CMake, but the build failed, allegedly because "the C compiler is not able to compile a simple test program". The error: RC Pass 1: command &...
Xarizzar Phantasma's user avatar
2 votes
1 answer
115 views

I wanted to play around with the .NET cryptography classes in the C# interactive console in Visual Studio 2022 (v17.14.16). I tried creating the default instance of the System.Security.Cryptography....
Greg Burghardt's user avatar

1
2 3 4 5
96