Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is Visual Studio 2008 Shell (integrated mode)?

I am new to Visual Studio 2008 Shell (integrated mode), I just want to know what is its function? (I did not find much clearly from the web.)

From http://msdn.microsoft.com/en-us/vstudio/bb510103.aspx looks like it is some interface/framework to allow tools to integrate with VSTS IDE. My question is whether any Microsoft VSTS tools (like databse designer and other tools in VSTS) dependent on VSTS Shell? I am asking this question because it is conflicting with SQL Server 2008, and I want to make sure that if I uninstaill VSTS Shell, it does not impact anything.

thanks in advance, George

like image 249
George2 Avatar asked May 10 '09 11:05

George2


People also ask

What is Visual Studio Shell Integrated?

The Visual Studio Shell enables Visual Studio Partners to build tools and applications on top of the Visual Studio IDE. Using integrated mode, you can release a Visual Studio extension for use by customers who have not installed Visual Studio.

Do I need Microsoft Visual Studio shell?

You need the Visual Studio Shell to create an application that provides an Integrated Development Environmente (IDE) and you want to reuse the Visual Studio IDE rather than creating your own IDE. “Integrated mode” enables your users to use standard Visual Studio features along with your custom tools.

Is Shell integrated?

Shell is vertically integrated and is active in every area of the oil and gas industry, including exploration, production, refining, transport, distribution and marketing, petrochemicals, power generation, and trading.

What is Microsoft Visual Studio and do I need it?

Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs, as well as websites, web apps, web services and mobile apps.


2 Answers

SQL Server 2008 Management Studio using the VS 2008 Shell. (That's why it looks and feels just like Visual Studio).

like image 178
James Avery Avatar answered Oct 13 '22 01:10

James Avery


Visual Studio Shell is an extensibility mechanism provided to use Visual Studio core platform to provide your own tools. It has two modes. In "Isolated Mode," it'll always set up a separate instance of Visual Studio that hosts your tool. In "Integrated Mode," it'll only install a new VS instance if there's no one already available. If one is already there, it'll integrate with it. I don't think removing it causes any problems for a VS installation. It seems to be smart enough to handle it (it might break a third party tool, however).

like image 40
mmx Avatar answered Oct 13 '22 02:10

mmx