Created
September 13, 2014 22:15
-
-
Save JoshVarty/9e83dea89d7537d22810 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected override void Initialize() | |
{ | |
//Other stuff... | |
... | |
var componentModel = (IComponentModel)this.GetService(typeof(SComponentModel)); | |
var workspace = componentModel.GetService<Microsoft.VisualStudio.LanguageServices.VisualStudioWorkspace>(); | |
} | |
//Alternatively you can MEF import the workspace. MEF can be tricky if you're not familiar with it | |
//but here's how you'd import VisuaStudioWorkspace as a property. | |
[Import(typeof(Microsoft.VisualStudio.LanguageServices.VisualStudioWorkspace))] | |
public VisualStudioWorkspace myWorkspace { get; set; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment