Visual Studio Extension to map Solution Folders to Real Folders - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T19:26:30Zhttp://stackoverflow.com/feeds/question/491751http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/491751/visual-studio-extension-to-map-solution-folders-to-real-folders6Visual Studio Extension to map Solution Folders to Real FoldersMichael Stum2009-01-29T14:18:39Z2009-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#4929341Answer by Conrad for Visual Studio Extension to map Solution Folders to Real FoldersConrad2009-01-29T18:59:44Z2009-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-1Answer by ChrisBD for Visual Studio Extension to map Solution Folders to Real FoldersChrisBD2009-05-08T13:57:19Z2009-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#8442161Answer by GregC for Visual Studio Extension to map Solution Folders to Real FoldersGregC2009-05-09T22:32:59Z2009-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#8462620Answer by Shuoling Liu for Visual Studio Extension to map Solution Folders to Real FoldersShuoling Liu2009-05-10T22:48:52Z2009-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#14744120Answer by Duarte Leão for Visual Studio Extension to map Solution Folders to Real FoldersDuarte Leão2009-09-24T22:04:09Z2009-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>