visual-studio-2019

Re-enable title bar in Visual Studio 2019

假如想象 提交于 2020-01-01 04:04:10
问题 I've downloaded the preview version of Visual Studio 2019 and the title bar is disabled by default. This doesn't work for me as I currently develop C# applications using multiple instances of visual studio at a time, and I like knowing what window relates to which solution, and whether I am running with elevated privileges. I've found that I can re-enable the title bar by going to the 'Preview Features' section in options, but this will obviously not be in the real release of Visual Studio

Installation of AnkhSVN Visual Studio 2019

旧巷老猫 提交于 2019-12-31 17:51:14
问题 I can not Install AnkhSVN -Subversion Support for Visual Studio 2019, I have tried to Install It, It says Version is Invalid for VS2019 I use VS2019 Professional 回答1: The latest AnkhSVN version is not compatible with Visual Studio 2019 (and the project, unfortunately, seems dead). A possible solution is to edit manually the files stored in the vsix file (it's a zip file with a different extension). The file to edit are: extension.vsixmanifest Change the occurance of [15.0,16.0) to [15.0,17.0)

Visual Studio 2019 does not detect .Net Core 3 pre-release 9 SDK

家住魔仙堡 提交于 2019-12-25 17:48:50
问题 I only have .Net Core 3 pre-release 9 currently installed and if I want to create a new ASP.Net Core application it tells me the following. I even turned on Use previews of the .Net Core SDK in the settings and ensured that C:\Program Files\dotnet\ is at the very top of my PATH environment variable. Also I am using Visual Studio Version 16.2.4 . If I type dotnet --info it shows me the following: 回答1: You will need VS2019 Preview, not RTM, installed and up-to-date to use .NET Core 3.0 previews

How can I debug both classic ASP and ASP.NET code in the same debugger session?

别说谁变了你拦得住时间么 提交于 2019-12-24 21:34:43
问题 I have a web app which is a mix of classic ASP and ASP.NET code, and I'd like to use the debugger. However it seems from looking at the Modules window in Visual Studio that only the ASP code happens to be available to the debugger at the moment; I get "the breakpoint will not be hit, no symbols have been loaded for this document" when I set a breakpoint in the ASP.NET code. How do I make both the ASP and ASP.NET code available? Or failing that, how do I switch between the two? Earlier I was

could not find library 'radial' in directories ['lib']…LINK : fatal error LNK1181: cannot open input file 'radial.lib'

元气小坏坏 提交于 2019-12-24 21:01:16
问题 I have some codes in Python 3.7 mixed with Fortran FOR . I use Visual Studio 2019 and Intel Parallel Studio 2019 integrated.so when I run in Intel CMD python setup.py install I got this error : could not find library 'radial' in directories ['lib']... LINK : fatal error LNK1181: cannot open input file 'radial.lib' error: Command "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\MSVC\14.21.27702\bin\HostX86\x64\link.exe... … failed with exit status 1181 Any help would be

Possible to mix VS 2019 build with TFS 2017 on Build Agent?

坚强是说给别人听的谎言 提交于 2019-12-24 12:35:06
问题 We want to migrate from VS 2017 to VS 2019. We are still on TFS 2017 and want to stay there for now. I set up the build infrastructure a long time ago, so I am not certain anymore what the role of VS on the build agent is.. I certainly sometimes use it to manually open a solution that does not compile for unclear reasons, and I think it also was needed for some libraries. I want the automated build process to use same VS as on developer machines, for consistency. Can I uninstall VS 2017 and

Visual Studio - X11: The DISPLAY environment variable is missing

允我心安 提交于 2019-12-24 12:35:06
问题 I'm developing a cross-plataform (Windows / Linux) x64 GUI application, using Visual Studio 2019 Enterprise. In this 2019 edition we can use Visual Studio to debug both plataforms (Windows - Native) and Linux - Ubuntu (Running in a Virtual Machine). You can see it here: https://devblogs.microsoft.com/cppblog/using-visual-studio-for-cross-platform-c-development-targeting-windows-and-linux/ So, I followed this tutorial and I got this GUI example application running and debugging in my Ubuntu 18

Narrator does not read the text in a TextBlock as expected. Only in the selected TextBox

痴心易碎 提交于 2019-12-24 05:16:14
问题 I have a Visual Studio 2019 solution that contains two projects: a Class Library (Universal Windows) that contains a login Page and a Blank App (Universal Windows) that simply navigates to said login Page. One of my requirements is that the overall solution must pass an accessibility test. The test involves having Narrator (it must be Narrator) read all of the text on the screen. My problem is that Narrator only reads the text of the TextBox that has focus when the Page loads. I expected

unable to build a asp.net app in azure devops

廉价感情. 提交于 2019-12-24 00:34:25
问题 Able to build the app locally, but when am trying to build in azure devops pipeline.It showing below errors I have installed EntityFramework and added system.data.entity.design assembly in webconfig file.No luck Please find pipeline here NuGet Restore task webapp\CaseDatabase.DataAccess\CaseAssignmentModule\CaseQueueDbAdapter.cs(10,19): Error CS0234: The type or namespace name 'Entity' does not exist in the namespace 'System.Data' (are you missing an assembly reference?) webapp\CaseDatabase

VS2019 Debugger fails after renaming ClientApp folder in dotnet core angular app

偶尔善良 提交于 2019-12-23 17:57:07
问题 This question is similar to this other question. But the solutions to the other question prevent breakpoints from being set in the modified app. I have Visual Studio Pro 2019 Preview Version 16.3.0 Preview 2.0 and .Net Core 3.0.100-preview8-013656. Run "dotnet new angular" Set a Typescript breakpoint in VS2019. Press F5 and check that it gets hit. Change name of Angular folder from ClientApp to XClientApp Make these changes in startup.cs: configuration.RootPath = "XClientApp/dist"; ... spa