Content by Category
.NET 1.x
.NET 2.0
.NET 3.0
.NET 3.5
.NET 4.0
.NET 4.5
.NET Assemblies
.NET Framework
.NET Getting Started
Accessibility
ADO.NET
Advertorials
Agile Development
AJAX
Amazon Web Services
Analysis Services
Android
Architecture
Arduino
ASP .NET Web API
ASP.NET
ASP.NET MVC
ASP.NET WebForms
Azure
B2B (Business Integration)
BDD
Big Data
Bing
BizTalk
Book Excerpts
Build and Deploy
Business Intelligence
C#
C++
ClickOnce
Cloud Computing
Code Contracts
CODE Framework Info - non Technical
CODE on the Road!
COM+
Community
Conferences
Continuous Integration
Crystal Reports
CSLA.NET
CSS
Data
Debugger
Design Patterns
Development Process
Display Technologies
Distributed Computing
Document Database
DotNetNuke
DSL
Dynamic Languages
Dynamic Programming
Editorials
Enterprise Services ("COM+")
Entity Framework
Events
Expression Blend
F#
Fox to Fox
Frameworks
Functional Programming
Git
Graphics
HTML 5
Internet Explorer 8.0
Interviews
IOS
iPhone
Iron Ruby
Java
Java Script
JavaScript
jQuery
JSON
Lightswitch
LINQ
Linux
LUA
Mac OS X
MDX
Messaging
Metro
Microsoft Application Blocks
Microsoft Business Rules Framework
Microsoft Dynamics
Microsoft Expression
Microsoft Office
Mobile Development
Mobile PC
Mono
MsBuild
MVVM
MySQL
Network
NHibernate
node.js
NOSQL
Nuget
Object Oriented Development
Objective C
Odata
OLAP
Open Source
Opinion
Opinions
Oracle
ORM
Other Languages
Parallel Programming
Patterns
PHP
Podcasts
Post Mortem
PowerPoint
Print/Output
Prism
Product News
Product Reviews
Project Management
Prolog
Python
Q&A
Rails
Rake
Razor
Reporting Services
REST
RIA Services
Ruby
Ruby on Rails
Scheme
Search
Security
Services
SharePoint
SignalR
Silverlight
SOA
Social Networks
Software & Law
Software Business
Source Control
Speech-Enabled Applications
SQL Server
SQL Server 2000
SQL Server 2005
SQL Server 2008
SQL Server 2012
SQL Server CE/AnyWhere/Mobile/Compact
SSIS
Subversion
Sync Framework
Tablet PC
TDD
Team System
Techniques
Testing and Quality Control
TFS
Tips
TypeScript
UI Design
UML
User Groups
VB Script
VB.NET
Version Control
VFP and .NET
VFP and SQL Server
Virtual Earth
Vista
Visual Basic
Visual Basic 6 (and older)
Visual FoxPro
Visual Studio .NET
Visual Studio 11
Visual Studio 2005
Visual Studio 2008
Visual Studio 2010
Visual Studio 2011
Visual Studio 2012
Visual Studio Tools for Office
VSX
WCF
Web Development (general)
Web Services
WebMatrix
WF
Whitepapers
Windows 7
Windows 8
Windows Azure
Windows Live
Windows Phone 7
Windows Phone SDK
Windows Server
Windows Vista
WinForms
WinRT
Workflow
WPF
XAML
Xiine Documentation
XML
XNA
XSLT



SSWUG


XAMALOT
 


DevTeach

Reader rating:
Click here to read 9 comments about this article.
Article source: CoDe (2008 - Vol. 5 - Issue 1 - Extensibility)


Article Pages:  1  2 3 4 - Next >


Introduction to the Visual Studio 2008 Shell

In the next Visual Studio wave of products, Microsoft will distribute its world-class IDE freely via its VS 2008 Shell offerings. In this article, I will give an overview of what the Shell is, what it contains, and how you can start leveraging it to start creating your own tools IDE.

The Visual Studio 2008 Shell is a new edition of Visual Studio offered to developers who wish to build their own development tools inside the Visual Studio IDE. Its target users are not the typical developers who would use the other editions of Visual Studio. The Shell’s target users are ISVs and other developers who wish to build their own tools IDEs, and in turn ship to their users and customers.

The key benefit of the Shell is that it allows anyone to quickly build their own tools environment, leveraging a proven and solid foundation of the Visual Studio IDE. By building on the Visual Studio Shell, you can significantly accelerate your development time by focusing on your core tools instead of building and maintaining the environment. In addition to the core IDE features such as menus/commands and tool window framework, the Shell also includes a rich set of component features that you may be able to take advantage of, including the Windows Forms designer and the WPF Designer. Your end-users will also benefit from the familiar user interface of Visual Studio in your tools environment.

A Word About Isolated versus Integrated Mode

Visual Studio 2008 Shell is actually offered as two “modes”: VS 2008 Shell (isolated mode) and VS 2008 Shell (integrated mode). These are, in fact, two separate binary downloads. While the Shell (isolated mode) is a brand-new offering, the Shell (integrated mode) is the new name for the Premier Partner Edition, which was offered in Visual Studio .NET 2003 and Visual Studio 2005. Both offerings share identical feature components.

You may have heard members of the VSX team use the term AppId (short for application identity) to talk about different instances of environments. Each AppId is uniquely identified by a stub .exe (the executable you run to start the environment) and a registry root that stores application configuration. For example, Standard and Professional editions are the same AppId. If you install Standard and Professional on to the same machine, you end up with a Visual Studio environment that contains features from both editions and you cannot start one without the other. On the other hand, Visual Basic Express and Visual C# Express are two different AppIds. If you have both installed, you can still launch them independently and their settings are isolated from each other.

If you use the Visual Studio Shell in the integrated mode, you are building on top of the same Visual Studio instance as the other Visual Studio editions (Standard, Pro, Team Architect, etc.). This means that your tools will merge into the same environment as the other editions of Visual Studio if they are also installed on the user’s machine (top of Figure 1).

Click for a larger version of this image.

Figure 1: Visual Studio Application Id model.

If you use the Visual Studio Shell in the isolated mode, you will actually create your own AppId. Your tools environment will be isolated with other Visual Studio AppIds as well as other environments that are built on the Visual Studio Shell (bottom of Figure 1). You will have your own stub .exe, your own custom branding, and registry isolation.

When should you use which? Each mode offers its own benefits and that will depend on your scenarios. Typically, if you are integrating your own language tools, you will benefit from the integrated mode because if your user also has other editions of Visual Studio (Standard and above) installed, they will benefit from mixed language development as well as the extra features offered by Visual Studio such as unit testing, code profiling, and static analysis. On the other hand, if you require your own custom branding in your tools IDE and you want to have it run in complete isolation with Visual Studio, the isolated mode would be the right fit for you.

The walkthrough section of this article focuses exclusively on the isolated Shell. The reason is that developing VSPackages for the integrated Shell is no different than the general VSPackage development for Visual Studio. You can find abundant resources on MSDN and elsewhere about general VSPackage development. Unless explicitly stated, I will simply use “Shell” to refer to it from this point onwards. I will go over the features and customization points contained in the Shell. I will also walk through how you can leverage this new product offering to help you build your own development tools environment.

&

By: James Lau

Fast Facts

Applications built on the integrated Shell will automatically merge with any other editions of Visual Studio installed on the same machine. Applications built with the isolated Shell will run side-by-side with any other editions of Visual Studio installed on the same machine. - Source: MSDN Visual Studio 2008 Shell home page


VSX Team Member


James Lau

Lead Program Manager

Visual Studio Ecosystem Team

There are so many things going on in our team and in the VSX Community! From holding developer labs to engaging with MVPs, and from shipping the Visual Studio Shell to rethinking the tooling experience in the Visual Studio SDK, we are dedicated to enabling ISVs and enthusiasts in extending Visual Studio. For me personally, it’s really exciting to see the VSX Community harness its creativity and create innovative projects that make Visual Studio an even better product. I am thrilled about all the upcoming Visual Studio SDK enhancements that we have planned over the next year to make extending Visual Studio easier! You can find my blog at http://blogs.msdn.com/jameslau/.



Article Pages:  1  2 3 4 - Next Page: 'What You Need to Download' >>

Page 1: Introduction to the Visual Studio 2008 Shell
Page 2: What You Need to Download
Page 3: Customizing Your IDE
Page 4: Removing a Default Package from Your IDE

How would you rate the quality of this article?
1 2 3 4 5
Poor      Outstanding

Tell us why you rated the content this way. (optional)

Average rating:
3.2 out of 5

63 people have rated this article.

TOWER 48

      Sharepoint TechCon

 

LearnNow