You can pack it using NuGet (with the nuget pack command described here ). This, in fact, is all that Octopack does. Create a .nuspec file, and in the <files> section, specify the files you want for an empty purpose. For example, this will include all the files in your package:
... <files> <file src="path/to/output/**" target="" /> </files> ...
You can then push it into your Octopus Deploy system using nuget push . For instructions, see your Octopus Deploy Package library page.
source share