Have a vs solution which is shared among a number of developers via git repo.
We have a dll that is an sdk for a client that we need for this project. Unfortunately no Nuget for this dll.
Dlls are setup to be ignored by git so I can't just put it in the bin folder as it would get dropped by source control. Is there a good way store a copy of this dll somewhere in the project and always copy it on build/rebuild to the bin folder.
A lib folder or something like that?