如何管理 VS C# Express 中发布和构建常用的文件?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(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"