Does Visual Studio have the Intellisense error logs? If so, how to see them?
If you are working with C++, you can set Logging Filter to 8 in Tools > Options > Text Editor > C/C++ > Advanced > Diagnostic Logging. The link: Validating Project Settings via Diagnostic Logging
If it is non-C++ project, you can just see the intellisense errors in error list window.
Related
I am using visual studio 2019 in mac to setup my test automation framework in c# & Specflow . When i build my test automation framework in VS i am getting below error :
SpecFlow designer codebehind generation is not compatible with MSBuild codebehind generation. The custom tool must be removed from the file
On searching through forums, people recommending to remove the custom tool selected as "SpecFlowSingleFileGenerator". But when i check the same in VS 2019 for Mac it is not enabled for me to remove.
attaching the screenshotn. Can anyone help me with this issue ?
I'm not familiar with Visual Studio for Mac, but presumably the settings are the same or similar to Windows.
Check the SpecFlow options in Visual Studio. Make sure Enable SpecFlowSingleFileGenerator CustomTool is set to False. If Visual Studio for Mac is anything like windows, go to Tools > Options > SpecFlow, then look under the Legacy section.
A screenshot from Windows is below, showing the setting in question:
I've seen a lot of things about VS2015 mention this feature, where is it in VS2019?
In VS2015 it was under build options but I can't find it anywhere now.
I found an answer, under project properties -> C/C++ -> Preprocessor there is an option called "Preprocessor Definitions" which was what I was looking for
We upgraded to CodeSmith 8.0 from 5.2. We are using Visual Studio 2019.
I was able to upgrade the codesmith .cst templates. The right click menu on Visual studio 2019 solution explorer doesn't show Manage outputs, generate output or any of codesmith right click options for .csp files
It shows the right click options in windows explorer for .csp files but not for VS 2019.
See the two screenshots. Do I need to do anything special for the options to show up on VS 2019?
Right click menu from Windows explorer. There are code smith options when I right click on the .csp file
Visual Studio 2019
I work at CodeSmith Tools.. Microsoft broke the world with VS2019 and we are currently blocked by VSIX changes in VS2019 where Roslyn bin folder dependencies are not being deployed within the VSIX. This makes testing / development even more difficult. Until a fix is out we can't resume development of VS2019 as we can't even debug it :.
I remember a window in Visual Studio 2010 where I could see all of the sql calls made on runtime in my ASP.NET MVC project. I don't remember the window name and I cannot find it. Does anybody know/remember this?
Are you referring to the IntelliTrace window?
I am trying to debug the client side code (like JQuery code, JavaScript code) from within visual studio.
Wondering how i can do that?
You have to enable debugging in Internet Explorer. In Internet Options there's an option, checked by default, called "Disable Script Debugging (Internet Explorer)." Uncheck this option and close Internet Explorer.
After that, you can use VS to attach to a running instead of IE and set breakpoints in the code. The full features of VS's debugger will be available and it works great.
In VS 2010 (and VS 2008 I think) while running the web solution in debug mode using internet explorer, if you go into the Solution Explorer there will be a "Script Documents" node, with an "Internet Explorer" node beneath this and all the java scripts that are in the page will be listed. You can double click on any of these scripts to open them and add breakpoints to the java script as required.
FireBug is much better javascript debugging tool compared to Visual Studio. I would strongly recommend it to you. Google Chrome developer tools are also worth checking.