mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-14 13:45:53 +00:00
14 lines
282 B
C#
14 lines
282 B
C#
using System.Diagnostics;
|
|
|
|
namespace Dotnet.Packaging
|
|
{
|
|
class Program
|
|
{
|
|
static int Main(string[] args)
|
|
{
|
|
PackagingRunner runner = new PackagingRunner("macOS installer package", "CreatePkg");
|
|
return runner.Run(args);
|
|
}
|
|
}
|
|
}
|