gpt4 book ai didi

c# - Visual Studio : How to "Copy to Output Directory" without copying the folder structure?

转载 作者:IT王子 更新时间:2023-10-29 03:37:57 26 4
gpt4 key购买 nike

我的项目文件夹的\lib 文件夹中有一些 dll 文件。在dll的属性页中,我选择了“Build Action”作为“Content”,“Copy to Output Directory”作为“Copy always”。

构建后,我实际上复制了 dll,但它们在\bin\Release\lib 中,而不是在\bin\Release 中。

有没有一种方法可以将 dll 文件复制到\bin\Release(而不是\bin\Release\lib),而无需编写构建后脚本或求助于 nant 等?

最佳答案

而不是 <Content>使用 <ContentWithTargetPath>并指定目标路径,如下所示:

<ItemGroup>
<ContentWithTargetPath Include="lib\some_file.dat">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>some_file.dat</TargetPath>
</ContentWithTargetPath>
<None Include="lib\some_file.dat" />
</ItemGroup>

请注意,此条目可能无法从 Visual Studio(2012、2015、2017)中看到,但一旦手动添加到 csproj,它将出现在 Visual Studio 中。不过,目标路径将无法通过 UI 进行编辑。

添加 <None>该文件的条目将确保它仍然显示在 Visual Studio 的 UI 中。

关于c# - Visual Studio : How to "Copy to Output Directory" without copying the folder structure?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18743907/

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