Error using a "dynamic" keyword in a Silverlight application

I get the following error: "One or more of the types needed to compile a dynamic expression cannot be found. Are there no links to Microsoft.CSharp.dll and System.Core.dll files"

I have System.Core.dll, do I have to find Microsoft.CSharp somewhere? It was not part of the project, and it is not in the list of links.

+3
source share
2 answers

Must be: C:\Program Files\Microsoft SDKs\Silverlight\v4.0\Libraries\Client\

+7
source

You might want to check out this blog post . There are version conflicts with Silverlight 4 and VS 2010 RC 1 that can cause this problem.

+2

Source: https://habr.com/ru/post/1735744/


All Articles