Reputation: 33050
I change debugging info to also debug files I do not write. I get this error
Basically it try to find .cs files in some f drive
I am pretty sure I never tell visual studio that the cs file should be in f drive. I have no idea why they look there.
What will be the easiest way to fix this problem?
Upvotes: 2
Views: 168
Reputation: 8785
Hans Passant comment is right.
Do you want to know from where is that path taken by VS?
It is in the metadata of the assembly. Open it with Ildasm or dotPeek, browse its metadata and you will find that path somewhere.
Upvotes: 1