Add nuget publishing for plugin packaer and abstractions (#2018)

This commit is contained in:
Andrew Camilleri
2020-10-24 17:21:50 +02:00
committed by GitHub
parent fac35b46bb
commit c8dd13577e
7 changed files with 68 additions and 8 deletions

View File

@@ -12,6 +12,11 @@ namespace BTCPayServer.PluginPacker
{
static void Main(string[] args)
{
if (args.Length < 3)
{
Console.WriteLine("Usage: btcpay-plugin [directory of compiled plugin] [name of plugin] [packed plugin output directory]");
return;
}
var directory = args[0];
var name = args[1];
var outputDir = args[2];