我需要在asp.net mvc 5中运行时编译c#代码 使用此代码时抛出异常“找不到元数据MIS.dll”。 但当在控制台应用程序中使用代码时,我的代码运行没有错 通常,.NET中的任何命名空间本身都运行没有错误,并且会在我的mvc项目中手动生成或添加任何命名空间,从而抛出异常“metadata xyz not found”。
private static MethodInfo CreateRule(string rules)
{
string code = @"
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using MIS.Helper;
namespace UserFunctions
{
public class BinaryFunction
{
public static Rule Function()
{
var t=new Rule();
return func_xy;
}
}
}
";
string finalCode = code.Replace("func_xy", rules);
CSharpCodeProvider provider = new CSharpCodeProvider();
CompilerParameters parameters =
new CompilerParameters(new[] { "mscorlib.dll", "System.Core.dll","MIS.dll" })
{
GenerateInMemory = true,
GenerateExecutable = false
};
CompilerResults results = provider.CompileAssemblyFromSource(parameters, finalCode);
if (results.Errors.HasErrors)
{
var sb = new StringBuilder();
foreach (CompilerError error in results.Errors)
{
sb.AppendLine(String.Format("Error ({0}): {1}", error.ErrorNumber, error.ErrorText));
}
throw new InvalidOperationException(sb.ToString());
}
var binaryFunction = results.CompiledAssembly.GetType("UserFunctions.BinaryFunction");
return binaryFunction.GetMethod("Function");
}
答案 0 :(得分:0)
再次清洁和构建。如果仍然出现此错误,请删除bin文件夹,清理并重新构建。