ChatGPT解决这个技术问题 Extra ChatGPT

Visual Studio Solutions Folder as real Folders

I have a Visual Studio Solution. Currently, it is an empty solution (=no projects) and I have added a few solution folders.

Solution Folders only seem to be "virtual folders", because they are not really created in the Filesystem and files inside solution folders are just sitting in the same folder as the .sln file.

Is there a setting that i've overlooked that tells Visual Studio to treat Solution Folders as "real" folders, that is to create them in the file system and move files into it when I move them inside the solution into one of those folders?

Edit: Thanks. Going to make a suggestion for VS2010 then :)

This is one of the most annoying Visual Studio quirks
How can I correctly deal with this quirk?
Funny thing, Rider kind of have this feature (but folder has to be at the same path as the .sln file, and actual folder reference is not stored in the .sln file itself): jetbrains.com/help/rider/Extending_Your_Solution.html
I am using VS 2017 and as far as I can tell, MS has not yet added a feature to allow adding entire folders to a solution folder - individual files must be added.

R
Ray

There is a workaround, that actually behaves as expected.

Add a New or Existing Web Site to the Solution. (I usually create a new one.) Just make sure it's created inside your solution folder. (I sometimes even create a "link" to an external folder, e.g. 'Docs' or 'Marketing' on a network share. In that case it's ignored by Git of course.) Make sure to go to the "Project" settings or Configuration Manager to exclude this "Web Site" from Build and Deploy!

Done. Now Solution Explorer will reflect any change in the file system and vice versa (including subfolders).

I (miss)use it for specs, docs, PM and some DevOps scripts that are shared within the team. It's easy to choose, what to include in source control or not, and (if set up correctly) it doesn't conflict with build.

I know the feature is not intended for that use case, but except for the maybe misleading "Project" icon I didn't find any shortages to that hack yet. And there still are use cases where the classical (virtual) Solution Folders that VS provides, fit in the picture. What do you think?


Here are the full instructions: Right-click the solution -> "Add" -> "New Web Site..." -> (I chose "ASP.NET Empty Web Site"). After changing the location don't forget to append "\MyName" to the path, otherwise clicking "OK" will simply re-open the dialog. After that right-click your solution -> "Properties" -> "Configuration Properties" -> uncheck "Build" for the web project.
Is this still working? using VS2015 but it doesn't work.
In VS2017 perfectly creates a real folder but WebSite icon (dark circle) displayed in the Solution Explorer. Does anybody know how to fix that?
Yes it works in VS2019, but still doesn't monitor filesystem changes. You must occasionally "Refresh" to see current files. If only C# projects weren't the only solution type to support the new, cleaner and clearer filesystem-glob-based .*proj format.
s
svlists

No special setting. I don't think it's supported.

You can create real folders in a "project" within the solution, but not in the solution itself.


This still appears to be accurate as of VS 2017.
... and VS 2019
one of worst things about VS. Why don't MS keep Sln folders as an option, but ALSO allow REAL folders to be added to the solution. So annoying. The File System works, why reinvent the wheel (as a square).
you can change the behavior for the project: stackoverflow.com/a/66004927/9050921
O
OdeToCode

https://i.stack.imgur.com/k71Ve.png


This is useful but on "source view" you lost all the right click shortcuts on a project, i.e., "Manage NuGet Packages".
Why do only C++ solutions or projects behave differently compared to other languages?
This helped me, so i created a folder in the folder view where i wanted it, then i added a solution folder and added the project as a child of the folder. Doesnt really make sense to me, but this answer helped get me
This is exactly what I want. Thanks!
r
rsenna

The chosen answer suggests it would be possible to use actual projects instead of solution folders, but does not really explain how. I guess what I'm describing here is possibly the least awkward way of achieving that... :-P

The problem with regular project files is that they eventually will be compiled by MSBUILD. And if you want have a project which only contains non-compilable files, that will be an issue.

But some time ago Visual Studio introduced a new project type: Shared Project (.shproj extension). This project type does not get compiled by default, but only when (and only if) it is referenced by another project.

So one part of the trick here is to use shared projects instead of solution folders. It's obviously possible to add a shared project that is never referenced by any other project, meaning we can avoid the issue presented above.

Then, by using <None Include="**/*" /> clause in the .shproj file, we can make it automatically reflect any new files and/or subfolders.

So basically do this:

Create a new folder in your solution.

Add a new .shproj file at the root of this new folder.

Reference the new .shproj in your solution.

For instance, in my case, I've created a DockerDev.shproj, so I can group some docker-related scripts that we run only in our development machines:

<?xml version="1.0" encoding="utf-8"?>
<!-- DockerDev/DockerDev.shproj -->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup>
    <None Include="**/*" />
  </ItemGroup>
</Project>

This .shproj file will keep track of any file, in any subfolder of this new DockerDev folder in my solution.

As far as I could see, this solution works pretty much like what the OP requested: it will work as a non-compilable reference to a folder, and it will automatically reflect any changes made to it.


In my experience, this accumulates cruft as soon as an unsuspecting team member touches any file properties; after which you have duplicate files appearing in the navigation pane. Under some conditions every file ends up enumerated in the .proj file and then ugliness ensues. Although I dislike giving up, I still prefer the 'Add Existing Web Site' approach.
@shannon I never experienced the behavior you're mentioning, but "absence of evidence is not evidence of absence", so there's that. But I use shared projects on a daily basis, so I think that also counts. Regarding Web Site Projects (WSP), they could also work, I guess, been a long time I don't use it.
u
user247702

Sara Ford contributed a Macro to add do this. In Visual Studio 2010, if you open your Macro Explorer, you will see a macro called "GenerateSlnFolderOnDirStructure." This will automate the creation of the Solution Folders and add the files.


r
ryan

Folder To Solution Folder By Cecilia Wirén - CeciliaSHARP

Remove the hassle of adding several files to solution folder. Just use the context menu for the solution and just below the option of creating a new solution folder you now find 'Add Folder as Solution Folder'. This will create a solution folder with the same name as you selected and add the items inside of that folder to the solution folder. This will not move the files on disk.


A
Armin Torkashvand

You can just sync your new solution folder nesting level and also name with the actual filesystem folder and it works like a charm!

Existing project :

Create the actual folder

Create the solution folder with the exact same name

Copy your project folder into the new folder (Actual file system)

(in solution explorer) - Righ-click on same folder

Add => Existing project

Add new project :

Create your solution folders

(Right-click on solution) => Add new project

Change the Location address under the project name you want to add, to the exact same address in your solution folders


By "Place your project in it," do you mean, "Place your project folder (with files on it) into the 'actual folder' you just created in the file system"?
@GrantRobertson I made some edits. Hope it helps.
I can confirm this works in VS2019! Those of us who keep changing our minds about folder structure end up with this problem a lot. I wish it were easier. Note that If you already have the projects in source control, you'll have more work to do when you check in after this.
@Angelo That's right, and also all files become their first version for source control.
A
Alan

No, it's not supported. As you suspected, solution folders are simply virtual subentries in the .sln file, nothing to do with the file system.


n
northWind

Visual studio has no support for this. I made an extension that does something similar for VS2013 though. It maps solution folders to physical folders on your hard drive, though the mapping is one way (from hard drive to solution). That means a solution folder's contents will reflect the hard drive folder's contents, and not the other way.

With that out of the way, the extension may still be useful. It has support for mapping solution folders to physical folders, filtering files and directories based on regex, and remembering mappings in your .sln file. Properties are non-intrusive so developers without the extension can still open the sln and not be affected.

Hosted on visual studio gallery: https://visualstudiogallery.msdn.microsoft.com/69e19ea6-4442-4cb6-b300-044dd21f02bd

Edit: Uploaded to bitbucket. Now open source. MIT license. https://bitbucket.org/LSS_NorthWind/physical-solution-folders


r
rc21

Create "Solution folder". This will create logical folder, but not physical one. Right click to the solution folder and open a new project dialog. But before you click OK, you have to change a project location to your desired physical folder and VS will create it and place the project inside.


m
marsh-wiggle

For C# in Visual Studio 2019 I used this way (Seems to be similar to this answer, but that didn't work at least in C# solutions)

In solution explorer click on switch views

https://i.stack.imgur.com/H9D1W.png

Choose folder view

https://i.stack.imgur.com/mOhT3.png

You can add individual folders to the solution

https://i.stack.imgur.com/VPCKE.png

To get back to the regular view of solution explorer just click switch views again and choose the solution.

There seems to be a limitation using this way (comment from @montonero):

... just open a solution with multiple projects and try to move the projects to some other real folders through the folder view. The issue is VS doesn't update paths to projects in a solution file


I'm not sure if this is new VS 2019 functionality, but this did provide what I needed. I wanted to have my file system and project in sync ALWAYS. This view is exactly that. If a file is created via the IDE, it is added to the file system in the appropriate folder (as is selected in the IDE). If a file is deleted, the file system is updated accordingly.
If you try to reorganize projects in this view, you'll get a solution with broken project references.
@montonero I used this way in several complex projects, without any problems. Do you have an example?
Sure, just open a solution with multiple projects and try to move the projects to some other real folders through the folder view. The issue is VS doesn't update paths to projects in a solution file.
@montonero thanks, I never used is this way and edited my answer now
P
Paul Easter

I've wanted this feature a few times myself, but at the end of the day, you really do NOT want the ability to do this. Think of your Solution (file) as as the root of a web application and think of Solution folders as Virtual Directories (literally and functionally). The contents of a web virtual directory could be physically on a different server altogether. Where Visual Studio muddled up the solution folders concept is by allowing you to create new files inside the folder. You should always "Add Existing" when adding content. When you add existing, it creates a link to the source location of the file.

But as for the reason you do not want solution folders to behave like "physical" folders is because your solution layout may not necessarily use the same convention as your source control layout. Solution folders allow you to customize the hierarchy of your projects so that you can group projects and items together any way you like, and then decide you don't like it and change it again without having to go through the nightmare of moving source control items around and irritating the rest of your team.


This is the right answer - create the file on disk in a folder with the same name as the virtual folder, then add the file in VS using 'Add existing'.
They could have easily implemented both virtual and physical folders. It is clearly an overlook. See reference: every other IDE, ever.
I don't understand at all why the concept of (IIS) Virtual Directories has anything to do with solution folders. As for the source control argument, I don't see the problem. Why would file moves irritate the rest of your team? It's a common operation. And why would you want the layout of the files in source control to be different than the physical layout?
Physical solution folders would make it easier (albeit just a bit) to create modern folder structures like NancyFx's, where multiple projects fall into categories like src, test, tools, etc. You'd definitely want to make that decision at the project outset to your point about irritating the team, but that's true of most any architectural decision.
-1 My usecase is this: sometimes we just want to add certain documents to the solution. They will not be built, but they are kept into the source control. We usually have a special folder for them. I would like to have that folder in my solution - not the files it contains, but the folder itself. Yes, there are ways of bypassing this limitation, but they are not optimal. Have an actual reference to a folder in the solution would simply work.
A
Ankit

Note: Yes this is possible you can create a folder on root but its lil bit tricky....

By giving some extra efforts you can do it How? Lets follow the step--

1-Create Folder eg: "newfolder" on root (where your .sln file reside).

2.Copy and paste your projects inside the folder.

3.go to your sln file and find moved projects and append newfolder\ in moved project's address.

4.Save sln file.

5.Open your project and Commit the repository in git or so...

6.Take the repository on fresh location. YOU are done...

if still you are not able to see your folder -----

1.Add a solution folder xyz.

2.Open sln file and change that folder name with your folder name.

Congrats you are done..

If you face any problem just write me for help..


This is an instruction on how to move project folders, while OP asks how to show additional directory under solution without listing all the files statically.
k
keyone2693

Create an empty solution then open .sln file in an editor and put these lines of code after MinimumVisualStudioVersion

Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{9D8C3BB1-AEDB-4757-8559-995D12A4E6D0}"

open the solution in vs and you should add the same folder to it now you can see the folder and add a project to it you have a real folder in windows and a virtual one in vs

be sure that you created the projects with that path


A
Abhijit K Rao

You can add real folders by choosing "Add new filter" for a Visual Studio project file. You can also do "Add new filter" under an existing folder. Once the folder is created, rename it and add source or header file or whichever suits your project. This is one way I know which lets us create real folders through the Visual Studio IDE.


This feature is specific to C++ projects.
This solution also applies to VS Projects - the question is about Solution level folders.
d
dove

The folder created underneath the solution will be virtual as said. Maybe this might be called a workaround but you can physically create the folder on disk either before or when you add new item/project and Robert should be a sibling of your dad.

ps- on closer look maybe i should explain "bob's your uncle" means your fine/sorted.


Does it matter if Robert is your mother's brother?
M
Matthew Layton

I have a bit of a workaround for this (it's not great, but it works).

Create a folder in your solution (i.e. "Contoso") Right click on the solution and then click "Open Folder in Solution Explorer" Create the physical folder (i.e. "Contoso") in the solution directory Copy/Create files in the physical folder. Drag the files into the virtual folder in the solution explorer.

It's not great because you will need to manually maintain the file references, but it works for me.


R
Rub

Yes, it is possible in Visual Studio 2019 for the project

Though this is an old topic, I will add my answer, because I had the same issue and searched for a solution but it seemed that everyone is 100% sure that there is no way to do it. So I started to experiment with VS 2019, tried a lot of settings, and eventually figured the way out.

1 Button :D

https://i.stack.imgur.com/6ExuW.png

Now you can add files and folders to the project and they will be added to the file system (physically)

https://i.stack.imgur.com/yhJG4.png

My recommendation for C++

Create a root folder inside your project's directory which will contain all the application related stuff (code, headers, data, libs... ). I name it Project Add subfolders as you'd like to structure your code. I prefer the following layout: include, src, data, libs, etc

https://i.stack.imgur.com/jlbJZ.png

Now setup Visual Studio to recognize these folders as headers and sources directories. Click on your project in the Solution Explorer. Note, in my case, it is CrazyDemo, not the Solution 'CreazyDemo' (1 of 1 project) Go to the project properties menu: Project→Properties Open Configuration Properties→VC++ Directories tab Edit Include Directories and set to $(ProjectDir)/Project/include;$(IncludePath) Edit Library Directories and set to $(ProjectDir)/Project/libs;$(LibraryPath) Edit Source Directories and set to $(ProjectDir)/Project/src;$(SourcePath)

https://i.stack.imgur.com/lNXNQ.png

You may use the Scope to This option if you want to focus on 1 project. Just right-click on the Project folder and press Scope to This Note that after this action, in order to open Project Properties you need to click on any of your project files (like main.cpp in the example) and then click on the editable client area (like when you want to change the code) and only after that you'll be able to see the Project→CrazyDemo Properties option. [Visual Studio is Insane 🤦‍♂️]

Finally, you may have a project like this

https://i.stack.imgur.com/B7NGL.png


Is it possible to save this was a template? Or, do I have to go through all these steps every time I create a new project within a solution?
I don't know, never tried to use templates
This works only for folders inside a project. You can't make this way a folder to combine several projects.
@montonero yes, as I stated in the first sentence of my answer :)
Well, I see the word "project" but I don't see that you've emphasized in any way that this is ONLY for projects so I've made it clear.