mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-15 13:46:36 +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.
12 lines
254 B
C#
12 lines
254 B
C#
namespace Dotnet.Packaging
|
|
{
|
|
class Program
|
|
{
|
|
static int Main(string[] args)
|
|
{
|
|
PackagingRunner runner = new PackagingRunner("tarball", "CreateTarball", "tarball");
|
|
return runner.Run(args);
|
|
}
|
|
}
|
|
}
|