Visual Studio Extension to map Solution Folders to Real Folders - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T19:26:30Z http://stackoverflow.com/feeds/question/491751 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/491751/visual-studio-extension-to-map-solution-folders-to-real-folders 6 Visual Studio Extension to map Solution Folders to Real Folders Michael Stum 2009-01-29T14:18:39Z 2009-09-24T22:04:09Z <p>In an <a href="http://stackoverflow.com/questions/267200/">earlier question</a>, I've found out that sadly Solution Folders are not real folders inside a directory.</p> <p>I wonder if there is an AddOn or Macro that adds this functionality? i.e. when I create a Solution Folder, it created a real folder. When I Create a new Item (Right Click => Add => New Item) it automatically moves them into that folder, removing causes it to delete it from disk (after asking) etc.</p> <p>This is for Visual Studio 2005, although we might upgrade to 2008 in a few months.</p> http://stackoverflow.com/questions/491751/visual-studio-extension-to-map-solution-folders-to-real-folders/492934#492934 1 Answer by Conrad for Visual Studio Extension to map Solution Folders to Real Folders Conrad 2009-01-29T18:59:44Z 2009-01-29T18:59:44Z <p>I too thought it was a strange idea. However it can be a useful tool to logically group projects in solutions without necessarily moving around folders in the file system.</p> http://stackoverflow.com/questions/491751/visual-studio-extension-to-map-solution-folders-to-real-folders/839901#839901 -1 Answer by ChrisBD for Visual Studio Extension to map Solution Folders to Real Folders ChrisBD 2009-05-08T13:57:19Z 2009-05-08T13:57:19Z <p>I didn't really use VS2005 much, but have been using VS2008 for the past year.</p> <p>It has a tick box for creating a solution folder when you create a new solution/project.</p> <p>If you then use the "Solution Explorer" window you can create and manipulate folders and class files within them. This will actually create new directories that match.</p> <p>Deletion of files from within the Solution Explorer will also delete the actual files from disk.</p> http://stackoverflow.com/questions/491751/visual-studio-extension-to-map-solution-folders-to-real-folders/844216#844216 1 Answer by GregC for Visual Studio Extension to map Solution Folders to Real Folders GregC 2009-05-09T22:32:59Z 2009-05-09T22:32:59Z <p>I suspect you need this for revision control tool. In that case Look at AnkhSVN.</p> http://stackoverflow.com/questions/491751/visual-studio-extension-to-map-solution-folders-to-real-folders/846262#846262 0 Answer by Shuoling Liu for Visual Studio Extension to map Solution Folders to Real Folders Shuoling Liu 2009-05-10T22:48:52Z 2009-05-10T22:48:52Z <p>Can't really get the point you want to add this function. </p> <p>Sometimes you want to know if it can do this , however, the answer may be no. But it is not necessary means you can't achieve your original goal, there still a few ways to work around it without this.</p> <p>Additionally, VS solution suppose to be the shortcut of your project settings and should not been included in any hard-code, the solutions may be various between the PCs and IDE envrionment.</p> http://stackoverflow.com/questions/491751/visual-studio-extension-to-map-solution-folders-to-real-folders/1474412#1474412 0 Answer by Duarte Leão for Visual Studio Extension to map Solution Folders to Real Folders Duarte Leão 2009-09-24T22:04:09Z 2009-09-24T22:04:09Z <p>Maybe what you want is to add files to a solution folder as «links», i.e., keeping the files where they are but giving them a different organization inside the solution. (when you add an existing file to a solution folder or to a normal project folder, if it is in a different corresponding physical folder, the file is copied). It usually stays unnoticed, an option in the «Add > Existing Item ...» dialog where you can choose "Add As Link", instead of the "Add". This allows to share files amongst projects, or, simply, organize them differently. What I oftem miss is the possibility to add "virtual" folders inside a project, for organizational purposes, without breaking the namespace/folder best-practice.</p>