I have a C# Windows Forms project in which I use a component that I obtained through nuget. Now I was wondering what is the correct way of adding this component to the toolbox in the designer. Should I make a separate copy of the component on my hdd and add it from there or should I just add it from the project's packages folder or maybe do something different entirely?
I was wondering if:
- having a separate copy of the component won't cause problems if I use a newer version of the component in another project?
- using the copy from packages folder and then deleting, moving the project, won't that cause problems with the toolbox?