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