There is a .Net project that compiles a Dll library when compiled.
And there are many other projects that use this library.
The problem is to maintain the current version of this library in all projects. It is difficult to track where some dll is used (from Debag or Release) + the path to Dll changes periodically (the library project and projects using it are in SVN and when downloading to another PC all links to the library have to be updated)
I wish that after compiling the Dll of the library it was registered in the system or in some other way became available for connection through the link manager VisualStudio (Project-> add link)
Setting the checkbox next to "Registration for COM interaction" (Project properties-> Assembly) solves the problem by 50%. Dll is added to the list of libraries on the COM tab in the link manager. But when you try to add a library to the project, it gives an exception.
Question: How to automatically register dll library after each assembly?
PS: I believe that you can achieve what you want by describing the studio what to do after a successful compilation (project properties-> build events), but I don’t know how to write there to achieve the desired, and I don’t even know how to correctly formulate the Google question.