我在 Google 测试项目中有一些单元测试。我想将这些测试作为我的 msbuild 脚本的一部分运行。我已将以下内容添加到我的vcxproj
文件中:
<Target Name="AfterBuild">
<Exec Command=""$(TargetPath)""
IgnoreExitCode="true"
IgnoreStandardErrorWarningFormat="true"
CustomWarningRegularExpression=": error:"/>
</Target>
不幸的是,由于 没有输入或输出Exec
,它只运行一次,并且永远不会导致vcxproj
自身被标记为过时。
如何强制它Exec
始终过时(以便它运行每个构建)?