visual-studio 在visual studio中显示文件夹
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1613461/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Display a folder in visual studio
提问by zachary
I have a folder with a group of 3rd dlls that I want to show up in Visual Studio. The reason being that I am using VisualSvn and I want to be able to see when these have been updated from within visual studio.
我有一个文件夹,其中包含一组我想在 Visual Studio 中显示的第 3 个 dll。原因是我使用的是 VisualSvn,我希望能够看到这些已从 Visual Studio 中更新的时间。
回答by adrianbanks
If you enable the "Show All Files" option (by either choosing it from the Project menu or clicking the icon at the top of the Solution Explorer), files not in you project will be shown in the tree, but with a white icon.
如果启用“显示所有文件”选项(通过从“项目”菜单中选择它或单击“解决方案资源管理器”顶部的图标),不在项目中的文件将显示在树中,但带有白色图标。
This gives you a view of the project folder, including all of the files that are not part of your project. You should then be able to see the directory containing your 3rd party dlls and its contents.
这为您提供了项目文件夹的视图,包括不属于您的项目的所有文件。然后,您应该能够看到包含第 3 方 dll 及其内容的目录。
回答by LiamB
In the solution explorer there is an icon at the top. (third from the left i think).
在解决方案资源管理器中,顶部有一个图标。(我认为从左数第三个)。
This will show all files in VS
这将显示 VS 中的所有文件
Edit: Beaten to it.
编辑:被打败了。
回答by Moosefeather
For Mac: Go to View => Pads => Solution
对于 Mac:转到查看 => Pads => 解决方案

