如何关闭为 Visual Studio 中新添加的项目创建子文件夹?
当我尝试通过浏览文件夹在 solutin 文件夹中添加新项目时,假设
..\MyFolder
并为我的新项目添加一个新项目:MyProject
结果似乎是:
。 .\MyFolder\MyProject\MyProject.cspoj
但我想实现
..\MyFolder\MyProject.cspoj
并且我在新项目上看不到任何选项或复选框插件对话框。
如何关闭将新项目插入自动创建的子文件夹中的功能?
谢谢!
When I try to add a new project in a solutin folder by browsing a folder, let's say
..\MyFolder
and give a new to my new Project: MyProject
The result seems to be:
..\MyFolder\MyProject\MyProject.cspoj
but I want to achieve
..\MyFolder\MyProject.cspoj
And Icannot see any option or check-box on new project addin dialog box.
How can I turn of the feature to insert the new project in a auto-created subfolder?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。从逻辑上讲,VS 为代码所在的每个项目创建单独的文件夹。它还将项目文件保存在同一目录中,以便于使用和移植。但是,您可以手动将项目文件移动到所需位置,但必须更新解决方案/引用。
You cannot. Logically VS creates seperate folder for each project where code resides. It also keeps the project file in same directory for ease of use and portability. You can however manually move the projects file to desired location but have to update solution/references.