“Missing compiler required member” error being thrown multiple times with almost no changes to code

后端 未结 12 1243
既然无缘
既然无缘 2020-12-13 22:46

Today after deploying some changes to a C# MVC site that I run, I went back to make some more modifications and came across this error:

Missing compil

12条回答
  •  情深已故
    2020-12-13 23:26

    Probably you use dynamic keyword In .NetStandard Class library project. If so, you need to add a reference to Microsoft.CSharp library in the project. Hope it will resolve your problem.

提交回复
热议问题