コマンドラインからMSTestを使用して単体テストを実行し、TFSサーバーで結果を公開しようとしています。問題は、MSTestが常に次を返すことです。
Publishing results of test run buildmachine@XXX-XXXXXXX 2010-12-16 11:39:13_Release_Any
CPU to http://xxxx:8080/Build/v1.0/PublishTestResultsBuildService2.asmx...
.........................................................................................
Build 'xxx>xxx>x>x>x>xxxx>xxxx>x.x.x.xxx' does not include the specified
configuration ('Release/Any CPU').
問題は、指定された構成が存在する必要があることです。次のMSBuild設定でビルドしました。
<ConfigurationToBuild Include="Release|Any CPU">
<FlavorToBuild>Release</FlavorToBuild>
<PlatformToBuild>Any CPU</PlatformToBuild>
</ConfigurationToBuild>
何か案が?私はこれにうんざりし始めています。