views:

81

answers:

1

I am implementing multiple custom checkin policies for TFS and I am wondering if they all need to be in the same assembly or if I have to put each one in its own assembly.

+1  A: 

It doesn't matter. As long as they implement the appropriate base class and implement the interfaces.

See Create Custom Check-in Policies

Mr. Kraus