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