开发者

tfs Run multiple test during daily build in tfsbuild.proj

I have one build definition (TFS 2008), with two solutions in it:

TFSBuild.proj:

<SolutionToBuild Include="$(BuildProjectFolderPath)/../../ProdigyUtils/Development/ProdigyUtils.sln">
    <Targets></Targets>
    <Properties></Proper开发者_C百科ties>
</SolutionToBuild>
<SolutionToBuild Include="$(BuildProjectFolderPath)/../../ProdigyUtils/Release 01.00/ProdigyUtils.sln">
    <Targets></Targets>
    <Properties></Properties>
</SolutionToBuild>

These 2 solutions have there own .vsmdi file for the daily unit tests.

If I put one of the .vsmdi files into the tfsbuild.proj file:

<MetaDataFile Include="$(BuildProjectFolderPath)/../../ProdigyUtils/Development/ProdigyUtils.vsmdi">
    <TestList>Daily Debug</TestList>
</MetaDataFile>

The tests of the SECOND solution is executed by the daily build. Yes, NOT the .vsmdi file of "Development" is used, but the .vsmdi file of "Release 01.00"

Is there a way to run both test .vsmdi files in the daily build?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜