Adding solution-level items in a NuGet package
Here is a PowerShell script that will create a solution folder called Parent and another solution folder called Child inside that one. It also adds a project file (MyProject.csproj) inside the Child solution folder. # Get the open solution. $solution = Get-Interface $dte.Solution ([EnvDTE80.Solution2]) # Create the parent solution folder. $parentProject = $solution.AddSolutionFolder(“Parent”) # Create … Read more