I want to add solution folders and solution items (not projects) to a solution file via a NuGet package. I imagine this would be accomplished through Powershell. I've looked through the documentation for NuGet, Powershell, and EnvDTE and can't figure out:

  1. Which commands/methods I would use?
  2. Which standard script I would do this in, Init.ps1, Install.ps1, or somewhere else?
link|improve this question
feedback

1 Answer

up vote 8 down vote accepted

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 a child solution folder.
$parentSolutionFolder = Get-Interface $parentProject.Object ([EnvDTE80.SolutionFolder])
$childProject = $parentSolutionFolder.AddSolutionFolder("Child")

# Add a file to the child solution folder.
$childSolutionFolder = Get-Interface $childProject.Object ([EnvDTE80.SolutionFolder])
$fileName = "D:\projects\MyProject\MyProject.csproj"
$projectFile = $childSolutionFolder.AddFromFile($fileName)

The two main Visual Studio interfaces being used here are Solution2 and SolutionFolder. It also uses the Get-Interface function which is provided by NuGet.

Which PowerShell script init.ps1 or install.ps1 you should use depends on when you want the script to run. Init.ps1 runs once for a solution when the package is first installed and every time the solution is re-opened in Visual Studio. Install.ps1 runs every time a package is installed. You will probably want to use install.ps1.

What is missing from this PowerShell script is the standard parameter declarations at the top of file.

param($installPath, $toolsPath, $package, $project)

What is also missing is checking whether the solution folder and folder item already exist. I shall leave that as an exercise for you to do.

link|improve this answer
Thank you, this is exactly what I was looking for. – brainiac10 Jun 28 '11 at 19:07
is there any way to debug the init script? – smnbss Mar 30 at 16:33
You could try set-psdebug in the NuGet Package Manager console. I just tried running the commands in the console window against an active project. The other alternative is to write output to the console window. – Matt Ward Mar 31 at 15:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.