从 Visual Studio 2015 CTP5 包中,如何获取当前的 Roslyn 工作区?

我在看

How to get reference to 'Roslyn' Workspace object from IVsSolution?



Roslyn: How to get a reference to Workspace from currently loaded solution?

但我仍然无法让它工作:

Workspace.CurrentWorkspace 不再存在

我尝试导入 VisualStudioWorkspace,但它仍然为空:

public sealed class VSPackage1Package : Package
{
 ....
    [Import]
    public VisualStudioWorkspace Workspace { get; set; }
 ....
    protected override void Initialize()
    {
    // Workspace is null here...

某处有样本吗?

最佳答案



它就在那里,仔细检查你找对地方了。

[Import] 仅当您正在使用的类本身是 MEF 导出时才有效。如果不是(就像你的情况下的包),只需写:

var componentModel = (IComponentModel)GetService(typeof(SComponentModel));
var workspace = componentModel.GetService<VisualStudioWorkspace>();

关于roslyn - 如何从 VS 包中获取 Roslyn 工作区?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28198358/

10-11 21:12