C# tfs在tfsbuild.proj中的每日生成期间运行多个测试

C# tfs在tfsbuild.proj中的每日生成期间运行多个测试,c#,tfs,tfsbuild,visual-studio-2008,C#,Tfs,Tfsbuild,Visual Studio 2008,我有一个构建定义(TFS 2008),其中包含两个解决方案: TFSBuild.proj: <SolutionToBuild Include="$(BuildProjectFolderPath)/../../ProdigyUtils/Development/ProdigyUtils.sln"> <Targets></Targets> <Properties></Properties> </SolutionToBui

我有一个构建定义(TFS 2008),其中包含两个解决方案:

TFSBuild.proj:

<SolutionToBuild Include="$(BuildProjectFolderPath)/../../ProdigyUtils/Development/ProdigyUtils.sln">
    <Targets></Targets>
    <Properties></Properties>
</SolutionToBuild>
<SolutionToBuild Include="$(BuildProjectFolderPath)/../../ProdigyUtils/Release 01.00/ProdigyUtils.sln">
    <Targets></Targets>
    <Properties></Properties>
</SolutionToBuild>

这两个解决方案都有自己的.vsmdi文件用于日常单元测试

如果我将其中一个.vsmdi文件放入tfsbuild.proj文件中:

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

日常调试
第二个解决方案的测试由每日构建执行。是的,使用的不是“Development”的.vsmdi文件,而是“Release 01.00”的.vsmdi文件

是否有办法在每日生成中同时运行test.vsmdi文件