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