I am a new developer and I am not sure how I have broken my application. My asp.net application has somehow lost reference to the System library. When I build it throws hundreds of errors and every error asks me to change any System reference to a Global.System reference. Such as:
Error 4 Type 'System.Data.Linq.DataContext' is not defined.
This is not specific to any child of System, it's every System reference on any piece of code in the whole application.
I'm using Visual Studio 2013 for Web with a Target Framework of 4.5. Here is an image of my "references" portion of the my solution.
The System.dll file is present in that location. Please advise.
EDIT I think Mark was on the right path, I simply created a new project and added the relevant existing items into the new project. This removed whatever conflict I inadvertently created.