如何在项目中包含/引用文件而不将其复制到项目目录?
我正在 Visual Studio 2008 中编写一个应用程序。 我有一个帮助文件,我想将其包含在项目的输出中。 我希望帮助文件的最新版本保留在不是我的 Visual Studio 项目目录的文件夹中。例如 C:/Helpfiles。
我想将此文件包含在我的 Visual Studio 项目中,以便在构建项目时在项目输出中获得该文件的最新版本(位于 C:/helpfiles 中)。如果我只是“添加现有”并选择帮助文件,它会在每次构建时从 C:/helpfiles 获取最新版本吗?
I am writing an application in Visual Studio 2008.
I have a help file that I want to be included in the output of my project.
I want the most recent version of my help file to stay in a folder that is not my visual studio project directory. For example C:/Helpfiles.
I want to include this file in my Visual studio project so that when I build the project I get the most recent version of the file (which is in C:/helpfiles) in my project output. If I just "add existing" and select the help file will it grab the latest version from C:/helpfiles every time I build?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您转到“添加”对话框时,选择文件,然后不要单击“添加”,而是单击下拉箭头并选择“添加为链接”:
这会将文件保留在原始位置而不是将其复制并导入到当前项目中。
When you go to the "Add" dialog, select the file, then instead of clicking add, click the drop down arrow and select "Add as link":
This will keep the file in the original location and not copy and import it into the current project.