gpt4 book ai didi

msbuild - 将bin文件夹的内容复制到特定文件夹中

转载 作者:行者123 更新时间:2023-12-02 14:30:02 25 4
gpt4 key购买 nike

到目前为止我已经有了这个,但它不起作用。

  <Target Name="AfterBuild">
<Copy SourceFiles="bin\" DestinationFolder="C:\temp\appServer\"></Copy>
</Target>

最佳答案

试试这个:

<ItemGroup>
<BinFiles Include="bin\**\*.*"/>
</ItemGroup>

<Target Name="AfterBuild">
<Copy SourceFiles="@(BinFiles)"
DestinationFolder="C:\temp\appServer\"/>
</Target>

关于msbuild - 将bin文件夹的内容复制到特定文件夹中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4215473/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com