我已经在项目中定义了 postbuildevent,它在本地运行良好,但是当从 Teamcity 调用时,它没有调用以下事件:-
<PropertyGroup>
<PostBuildEvent>xcopy /Y /E "$(TargetDir)\Shared\Scripts" "$(ProjectDir)\Shared\Scripts"</PostBuildEvent>
</PropertyGroup>
<PropertyGroup>
我尝试在 teamcity 的 msbuild 配置中通过命令行参数传递,但这也不起作用
/M /P:Configuration=%system.Configuration% /P:PostBuildEvent="xcopy /Y /E "$(TargetDir1)\Shared\Scripts" "$(ProjectDir1)\Shared\Scripts""
请指导。