Showing category results for Visual Studio

Dec 14, 2009
Post comments count0
Post likes count0

Customizing Visual Studio 2010

Visual Studio Team

Don’t like where a button is by default?  Go ahead and move it.  To speed up your workflow, add handy commands to a context menu.  To reduce clutter, remove commands that you never use.  Yes, customizing the UI can take a little while to get it just right, but doing so will provide you with a workspace that can boost your ...

Dec 10, 2009
Post comments count0
Post likes count0

Developer Tools Ecosystem Summit Videos Now Available!

Visual Studio Team

Video recordings of the talks that were given at the 2009 Developer Tools Ecosystem Summit have just been posted on Channel 9.  There are some great talks on topics ranging from VSX basics, to the extending the new Editor, to deploying and sharing your extensions on the Visual Studio Gallery.  Check them out and let us know what you think...

Dec 9, 2009
Post comments count0
Post likes count0

Building and publishing an extension for Visual Studio 2010

Visual Studio Team

Quan To – Program Manager, Visual Studio Platform Team Short Bio: Quan is responsible for the Extension Manager and Visual Studio SDK.  Quan has been with Microsoft for over ten years and has also spent time working on the Tablet PC Team and the Visual Studio Deployment team. Visual Studio 2010 supports more platforms and language...

HTMLC#Node.js
Dec 7, 2009
Post comments count0
Post likes count0

Bootstrapping of VS packages and VSIX extensions in VS2010

Visual Studio Team

Dmitry Goncharenko: Developer, Visual Studio Platform Short bio: Dmitry has been at Microsoft for about 10 years working on several areas of Visual Studio. For Visual Studio 2010, he helped to design and implement PkgDef management, VSIX technologies, and hosting of MEF components. Visual Studio 2010 uses two technologies to make it much simpler t...

Node.js
Dec 1, 2009
Post comments count0
Post likes count0

Upcoming VS Platform MSDN Webcasts

Visual Studio Team

[Update:  The Introduction to Visual Studio 2010 Extensibility has been moved to 12/16 @ 10 a.m.  Please update your calendars to reflect this change.] I wanted to announce two upcoming MSDN Webcasts that will be presented by Visual Studio Platform PMs, Weston Hutchins and Chris Granger.  Both of these are introductory level tal...

Dec 1, 2009
Post comments count0
Post likes count0

Visual Studio Extensibility Videos

Visual Studio Team

Hi folks, I wanted to call out a couple of videos we just released to the community.  I spent some time last week putting together a short video on publishing your extension to the Visual Studio Gallery.  The video will give you a walkthrough of what to expect when sharing your extension and shows you what to expect on the Gallery....

C#
Nov 23, 2009
Post comments count0
Post likes count0

What's new for editor extenders in Beta 2?

Visual Studio Team

Noah Richards – Developer, Visual Studio Editor Team Short Bio:  Noah has been working on the Visual Studio Editor team since he graduated college two and a half years ago.  He maintains a blog, posts sample code for editor extensions, and frequently answers editor-related questions on Twitter. Editor’s Note:  This post was origina...

ASP.NETC#Visual Studio 2010
Nov 23, 2009
Post comments count0
Post likes count0

What’s new for editor extenders in Beta 2?

Visual Studio Team

Noah Richards – Developer, Visual Studio Editor Team Short Bio:  Noah has been working on the Visual Studio Editor team since he graduated college two and a half years ago.  He maintains a blog, posts sample code for editor extensions, and frequently answers editor-related questions on Twitter. Editor’s Note:  This post was origina...

ASP.NETC#Visual Studio 2010
Nov 22, 2009
Post comments count0
Post likes count0

Framework Multi-Targeting for VC++ Projects

Visual Studio Team

Short Bio: Pavan Adharapurapu is a developer on the Visual Studio Project and Build team. As part of VS 2010, he has worked on numerous features of the VC++ project system such as property sheets, filters, property pages, platform and tool extensibility, etc. His long term focus is on developing a "common project system" infrastructure which could ...

ASP.NETC#
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#