我有一个Visual Studio扩展,它使用Roslyn在当前打开的解决方案中获取项目,编译它并从中运行方法。项目可以由程序员修改。
我已经从当前的VisualStudioWorkspace成功编译了Visual Studio扩展中的项目。
private static Assembly CompileAndLoad(Compilation compilation)
{
using (MemoryStream dllStream = new MemoryStream())
using (MemoryStream pdbStream = new MemoryStream())
{
EmitResult result = compilation.Emit(dllStream, pdbStream);
if (!result.Success)
{
IEnumerable<Diagnostic> failures = result.Diagnostics.Where(diagnostic =>
diagnostic.IsWarningAsError ||
diagnostic.Severity == DiagnosticSeverity.Error);
string failuresException = "Failed to compile code generation project : \r\n";
foreach (Diagnostic diagnostic in failures)
{
failuresException += $"{diagnostic.Id} : {diagnostic.GetMessage()}\r\n";
}
throw new Exception(failuresException);
}
else
{
dllStream.Seek(0, SeekOrigin.Begin);
return AppDomain.CurrentDomain.Load(dllStream.ToArray(), pdbStream.ToArray());
}
}
}
然后我可以在当前域中加载程序集,获取它的类型并调用方法。
问题是如果加载的解决方案的当前配置是调试的,我需要允许程序员放置断点。
我需要从扩展程序在当前的Visual Studio Host中运行一些代码,并允许在当前的Visual Studio实例中对其进行调试。
答案 0 :(得分:1)
似乎实际上是不可能的。
当前的Visual Studio实例无法对其进行调试。
我尝试用roslyn创建一个控制台应用程序,将其附加到调试器,然后从中运行生成代码。但是VisualStudioWorkspace仅在VisualStudio内部可用(不可序列化,并且不能通过DTE com接口使用)。因此,剩下的唯一解决方案是使用MBBuildWorkspace。由于它的行为与Visual Studio工作区不同,因此我放弃了该项目。
这是我的代码,供您进一步参考:
Process vsProcess = Process.GetCurrentProcess();
string solutionPath = CurrentWorkspace.CurrentSolution.FilePath;
SyntaxTree syntaxTree = CSharpSyntaxTree.ParseText($@"
using System;
using System.Threading.Tasks;
namespace CodeGenApplication
{{
public class Program
{{
public static void Main(string[] args)
{{
Console.ReadLine();
int vsProcessId = Int32.Parse(args[0]);
CodeGenApp.Test(""{solutionPath.Replace(@"\", @"\\")}"", ""{projectName}"", ""{_codeGenProjectName}"");
Console.ReadLine();
}}
}}
}}");
string assemblyName = Path.GetRandomFileName();
Project codeGenProject = CurrentWorkspace.CurrentSolution.Projects.Where(x => x.Name == _codeGenProjectName).FirstOrDefault();
List<MetadataReference> references = codeGenProject.MetadataReferences.ToList();
CSharpCompilation compilation = CSharpCompilation.Create(
assemblyName,
syntaxTrees: new[] { syntaxTree },
references: references,
options: new CSharpCompilationOptions(OutputKind.ConsoleApplication));
// Emit assembly to streams.
EmitResult result = compilation.Emit("CodeGenApplication.exe", "CodeGenApplication.pdb");
if (!result.Success)
{
IEnumerable<Diagnostic> failures = result.Diagnostics.Where(diagnostic =>
diagnostic.IsWarningAsError ||
diagnostic.Severity == DiagnosticSeverity.Error);
}
else
{
Process codeGenProcess = new Process();
codeGenProcess.StartInfo.FileName = "CodeGenApplication.exe";
codeGenProcess.StartInfo.Arguments = vsProcess.Id.ToString();
codeGenProcess.StartInfo.UseShellExecute = false;
codeGenProcess.StartInfo.CreateNoWindow = true;
codeGenProcess.StartInfo.LoadUserProfile = true;
codeGenProcess.StartInfo.RedirectStandardError = true;
codeGenProcess.StartInfo.RedirectStandardInput = true;
codeGenProcess.StartInfo.RedirectStandardOutput = false;
codeGenProcess.Start();
foreach (EnvDTE.Process dteProcess in _dte.Debugger.LocalProcesses)
{
if (dteProcess.ProcessID == codeGenProcess.Id)
{
dteProcess.Attach();
}
}
codeGenProcess.StandardInput.WriteLine("Start");
}
答案 1 :(得分:0)
您必须将调试器附加到当前运行的Visual Studio主机。要做到这一点,你需要:
你可能想要一个单独的命令/按钮,不要只是打开当前的构建配置。这就是其他人如何做到的(例如测试跑步者,甚至是Visual Studio)。另外,将已编译的Assembly
加载到新的AppDomain
中,否则它会粘在for ever上。
还有更多&#34;创意&#34;为您即将运行的方法注入System.Diagnostics.Debugger.Launch()
次呼叫的解决方案(在调用Compilation.SyntaxTrees
之前修改正确的Emit
) - 但严重的是,不要这样做。