我修改了昨天发布的新版Roslyn附带的示例,以使用动态和ExpandoObject,但我收到编译错误,我不知道如何修复。错误是:
(7,21):错误CS0656:缺少编译器所需的成员'Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create'
你能否在新的编译器中使用动态?我怎样才能解决这个问题?以下是我更新的示例:
[TestMethod]
public void EndToEndCompileAndRun()
{
var text = @"using System.Dynamic;
public class Calculator
{
public static object Evaluate()
{
dynamic x = new ExpandoObject();
x.Result = 42;
return x.Result;
}
}";
var tree = SyntaxFactory.ParseSyntaxTree(text);
var compilation = CSharpCompilation.Create(
"calc.dll",
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
syntaxTrees: new[] {tree},
references: new[] {new MetadataFileReference(typeof (object).Assembly.Location), new MetadataFileReference(typeof (ExpandoObject).Assembly.Location)});
Assembly compiledAssembly;
using (var stream = new MemoryStream())
{
var compileResult = compilation.Emit(stream);
compiledAssembly = Assembly.Load(stream.GetBuffer());
}
Type calculator = compiledAssembly.GetType("Calculator");
MethodInfo evaluate = calculator.GetMethod("Evaluate");
string answer = evaluate.Invoke(null, null).ToString();
Assert.AreEqual("42", answer);
}
答案 0 :(得分:216)
我认为你应该参考Microsoft.CSharp.dll
汇编
答案 1 :(得分:7)
ASP.NET MVC特定:
如果忘记将[FromBody]
放入POST
方法,则可以在MVC 6控制器中出现此错误。
[HttpPost("[action]")]
public void RunReport([FromBody]dynamic report)
{
...
}
.NETCore默认项目已包含Microsoft.CSharp
引用,但您可以获得相同的消息。
添加[FromBody]
后,您现在可以发布JSON,然后动态访问属性: - )
答案 2 :(得分:4)
要使代码在.Net Core 2.1中工作,我必须在编译中添加以下引用:
var compilation = CSharpCompilation.Create(
"calc.dll",
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
syntaxTrees: new[] {tree},
references: new[] {
MetadataReference.CreateFromFile(typeof(object).Assembly.Location),
MetadataReference.CreateFromFile(typeof(ExpandoObject).Assembly.Location),
MetadataReference.CreateFromFile(Assembly.Load(new AssemblyName("Microsoft.CSharp")).Location),
MetadataReference.CreateFromFile(Assembly.Load(new AssemblyName("netstandard")).Location),
MetadataReference.CreateFromFile(Assembly.Load(new AssemblyName("mscorlib")).Location),
MetadataReference.CreateFromFile(Assembly.Load(new AssemblyName("System.Runtime")).Location),
}
);
答案 3 :(得分:3)
您可能还想检查所有项目引用的属性。 确保任何引用都使用比2.0更新的.NET。我有一个项目在同一个解决方案中引用另一个项目,并且必须使用较新的.NET框架目标重建依赖项。
请参阅此post。
另外,不要忘记将@ {1}}引用添加到主项目中,如@Alberto所说。
答案 4 :(得分:0)
如果您的项目面向.Net Core或.Net Standard,则可以添加Microsoft.CSharp NuGet软件包来解决此错误,而无需添加引用。