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
15
votes
2 answers

Visual studio 2019 change CTRL+ CLICK from "Go To Definition" to "Go To Implementation"

I would like to CTRL+ CLICK from "Go To Definition" to "Go To Implementation". And make CTRL + Right Click "Go To Definition" Possible? Thanks
SexyMF
  • 10,657
  • 33
  • 102
  • 206
15
votes
1 answer

Unable to upgrade a Reporting Services project to Visual Studio 2019

We recently upgraded our Visual Studio 2015 to VS 2019. When I open one of our VS 2015 solution files in Visual Studio 2019 I'm not prompted to migrate and I receive the following error: Error Unsupported This version of Visual Studio is unable to…
Joe
  • 151
  • 1
  • 1
  • 5
15
votes
1 answer

Visual Studio 2019 Compare View ScrollBar

Does anyone know how to get back this scrollbar in the Diff-Tool of Visual Studio 2019? Why did they remove it?
Daniel P.
  • 809
  • 8
  • 15
14
votes
1 answer

Is it possible to change the font in the Developer Powershell Terminal?

I would like to set up Visual Studio 2019 to use Cascadia Code PL on Terminal Window. I was able to set it through "Tools > Environment > Fonts and Colors" menu for Text Editor, but I wasn't able to find where to do it for Terminal. Thanks.
14
votes
2 answers

How to solve the Error MSB3644 in Visual Studio 2019 com. edition?

I have a dev machine with Windows 10 version 1909 (build 18363.1016) Visual Studio Community edition 2019 version 16.7.2 .net plataform sdk 5.0.100-preview.5.20279.10 (and olders) I install net plataform sdk 5.0 to run Fluid UI Desktop apps (using…
Pedro Polonia
  • 2,604
  • 3
  • 23
  • 31
14
votes
2 answers

Visual Studio 2019 restore completed nuget loop

I'm having an issue with VS2019 profesional 16.5.5 and 16.5.4 with my C# multi-project solution. It compiles, tests and executes correcly, but in the background I have the constant restore of nuget packages, completing once every few seconds. The…
Krzysztof Bociurko
  • 4,575
  • 2
  • 26
  • 44
14
votes
3 answers

How to add all missing usings at once with Visual Studio 2019 and C#

When I write C#, I sometimes have 3-4 missing usings which I can add with the tooltip window -> add missing using, or doing ctrl + . On the line where a missing using is present. Doing this 3-4 times is rather annoying. I have noticed a "add all…
S. ten Brinke
  • 2,557
  • 4
  • 25
  • 50
14
votes
3 answers

C# 8 Using Declaration Scope Confusion

With the new C# 8 Using Declaration Syntax, what is containing scope of a second consecutive using statement? TL;DR Previous to C# 8, having a consecutive using statement like: using(var disposable = new MemoryStream()) { using(var…
Justin Blakley
  • 458
  • 4
  • 16
14
votes
8 answers

Visual studio 2019 windows forms designer

I'm having a problem with the windows form application . When I create the windows form application , it displays the source code for the form but not the designer layout
HRC
  • 161
  • 1
  • 1
  • 5
14
votes
4 answers

How to migrate .NET Framework 4.7.2 project to .NET Core 3.0 in Visual Studio 2019

I have a Windows Forms application targeted for .NET Framework 4.7.2. As .NET Core 3.0 supports Windows Forms I'd like to try it. Is there any way to convert VS2019 project from .NET Framework to .NET Core or the only way possible is to create a new…
jacekbe
  • 499
  • 1
  • 5
  • 18
14
votes
2 answers

Changing target framework in visual studio

I'm getting the following warning while building an app in xamarin: " Package 'SQLite.Net-PCL 3.1.1' was restored using .NETFramework,Version=v4.6.1 instead of the project target framework '.NETStandard,Version=v2.0'. This package may not be fully…
user
  • 1,681
  • 5
  • 18
  • 42
14
votes
1 answer

VS 2019 optimize code in release mode broken?

For me it looks quite strange, and like a bug. This code in Release mode in Visual Studio 2019 provides infinite loop. class Program { private static int _a; static void Main(string[] args) { _a = 1; while (_a == 1) …
Alexey Klipilin
  • 1,866
  • 13
  • 29
14
votes
2 answers

How to enable .NET Core 3 preview SDK in VS2019?

I wanted to try out Blazor. I've installed .NET Core 3.0 preview 5 SDK, Blazor VS extension to enable project templates. I can create Blazor project, but I can't run it - I constantly get this notification. In some tutorials I see that there should…
Pavel Evdokimov
  • 806
  • 1
  • 6
  • 15
14
votes
1 answer

Javascript Console window missing in Visual Studio 2019

I am debugging an Office Add-in. When I attach the debugger and select Visual Studio 2019 as the debugger target, the debugger successfully attaches and I can inspect the DOM. However, there is no option in the Debug or Debug -> Windows menu to…
Dave
  • 2,409
  • 3
  • 22
  • 28
14
votes
2 answers

What Replaces Code Analysis in Visual Studio 2019?

I'm toying with getting our team and projects ready for VS 2019. Right away, trying to set up Code Analysis for a new project, I find this: So, if this is deprecated (and apparently can't even be used, so I'm thinking "deprecated" really means…