编译文件中的编译类

时间:2013-05-26 12:39:20

标签: c# roslyn

我有一个运行时编译类的问题。我有类似这两个类的东西:

头等舱

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Program.Bullet {
  public class Class1{
    private int i;
    public Class1(int j){
      i=j;
    }
  }
} 

和第二课

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Program.Bullet;
namespace Program.Object {
  public class Class2{    
    public Class2(){
      Class1 c1 = new Class1(5);
    }
  }
}

这两个类我想在运行时编译并在我的项目中使用它们。所以我有编译它的功能(XmlNode有关于fullPath等的数据):

private ModuleBuilder moduleBuilder;
private List<string> isCompiled;

private void Compile(XmlNode compileingClasses) {
        foreach (XmlNode compileingClass in compileingClasses) {
            string fullPath = compileingClass.Attributes["path"].InnerText;
            string type = compileingClass.Attributes["name"].InnerText; ;
            if (!isCompiled.Contains(type)) {
                isCompiled.Add(type);
                var syntaxTree = SyntaxTree.ParseFile("../../File1/File2/" + fullPath);

                var comp = Compilation.Create("Test.dll"
                    , syntaxTrees: new[] { syntaxTree }
                    , references: metadataRef
                    , options: comilationOption
                    );

                // Runtime compilation and check errors
                var result = comp.Emit(moduleBuilder);
                if (!result.Success) {
                    foreach (var d in result.Diagnostics) {
                        Console.WriteLine(d);
                    }
                    throw new XmlLoadException("Class not found " + fullPath);
                }
            }
        }
    }

是否可以获得Class1到Class2的引用?

编辑:更好的问题

是否可以在编译的Class1上创建MetadataReference?

类似的东西:

string fullName = bullet.Attributes["fullName"].InnerText;
var o = moduleBuilder.GetType(fullName);
metadataRef.Add(new MetadataFileReference(o.Assembly.Location));

抛出NotSupportedException

1 个答案:

答案 0 :(得分:1)

您正在尝试引用当前正在构建的程序集,我不认为Roslyn可以这样做。

您可以做的是从所有类中创建一个Compilation(可能每个类都有一个单独的SyntaxTree)。如果你这样做,你就不需要任何参考。