我目前正在尝试构建一个 C++ 库,我想要的是每次按下构建按钮时,我都会将所有包含文件移动到某个目录。
我目前拥有的是这个
<Target Name="CopyToIncludeFiles">
<Message Text="Copying All '*.h' and '*.hpp' to the include directory" Importance="high">
</Message>
<Copy SourceFiles="@(ClInclude)" DestinationFolder="..\HelperLib\x86\include\">
</Copy>
</Target>
我将目标包含在 DefaultTargets 喜欢这样
<Project ToolsVersion="4.0" DefaultTargets="Build;CopyToIncludeFiles;" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
只要我使用重建,这一切都可以正常工作,但是当我刚刚点击构建时它永远不会运行。
无论我点击构建还是重建,我都需要做什么才能运行?