Showing tag results for Visual Studio 2010

Apr 21, 2010
Post comments count0
Post likes count0

Start Extending Visual Studio 2010!

Visual Studio Team

Visual Studio not only boasts a wide variety of tools to improve developer productivity, but it is also extremely extensible so that it can be tailored and customized to serve specifically your needs. In fact, one of the key benefits of Visual Studio 2010 is its improved extensibility story. With an easier deployment experience, more extensive yet ...

ExtensionsVisual Studio 2010
Apr 16, 2010
Post comments count0
Post likes count0

Custom Extension Types with VSIX

Aaron Marten

DISCLAIMER: While the following technique is supported in Visual Studio 2010, the interfaces and methods exposed by Microsoft.VisualStudio.ExtensionManager.dll are likely to change in future Visual Studio releases. If you create an extension that relies on Microsoft.VisualStudio.ExtensionManager.dll, there is no guarantee that your extension binary...

C#XAMLVisual Basic
Mar 29, 2010
Post comments count0
Post likes count0

Tips and Tricks: Visual Studio 2010 Image Library

Visual Studio Team

I was in the middle of creating UI mockups for some extensions I’ve been working on and realized that I needed some icons to polish off the sketch.  Sure, I could have just grabbed a screenshot of VS, opened up my favorite image editor, and pulled out the icon that I needed…but what if my “perfect” icon wasn’t in VS?  After all, these ext...

HTMLVisual Studio 2010
Mar 25, 2010
Post comments count0
Post likes count0

Tips and Tricks: Apply (or Don’t Apply) Cut or Copy commands to blank lines

Visual Studio Team

As you may know, Visual Studio’s cut and copy commands are useful for more than just selected text.  If you invoke them when there is no selection, VS will cut or copy your entire line, which saves you the trouble of selecting the line before adding it to the clipboard.  Although a lot of developers find this helpful, we occasionally hear feedback ...

Visual Studio 2010Tips and Tricks
Mar 14, 2010
Post comments count0
Post likes count0

Why does Visual Studio 2010 convert my projects?

Visual Studio Team

Hi, I am Richa Prasad and I am the Program Manager for the Project System team. This means that I work on many features for managing projects and solutions. One such feature is the conversion process. We have recently received many requests for making the conversion process optional; i.e. supporting the ability to open old Visual Studio version pr...

C#Visual Studio 2010
Mar 11, 2010
Post comments count0
Post likes count0

WPF Text Clarity Improvements

Visual Studio Team

As most of you know, we’ve rebuilt the editor and much of Visual Studio using WPF for Visual Studio 2010.  This allows for a wealth of new visualizations and enables many new extensibility scenarios, often making previously impossible tasks possible and previously difficult tasks much easier.  Unfortunately, the WPF text team has been plagued with ...

Visual Studio 2010WPF
Mar 5, 2010
Post comments count0
Post likes count0

MSBuild 4 Detailed Build Summary

Visual Studio Team

Introduction When we were developing the current version of MSBuild, we spent a lot of time analyzing builds to determine where our performance issues lay. The standard logging, even on diagnostic verbosity and with the performance summary enabled (/clp:PerformanceSummary=true on the MSBuild command line) doesn’t give us the kind of information we ...

Debugging and DiagnosticsC#Node.js
Mar 4, 2010
Post comments count0
Post likes count0

Creating and Sharing Project & Item Templates

Aaron Marten

One of the great new features we added in Visual Studio 2010 is the ability to easily find and consume online Project and Item templates without leaving the New Project/Item dialog. What may not be so obvious is how to go from a piece of code you want to share to a template contained in a VSIX file that can be uploaded to the Visual Studio Gallery ...

Debugging and DiagnosticsC#Extensions
Mar 2, 2010
Post comments count0
Post likes count0

Second patch now available for IntelliSense crashes in VS 2010 RC

Visual Studio Team

We recently blogged about a crashing bug in the Visual Studio 2010 Release Candidate (RC) on machines using UI Automation (UIA).  We’ve since discovered that there are actually two bugs, both of which will only affect a certain group of users but will cause the IDE to be very unstable for those users.  Both of these issues now have patches availabl...

Visual Studio 2010
Feb 24, 2010
Post comments count0
Post likes count0

Troubleshooting Extensions with the Activity Log

Visual Studio Team

One of the most powerful tools for troubleshooting issues that involve Visual Studio extensions is often overlooked, even though it has been around for quite some time (since VS 2005). Anyone wondering what Visual Studio is doing with their VS Package, Extension, MEF Component, or pkgdef file should ask the IDE for an activity log. In this art...

Debugging and DiagnosticsVisual Studio 2010Tips and Tricks