I have a build that produces artifacts for 3 projects, one folder per project. So, the published artifact folder structure is, say, A\*.dll, B\*.dll, C\*.dll.
I have another build that depends on it and wants to just retrieve artifacts from project A. I set up the dependency as "A\*.* => ." but that results in the "A" folder being copied over rather than just its contents. Is there a way to retrieve just the contents of the folder into the checkout dir of my second build?
Thanks.