首页> C#>如何检查与CodeDom编译之前的编译错误
作者:互联网
我正在使用CodeDom允许自定义脚本(C#)在正在创建的应用程序中运行.
在编写脚本时,我希望能够检查编译错误.该代码被添加到内存中,并在以后的很多时间编译并运行,因此我不希望在编写脚本时将程序集编译保留在内存中.
实现此目标的最佳方法是什么?
编译后是否可以从内存中删除程序集?
private void Item_Click(object sender, EventArgs e)
{
List<string> assemblyNames = new List<string> { };
List<string> code = new List<string> { };
foreach (string str in GetCompileParameters())
if (!assemblyNames.Contains(str))
assemblyNames.Add(str);
code.AddRange(GetScriptCode());
CodeDomProvider provider = new Microsoft.CSharp.CSharpCodeProvider();
CompilerParameters mCompileParams = new CompilerParameters(assemblyNames.ToArray());
mCompileParams.GenerateInMemory = true;
mCompileParams.CompilerOptions = "/target:library /optimize";
CompilerResults results = provider.CompileAssemblyFromSource(mCompileParams, code.ToArray());
if (results.Errors.HasErrors)
{
string error = "The following compile error occured:\r\n";
foreach (CompilerError err in results.Errors)
error += "File: " + err.FileName + "; Line (" + err.Line + ") - " + err.ErrorText + "\n";
MessageBox.Show(error);
return;
}
MessageBox.Show("No errors found");
//Need to Remove assembly here
}
更新:
谢谢基思.
对于任何有兴趣的人,这是我与罗斯林一起使用的新代码
using Roslyn.Compilers;
using Roslyn.Compilers.CSharp;
...
private void Item_Click(object sender, EventArgs e)
{
List<string> assemblyNames = new List<string> { };
foreach (string str in GetCompileParameters())
if (!assemblyNames.Contains(str))
assemblyNames.Add(str);
SyntaxTree tree = SyntaxTree.ParseCompilationUnit(mScenario.GetScriptCode("ScriptName"));
Compilation com = Compilation.Create("Script");
com = com.AddReferences(new AssemblyFileReference(typeof(Object).Assembly.Location)); // Add reference mscorlib.dll
com = com.AddReferences(new AssemblyFileReference(typeof(System.Linq.Enumerable).Assembly.Location)); // Add reference System.Core.dll
com = com.AddReferences(new AssemblyFileReference(typeof(System.Net.Cookie).Assembly.Location)); // Add reference System.dll
foreach (string str in assemblyNames)
com = com.AddReferences(new AssemblyFileReference(str)); // Add additional references
com = com.AddSyntaxTrees(tree);
Diagnostic[] dg = com.GetDiagnostics().ToArray();
if (dg.Length > 0)
{
string error = "The following compile error occured:\r\n";
foreach (Diagnostic d in dg)
error += "Info: " + d.Info + "\n";
MessageBox.Show(error, "Compile Failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
} else {
MessageBox.Show("No errors found.", "Code Compiler", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
解决方法:
您可以使用新发布的http://msdn.microsoft.com/en-us/roslyn
标签:roslyn,compiler-construction,net-assembly,codedom,c 来源: https://codeday.me/bug/20191202/2086623.html