TFS build problem: missing assembly in test output folder
Posted
by Herman
on Stack Overflow
See other posts from Stack Overflow
or by Herman
Published on 2010-02-09T22:25:25Z
Indexed on
2010/05/28
2:01 UTC
Read the original article
Hit count: 344
Hi all,
I am trying to integrate unit test cases with a TFS build in our new solution. I've include the following configuration line in my TFSBuild.proj
<ItemGroup>
<TestContainer Include="$(OutDir)\%2aTest.dll" />
</ItemGroup>
Which I think is the correct configuration since I only have 1 test project. However, when I do this, some dll is missing in the output folder of the test case, hence failing most of my test case. Has anyone run into this problem before?
Thanks!
© Stack Overflow or respective owner