ybdev
ybdev

Reputation: 25

TFS template customization - missing assembly

I have to customize TFS2010 default build proccess template. To work with Workflow Activity Library, I need to add a reference to C:\Windows\assembly\GAC_MSIL\Microsoft.TeamFoundation.TestImpact.Client\10.0.0.0__b03f5f7f11d50a3a\ Microsoft.TeamFoundation.TestImpact.Client.dll. But the folder Microsoft.TeamFoundation.TestImpact.Client doesn't exist in my GAC_MSIL folder or somewhere else. I have VS Ultimate. Is there any settings or upgrades i'm missing?

Upvotes: 1

Views: 863

Answers (1)

kroonwijk
kroonwijk

Reputation: 8410

This is a nice one :-)

The file is in a hidden piece of your drive. And with hidden, I do not mean that you can get it visible by unhiding all system files! No, it it actually hidden behind the custom list of GAC registered assemblies you can see at C:\Windows\assembly.

What to do: 1. Start windows explorer. 2. Paste C:\Windows\assembly\GAC_MSIL in the location bar and press enter.

Et voila, there is your list of GAC assemblies in a file formatted list, you can copy to your project space, or reference from your project directly.

enter image description here

Super hidden!

Upvotes: 3

Related Questions