You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public IReadOnlyCollection<SolutionFolder> SolutionFolders => Solution.AllSolutionFolders.Where(x => x.Parent == this).ToList();
So I think this is the problem, because generated SolutionItem (folders in my case) is different from original folders, operator == returns false for every nested project
Reproduction Steps
Have slnx (maybe sln too?) with nested folders and projects in them
Use [Solution(GenerateProjects = true)]
Use generated folders in generated solution
Expected Behavior
The folders are generated and not empty
Actual Behavior
The folders are generated but contains zero projects