Showing tag results for Visual Studio

Aug 8, 2013
Post comments count0
Post likes count0

Update for Extension Authors: VSIX Manifest Version Range Attribute

Visual Studio Team

In Visual Studio 2010 we introduced a new deployment model for extensions, the VSIX format. This format is based on the Open Packaging Conventions and enables extension developers to create a single package that can be easily installed by Visual Studio and contain all the appropriate files to describe the extension. For Visual Studio 2012 we wante...

Visual StudioExtensionsVisual Studio 2013
Nov 19, 2009
Post comments count0
Post likes count0

Debugging Expression Trees in Visual Studio 2010

Visual Studio Team

First of all, let’s take a look at the example from one of my previous posts. It creates an expression tree for calculating the factorial of a number. Now, what if you want to see the content of this tree in debug mode? You can try lambda.ToString() but it’s not very informative. All you get is this: value => {var result; … }. Basically, it te...

Visual StudioDebugging and DiagnosticsC#