I want to use nuget to distribute a set of shared build scripts for our projects, the way I envision it working is as follows:
- User runs install-package build.support
- Package is downloaded
- Build scripts appear in a solution folder in the solution along with a default 'top level' build script you can edit for your needs.
Now maybe nuget isn't the right tool for this and I should just be branching the build scripts directory into my project from somewhere else in the tree, but what I really want is a solution level package not a project level package. Is this possible out of the box?
One option is to use powershell to copy the files into the right place from a tools directory in the nuget package, but again, this feels like a hack.