How to check in assemblies in TFS source control
When using custom assemblies in a visual studio project. How does one check in those assemblies in sou开发者_JAVA百科rce control with the project so that anyone can download the project and build right away.
You could do something like this:
- Create a folder called something like libraries
- Put your custom assemblies in to that folder
- Make sure your references point to the assemblies in that folder
At that point you should be able to include that folder with those assemblies in your source control.
精彩评论