如何管理 VS C# Express 中发布和构建常用的文件?

发布于 2024-08-05 01:34:59 字数 141 浏览 6 评论 0原文

我在 VS C# Express 2008 中有一个 C# 控制台应用程序。该程序需要在运行时读取一些文件,为了方便起见,我希望将其放置在与 .EXE 相同的目录中。但当然有两个 .EXE,一个是调试的,一个是发布的,我不想复制所有内容。管理这个问题的最佳方法是什么?

I have a C# Console app in VS C# Express 2008. The program needs to read a few files at runtime, which I would like to place in the same directory as the .EXE for convenience. But of course there are two .EXEs, one debug and one release, and I don't want to copies of everything. What's the best way to manage this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

您只需更改两个配置的输出路径即可仅使用“bin\”。

-- 或者 --

您可以将文件添加到项目中,右键单击并将“复制到输出目录”设置为“始终”

You could just change the output path of both configurations to use just 'bin\'.

-- or --

You could add the files to the project, right-click, and set "Copy to Output Directory" to "Always"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文