umbraco/Umbraco.Packages

Package Tools: UmbPack

KevinJump opened this issue · 3 comments

Command-Line tool to create Umbraco Zip based packages, (work as an addition/alternative to the MsBuild / AppVayor methods?)

Much like the NuGet Pack command, which tasks a nuspec file and generates a NuGet Package, I have the start of something similar which could us a package.xml file - and generate a Umbraco .zip file.

eg.

UmbPack myPackage.zip -version 1.2.0 

Would generate version 1.2.0 of the package based on the file.

most of it would be as now, maybe with wildcard/glub support in the package file - Nuget Reference

e.g.

 <file path="../MyPackage/Bin/Release/myPackage.*.dll" orgPath="~/bin" />
 <file path="../MyPackage/App_Plugins/MyPackage/*" orgPath="~/App_Plugins/MyPackage" />
bielu commented

@KevinJump I think it will be redundant as:
#19

yes, might make sense to add this as an extra command line parameter to warren's Umbraco package tool where we could create a basic package.xml from a nuspec file. at least as a helper.
#30