Questions tagged [visual-studio-2019]

Visual Studio 2019 is a version of Microsoft's Visual Studio. Do not use this tag unless you have a specific question about this specific version.

Visual Studio 2019 is a version of Microsoft's Visual Studio. Do not use this tag unless you have a specific question about Visual Studio 2019. Visual Studio 2019 was released to market (RTM) on April 2nd 2019.

Some Major Changes and Improvements

  • Improved IntelliSense performance for C++ files
  • Local development with many common emulators
  • Simplified test access in Solution Explorer
  • Git management and repo creation in the IDE

New Features

  • One-click code clean-up (Resolve warnings and suggestions with the click of a button.)
  • Visual Studio IntelliCode (Get AI-assisted recommendations that learn from the community.)
  • Visual Studio Live Share (Share code using real-time collaborative development.)

Release notes can be found at the official Microsoft page.

7653 questions
22
votes
6 answers

Resharper - Inconclusive: test not run on debugging

I have an issue very similar to this one. Debugging any test in Resharper returns "Inconclusive: test not run". This occurs for every test, every solution, every project at my machine. Reinstalling VS2019 and Resharper didn't help. Running tests…
Maciej Wanat
  • 1,527
  • 1
  • 11
  • 23
22
votes
4 answers

How do I install a previous version of Visual Studio 2019 Community?

I found a bug in the latest version of VS Community (16.7.0) which is preventing my solution from building, so I need to roll back to 16.6.5. However the only download link I can find has downloads for only Enterprise and Professional, not…
ekolis
  • 6,270
  • 12
  • 50
  • 101
22
votes
1 answer

VS2019 .editorconfig is not respected

We're struggling to set a team-standard indent style for javascript/typescript and from all indications, the settings in .editorconfig are not overriding user preferences as indicated at the bottom of VS when we open the solution For testing…
Mr. T
  • 3,892
  • 3
  • 29
  • 48
22
votes
11 answers

Visual Studio 2019: "This site can’t provide a secure connection" on localhost

I've installed Visual Studio 2019 and uninstalled Visual Studio 2017. Now if I start an ASP.NET (Core) site with https, it always say on Chrome: This site can’t provide a secure connection or on Edge Can’t connect securely to this…
Julian
  • 33,915
  • 22
  • 119
  • 174
22
votes
3 answers

How to turn off double quotes auto-completion in Visual Studio 2019 for C++ editor?

After updating to version 16.1 of Visual Studio 2019, the code editor for C++ completes double quotation characters. When I type one double quote " it automatically completes it as "". How to turn this feature off? I tried to look into settings, but…
Maris B.
  • 2,333
  • 3
  • 21
  • 35
22
votes
4 answers

How to properly stop running dotnet core web application?

In Visual Studio 2017 and 2019 on Windows, I run dotnet watch run in the Package Manager Console. It launched kestrel for a dotnet core app, automatically disabled text edit in the console, and displayed a red button to stop command execution, but…
21
votes
1 answer

How can I use .NET Core in C# interactive?

How can I make the C# interactive console inside Visual Studio use .NET Core instead of .NET Framework? By default when it starts it shows that it is using .NET Framework in parenthesis in the title bar.
Jordi
  • 2,055
  • 1
  • 16
  • 34
21
votes
3 answers

How to use github nuget packages on Visual Studio 2019

I try to learn Github action and packages. So, I create a sample nuget package and successfully created. However I could not use it. I follow this step; Options > Nuget Package Manager > Package Sources Click add button write organization name and…
21
votes
1 answer

ASP.NET Core Template 3.1.5 - serviceDependencies.json

I've just updated Visual Studio 2019 and noted that in new Template (3.1.5) of ASP.NET Core (MVC), there's serviceDependencies.json Currently in ASP.NET Core docs there no point about this, and I wasn't able to find any in google as well. I…
Givi
  • 1,674
  • 2
  • 20
  • 35
21
votes
3 answers

Using std::map should be deterministic or not?

I'm facing a strange behaviour using Intel C++ compiler 2019 update 5. When I fill a std::map it seems to lead to a non deterministic (?) result. The stl is from VS2019 16.1.6 in which ICC is embedded. I am on Windows 10.0.17134.286. My…
dom_beau
  • 2,437
  • 3
  • 30
  • 59
21
votes
2 answers

Visual studio 2019 unterminating background processes - high cpu use, lag

In the most recent version of VS 2019 now 16.3.8 but have had the same issue with other release (16.3.7, 16.3.6, 16.3.5) I am finding that after a number of hours of use I have a number of background processes (visible in the small icon at the…
Tim Rutter
  • 4,549
  • 3
  • 23
  • 47
20
votes
1 answer

How to download Visual studio 2019 offline installer

I am going to install visual studio 2019 community edition (latest version) in my PC.I have found link in google which has online installer (1376 KB) size.I would like to download offline installer of visual studio 2019 community Edition.Please…
Accessories
  • 363
  • 1
  • 3
  • 6
20
votes
1 answer

Auto return type of template and ambiguity

I have an overloaded template function: template auto overMax(T1 a, T2 b) { std::cout << __FUNCSIG__ << std::endl; return b < a ? a : b; } template RT overMax(T1 a, T2 b) { …
20
votes
2 answers

Why is IntelliSense showing a star to the left of functions within if statements

Using Microsoft Visual Studio Professional 2019 Version 16.4.1 IntelliSense is showing a star icon to the left of IsNullOrEmpty. Not sure what it means. Edit 1: It's not just IsNullOrEmpty Edit 2 It only shows the star within if() statement
joym8
  • 4,014
  • 3
  • 50
  • 93
20
votes
1 answer

How to restore normal "New Project" windows on Visual Studio 2019

After upgrading to Visual Studio 2019 I noticed the very unpleasant change of the "new project" window, as announced here. As with much of the community I totally hate the new useless window and would pretty much prefer to use the normal old one. To…
Alejandro
  • 7,290
  • 4
  • 34
  • 59