gpt4 book ai didi

c# - 如何在输出目录中获取 C# 库文件?

转载 作者:行者123 更新时间:2023-12-05 01:51:18 24 4
gpt4 key购买 nike

我有几个项目的解决方案:

  1. library.dll 和 something.json
  2. webapp.dll
  3. winapp.exe

2 和 3 依赖于 1,而不是相互依赖。

我想复制something.json到winapp.exe的bin目录下

但是,将属性设置为 ContentCopy always 并没有达到我的预期。

enter image description here

最佳答案

您可以使用 winapp.exe 的构建后事件命令行来指示将该文件复制到您的目标目录中

像这样

xcopy /Y  $your path of something.json $(TargetDir).

something.json 的路径 更改为您的实际路径。

记住你有一组有用的链接

  • (TargetDir) = 编译项目的位置
  • (SolutionDir) = 您磁盘上的解决方案路径
  • (ProjectDir) = 您磁盘上的项目路径

关于c# - 如何在输出目录中获取 C# 库文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72374387/

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