0
The referenced component "System.Core" was not found?
I’m with this error how can I fix?
0
The referenced component "System.Core" was not found?
I’m with this error how can I fix?
2
The library System.Core
is not referenced in your project, you should try one of the below attempts, all are on the project properties page (as I go there?)
Let’s change the Framework Target of your project, go to the guide Application and change what is on Target Framework
to the greatest:
Manually reference the library System Core. in your project. Go to the guide References and click the button Add.
Select on the tab Assemblies > Framework the options System and System Core. and then click on OK.
Remove the Assembly System.Core
and try to run your project without her.
-2
Unfortunately there is no solution, namespace System.Core
is only available from the version 3.5
framework, either you upgrade to version 3.5 or you will have to provide other means of doing what you intended.
Can I know the reason for the negativities? since I am sure that my information precedes.
Browser other questions tagged c#
You are not signed in. Login or sign up in order to post.
Thanks worked method 1 :)
– user39571