mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-14 05:35:57 +00:00
14 lines
270 B
C#
14 lines
270 B
C#
using System.Diagnostics;
|
|
|
|
namespace Dotnet.Packaging
|
|
{
|
|
class Program
|
|
{
|
|
static int Main(string[] args)
|
|
{
|
|
PackagingRunner runner = new PackagingRunner("zip archive", "CreateZip");
|
|
return runner.Run(args);
|
|
}
|
|
}
|
|
}
|