I get a lot of "Duplicate identifier" errors in Visual Studio 2013 which make my code unreadable since I installed Resharper 9.
The only reason I can see that there are duplicate errors, is that in another project, these files are included and thus compiled another time. But it should not interfere. Even when I unload the "dependent" project, I still get these annoying highlighting errors. IPosition is not only the only one affected, ILabel, ILabelExample, etc. all got the same error on all fields.
These errors are highlighted in the code, but not in the error list - and compilation is fine.
Related questions:
What setting should I change to make them disappear? Thank you for helping.
Try checking the bin
folder. It can contain .ts
files and it generates duplication. You need to add the bin
folder to the exclusion list. Something like this:
....
"exclude": [
"node_modules",
"wwwroot/lib",
"bin"
]
....
This is fixed in ReSharper 2016.2.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With