编译文件中已编译的类
本文关键字:编译 文件 | 更新日期: 2023-09-27 18:15:18
我有一个运行时编译类的问题。我有这样的东西2类:
一级
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
您试图引用当前正在构建的程序集,我认为Roslyn无法做到这一点。
相反,您可以从所有类中创建一个Compilation
(可能每个类都有一个单独的SyntaxTree
(。如果你这样做,你就不需要任何参考资料了。