The referenced component "System.Core" was not found?

0

The referenced component "System.Core" could not be found?

I'm having this error how can I resolve it?

link

    
asked by anonymous 14.02.2016 / 18:34

2 answers

2

The library System.Core is not referenced in your project, you might try one of the attempts below, all are in the project properties page (how do I go there?)

Method1

Let'schangetheFrameworkTargetofyourproject,gototheApplicationtabandchangewhatisinTargetFrameworktothelargest

Method2

ManuallyreferencetheSystem.Corelibraryinyourproject.GototheReferencestabandclicktheAddbutton.

SelectontheAssemblies>FrameworkandSystem.CoreoptionsandthenclickOK.

Method3

RemovetheassemblySystem.Coreandtryrunningyourprojectwithoutit.

    
14.02.2016 / 19:06
-2

Unfortunately there is no solution, the System.Core namespace is only available from the 3.5 version of the framework, or you upgrade to version 3.5 or you will have to provide other means to do what you intended.

    
14.02.2016 / 19:13