Reputation: 3936
I loaded some old assemblies in my project yesterday and now when i cannot load them, they appear with a yellow mark on them in the references. I have no idea what the hell i am doing wrong. I really need some help.
Upvotes: 0
Views: 143
Reputation: 131676
If you open the Property Toolwindow and click (select) the assmeblies in referneces that show up with a yellow mark, you will see an entry in the property toolwindow for Path
. This is the path that Visual Studio is using to locate the assembly. If the assembly doesn't exist there - you'll get this kind of error.
To fix the problem, either:
Upvotes: 0
Reputation: 8278
when they appear with the yellow mark it means they cannot be found, look at their properties and check that they exist in the place they should. if they dont then re-reference them from another place they exist
Upvotes: 1