使用 Roslyn 以编程方式编译源代码
Programmatically compiling source code using Roslyn
所以我一直在尝试用 Roslyn 以编程方式编译一段代码。由于某些原因,我添加的参考文献并没有出现在汇编 class 中。所以当我在使用 'AddReferences' 后查看引用的程序集时,列表是空的。因此,当我尝试发出时,我得到 "Object" not defined in the diagnostics。谁能指出我的问题?
Microsoft.CodeAnalysis.SyntaxTree syntaxTree = CSharpSyntaxTree.ParseText(@"
public static class Program
{
public static void Main()
{
System.Console.WriteLine(""Hello"");
}
}
");
string autoreferences = @"mscorlib.dll,System.Core.dll";
List<string> usings = new List<string>();
string netAssembliesDirectory = Path.GetDirectoryName(typeof(object).Assembly.Location);
var refs = new List<string>();
foreach (string reference in autoreferences.Split(','))
refs.Add(netAssembliesDirectory + "\" + reference);
CSharpCompilation compilation = CSharpCompilation.Create("ConsoleTest")
.WithOptions(
new CSharpCompilationOptions(OutputKind.ConsoleApplication).WithUsings("System"))
.AddSyntaxTrees(syntaxTree);
compilation.AddReferences(refs.Where(r => r != "").Select(r => MetadataReference.CreateFromFile(r)));
var er = compilation.Emit(@"C:\" + "ConsoleTest");
Roslyn 对象是不可变的。
compilation.AddReferences()
returns 具有这些引用的新编译实例。
你忽略了那个新实例。
您需要在包含您的引用的编译实例上调用 Emit()
。
所以我一直在尝试用 Roslyn 以编程方式编译一段代码。由于某些原因,我添加的参考文献并没有出现在汇编 class 中。所以当我在使用 'AddReferences' 后查看引用的程序集时,列表是空的。因此,当我尝试发出时,我得到 "Object" not defined in the diagnostics。谁能指出我的问题?
Microsoft.CodeAnalysis.SyntaxTree syntaxTree = CSharpSyntaxTree.ParseText(@"
public static class Program
{
public static void Main()
{
System.Console.WriteLine(""Hello"");
}
}
");
string autoreferences = @"mscorlib.dll,System.Core.dll";
List<string> usings = new List<string>();
string netAssembliesDirectory = Path.GetDirectoryName(typeof(object).Assembly.Location);
var refs = new List<string>();
foreach (string reference in autoreferences.Split(','))
refs.Add(netAssembliesDirectory + "\" + reference);
CSharpCompilation compilation = CSharpCompilation.Create("ConsoleTest")
.WithOptions(
new CSharpCompilationOptions(OutputKind.ConsoleApplication).WithUsings("System"))
.AddSyntaxTrees(syntaxTree);
compilation.AddReferences(refs.Where(r => r != "").Select(r => MetadataReference.CreateFromFile(r)));
var er = compilation.Emit(@"C:\" + "ConsoleTest");
Roslyn 对象是不可变的。
compilation.AddReferences()
returns 具有这些引用的新编译实例。
你忽略了那个新实例。
您需要在包含您的引用的编译实例上调用 Emit()
。