Files
dotnet-packaging/dotnet-deb/Program.cs
Frederik Carlier 1e328bdfb9 - Add a dotnet {deb|rpm|zip|tarball} install command
- Do an implicit restore before running dotnet {deb|rpm|zip|tarball}
- After restoring, check whether Packaging.Targets is present in the lock file.
2019-11-22 13:15:47 +01:00

14 lines
297 B
C#

using System.Diagnostics;
namespace Dotnet.Packaging
{
class Program
{
static int Main(string[] args)
{
PackagingRunner runner = new PackagingRunner("Debian/Ubuntu installer package", "CreateDeb", "deb");
return runner.Run(args);
}
}
}