Rire1979
Rire1979

Reputation: 652

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 source control with the project so that anyone can download the project and build right away.

Upvotes: 0

Views: 182

Answers (1)

CAbbott
CAbbott

Reputation: 8098

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.

Upvotes: 5

Related Questions