Click here to Skip to main content
16,020,343 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Could not load file or assembly 'System.Core, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e, Retargetable=Yes' or one of its dependencies. The given assembly name or codebase was invalid. (Exception from HRESULT: 0x80131047)

What I have tried:

<customErrors mode="Off" />
Posted
Updated 23-Jan-20 21:19pm

1 solution

This is telling you that you don't have the version of .NET containing System.Core 2.0.5.0 available on the machine this is running on, and you don't have copies of this in the GAC. Either update your source code to use a version of .NET that is installed on the target, or install that version.
 
Share this answer
 
Comments
Member 14660742 24-Jan-20 4:12am    
But when i refresh the URL its works fine.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900