mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-10 21:30:16 +00:00
- Do an implicit restore before running dotnet {deb|rpm|zip|tarball}
- After restoring, check whether Packaging.Targets is present in the lock file.
14 lines
297 B
C#
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);
|
|
}
|
|
}
|
|
}
|