Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I can't add reference in Visual Studio 2017

I'm having issues right now on adding reference in Visual Studio 2017. So basically, I clicked on my project to show the collapsed menu where you can see folders, properties, and references. I right clicked References and chose Add reference. An error shows up and it says "The operation could not be completed. No such interface supported".

I'm currently using Microsoft Visual Studio Community 2017 Version 15.2.

like image 524
Peter John Paul Tactacan Avatar asked Jul 10 '17 08:07

Peter John Paul Tactacan


2 Answers

This thread helps me resolve the issue:

https://developercommunity.visualstudio.com/content/problem/28126/unable-to-add-reference-in-visual-studio-2017-refe.html

Just to sum it up, the thread says that I need to add a certain .dll file on the cache for me to add References. Not sure why this issue occur but I hope it helps anyone who encounters the same issue.

like image 167
Peter John Paul Tactacan Avatar answered Nov 16 '22 20:11

Peter John Paul Tactacan


The above answer didn't work for me. And despite me getting the same error message as the OP (and the person on the Microsoft forum), I was not getting any information in Visual Studio's ActivityLog.xml file.

I ended up having to pack my .dll in a NuGet package and add it to the project in that way. These links were helpful:

https://www.jweiler.com/create-nuget-packages-with-vs-2017/

https://stackoverflow.com/a/48549013/253938

like image 40
RenniePet Avatar answered Nov 16 '22 18:11

RenniePet