我正在研究在 Visual Studio 扩展 (VSIX) 中使用 Roslyn 编译器,该扩展使用 VisualStudioWorkspace 来更新现有代码。在过去的几天里阅读了这个,似乎有几种方法可以实现这一点......我只是不确定哪种方法对我来说是最好的。
好的,让我们假设用户在 Visual Studio 2015 中打开了他们的解决方案。他们单击我的扩展并(通过表单)告诉我他们想要将以下方法定义添加到接口:
GetSomeDataResponse GetSomeData(GetSomeDataRequest request);
他们还告诉我接口的名称,它是ITheInterface。
该接口中已经有一些代码:
namespace TheProjectName.Interfaces
{
using System;
public interface ITheInterface
{
/// <summary>
/// A lonely method.
/// </summary>
LonelyMethodResponse LonelyMethod(LonelyMethodRequest request);
}
}
好的,所以我可以使用以下内容加载接口文档:
Document myInterface = this.Workspace.CurrentSolution?.Projects?
.FirstOrDefault(p
=> p.Name.Equals("TheProjectName"))
?.Documents?
.FirstOrDefault(d
=> d.Name.Equals("ITheInterface.cs"));
那么,现在将我的新方法添加到这个现有接口的最佳方法是什么,最好也写在 XML 注释(三斜杠注释)中?请记住,请求和响应类型(GetSomeDataRequest 和 GetSomeDataResponse)实际上可能还不存在。我对此很陌生,所以如果你能提供代码示例,那就太好了。
更新
我决定(可能)最好的方法是简单地注入一些文本,而不是尝试以编程方式构建方法声明。
我尝试了以下方法,但最终出现了我不理解的异常:
SourceText sourceText = await myInterface.GetTextAsync();
string text = sourceText.ToString();
var sb = new StringBuilder();
// I want to all the text up to and including the last
// method, but without the closing "}" for the interface and the namespace
sb.Append(text.Substring(0, text.LastIndexOf("}", text.LastIndexOf("}") - 1)));
// Now add my method and close the interface and namespace.
sb.AppendLine("GetSomeDataResponse GetSomeData(GetSomeDataRequest request);");
sb.AppendLine("}");
sb.AppendLine("}");
检查一下,一切都很好(我的真实代码添加了格式和 XML 注释,但为了清楚起见删除了)。
因此,知道这些是不可变的,我尝试将其保存如下:
var updatedSourceText = SourceText.From(sb.ToString());
var newInterfaceDocument = myInterface.WithText(updatedSourceText);
var newProject = newInterfaceDocument.Project;
var newSolution = newProject.Solution;
this.Workspace.TryApplyChanges(newSolution);
但这产生了以下异常:
bufferAdapter is not a VsTextDocData
在 Microsoft.VisualStudio.Editor.Implementation.VsEditorAdaptersFactoryService.GetAdapter(IVsTextBuffer bufferAdapter) 在 Microsoft.VisualStudio.Editor.Implementation.VsEditorAdaptersFactoryService.GetDocumentBuffer(IVsTextBuffer bufferAdapter) 在 Microsoft.VisualStudio.LanguageServices.Implementation.ProjectSystem.InvisibleEditor..ctor(IServiceProvider serviceProvider , String filePath, Boolean needsSave, Boolean needsUndoDisabled) 在 Microsoft.VisualStudio.LanguageServices.RoslynVisualStudioWorkspace.OpenInvisibleEditor(IVisualStudioHostDocument hostDocument) 在 Microsoft.VisualStudio.LanguageServices.Implementation.ProjectSystem.DocumentProvider.StandardTextDocument.UpdateText(SourceText newText) 在 Microsoft.VisualStudio.LanguageServices .Implementation.ProjectSystem.VisualStudioWorkspaceImpl。ApplyDocumentTextChanged(DocumentId documentId, SourceText newText) 在 Microsoft.CodeAnalysis.Workspace.ApplyProjectChanges(ProjectChanges projectChanges) 在 Microsoft.CodeAnalysis.Workspace.TryApplyChanges(Solution newSolution) 在 Microsoft.VisualStudio.LanguageServices.Implementation.ProjectSystem.VisualStudioWorkspaceImpl.TryApplyChanges(Solution newSolution)