在版本控制 Visual Studio 中放置 Dll 的位置
我当前的结构如下
- /Project Name/
- file1.cs
- file2.cs
- project.sln
- Libraries/
我知道常见的答案是将 Libraries 文件夹放在 /Project Name/ 文件夹中,如上所示。这是正确的吗?
如果是这样,在我的项目中添加引用时是否需要执行任何特殊操作?我需要为“复制本地”选项设置什么?谢谢。
My Current structure is as follows
- /Project Name/
- file1.cs
- file2.cs
- project.sln
- Libraries/
I know the common answer is to put a Libraries folder within the /Project Name/ folder as shown above. Is this correct?
If so, do I need to do anything special when adding the references in my project? What do I need to set for the "Copy Local" option? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有关第一个问题的答案,请参阅 .NET 项目版本控制中第三方 Dll 的位置。
对于你的第二个问题:没有什么特别需要做的;在 Visual Studio 中添加引用(使用“浏览”选项卡)将自动设置要复制到输出文件夹的程序集 DLL。
For an answer to the first question, see Location of Third Party Dll's in Version Control for .NET Project.
For your second question: nothing special needs to be done; adding a Reference in Visual Studio (using the Browse tab) will automatically set up the assembly DLL to be copied to the output folder.