yatagarasu
yatagarasu

Reputation: 549

Embed Visual Studio editor into my app

Is it possible to embed Visual Studio 2010 (Express ?) source code editor into my application.

What is another most preferred way to interconnect my application with Visual Studio?

Don't want to embed my app into visual studio for some religious reasons =)

Upvotes: 2

Views: 2629

Answers (2)

yatagarasu
yatagarasu

Reputation: 549

MSDN How to: Get References to the DTE and DTE2 Objects http://msdn.microsoft.com/en-us/library/68shb4dw.aspx is interesting starting point for solving my problem.

Upvotes: 0

user405725
user405725

Reputation:

If you don't want to make your application a plug-in then make a plug-in that provides an interface for your application using some sort of IPC.

Also see Embed Visual Studio 2010 Editor into a Tool Window. As far as I understand, application has to be a plug-in/extension in order to do that.

Upvotes: 2

Related Questions