Showing category results for Git & Version Control

Feb 5, 2015
Post comments count0
Post likes count0

Video: Diagnostic Tools in Visual Studio 2015

Dan Taylor

You may have read our blog posts about the Diagnostic Tools debugger window in Visual Studio 2015, the new IntelliTrace in Visual Studio Ultimate 2015, and the Memory Usage Tool while debugging in Visual Studio 2015 that highlight some of our new features in the Visual Studio 2015 CTP 5 release. Yesterday we posted a Channel 9 video walkthrough of ...

DevOpsGit & Version Control
Jan 16, 2015
Post comments count0
Post likes count0

Walkthrough of Live Debugging using IntelliTrace in Visual Studio 2015 (Text Editor)

Angelos Petropoulos

In this blog post I am going to walk you through fixing a bug using IntelliTrace in Visual Studio 2015. If you haven’t done so already, check out the announcement of IntelliTrace in Visual Studio 2015 which gives you an overview of IntelliTrace and its UI. You can see this walkthrough as a video here (demo start at 4m5s). The application I am goin...

DevOpsGit & Version Control
Jan 16, 2015
Post comments count0
Post likes count0

Diagnostic Tools debugger window in Visual Studio 2015

Dan Taylor

Note: this post has been updated for Visual Studio 2015 RTM This blog post introduces the new Diagnostic Tools window in Visual Studio 2015. First we’ll define what we mean by diagnostic tools, then we’ll introduce the Diagnostic Tools window, and then we’ll dive into the different tools in the window. What are Diagnostic Tools? First let’s defi...

DevOpsGit & Version Control
Jan 16, 2015
Post comments count0
Post likes count0

IntelliTrace in Visual Studio Ultimate 2015

Angelos Petropoulos

Debugging is part of every developer’s routine. Something that is not often talked about is how much time can be wasted trying to find the root cause of a bug. A debugging session typically starts with your best guess of where to put the first breakpoint. You go through the repro steps and hope that your breakpoint is hit before the bug manifests i...

DevOpsGit & Version Control
Jan 7, 2015
Post comments count0
Post likes count1

Understanding Exceptions while debugging with Visual Studio

Aaron Hallberg

This post has been updated to reflect *the experience while using Visual Studio 2015.* If you have spent any time coding, odds are that you have had to deal with Exception Handling. In Visual Studio, when exceptions are thrown or end up unhandled, the debugger can help you debug these by breaking just like it breaks when a breakpoint is hit. In thi...

DevOpsGit & Version Control
Jan 5, 2015
Post comments count1
Post likes count3

Understanding symbol files and Visual Studio’s symbol settings

Importer

Symbols are a fundamental requirement for debugging and other diagnostic tools. Fortunately in most cases when you are building and launching your application in Visual Studio you don’t have to think about symbols for your code. However the odds are that at some point in time you’ll need to change how symbols load, where the debugger looks for them...

DevOpsGit & Version Control
Dec 22, 2014
Post comments count0
Post likes count0

IntelliTrace Standalone Collector and Application Pools running under Active Directory accounts

Angelos Petropoulos

You will often configure an ASP.NET web site to run as an Active Directory (AD) user so that the site can access that user’s network resources (e.g. a file share). This is accomplished by changing the identity of the IIS Application Pool the web site runs under.If you try to use the IntelliTrace Standalone Collector with such an application p...

DevOpsCI/CDGit & Version Control
Dec 16, 2014
Post comments count0
Post likes count0

Custom TraceSource and debugging using IntelliTrace

Angelos Petropoulos

IntelliTrace in Visual Studio Enterprise comes with support for tracing out of the box. All you have to do is make sure the appropriate IntelliTrace events are enabled in VS settings and IntelliTrace will capture trace statements as events. When you are not using the default Debug.Trace methods and are instead using a custom TraceSource, you don...

DevOpsCI/CDGit & Version Control
Dec 11, 2014
Post comments count0
Post likes count0

CodeLens in Visual Studio Online is now in Public Preview

Mathew Aniyan MSFT

Update: Added a Troubleshooting section. Introduction CodeLens is a heads-up display in your Visual Studio Editor where you can find information about your code in-context.   We had enabled CodeLens in Visual Studio Online for select customers as a Limited CTP in Nov 2014. We have evaluated the performance & scale characteristics and now ...

DevOpsGit & Version Control
Nov 24, 2014
Post comments count3
Post likes count0

Introducing the Child Process Debugging Power Tool

Andrew B Hall - MSFT

We’ve heard your feedback that you want the Visual Studio debugger to support child process debugging. Child process debugging means that when the application you are debugging creates another process, Visual Studio will detect this and automatically attach a debugger to the newly created process as well. To address this we’re releasing a power too...

DevOpsGit & Version Control