clean up command help

This commit is contained in:
Yaakov 2021-09-26 14:00:33 +10:00
parent 2bb64636ae
commit ef2936528d
2 changed files with 3 additions and 3 deletions

View file

@ -13,10 +13,10 @@ namespace Shamir.Console
[Option("connection-string", Required = false, HelpText = "Azure Storage connection string for the Storage Account backing the CDN.")]
public string? ConnectionString { get; set; }
[Value(0, Required = true, MetaName = "LocalPath", HelpText = "The local path to the file to copy.")]
[Value(0, Required = true, MetaName = "local path", HelpText = "The local path to the file to copy.")]
public string? LocalPath { get; set; }
[Value(1, Required = true, MetaName = "RemotePath", HelpText = "The destination path in Azure Storage.")]
[Value(1, Required = true, MetaName = "remote path", HelpText = "The destination path in Azure Storage.")]
public string? RemotePath { get; set; }
}

View file

@ -13,7 +13,7 @@ namespace Shamir.Console
[Option('a', "all", HelpText = "List all blobs in the container")]
public bool EnumerateAll { get; set; }
[Value(0, MetaName = "Path", HelpText = "Path to enumerate, starting with the Azure Storage container name.")]
[Value(0, MetaName = "path", HelpText = "Path to enumerate, starting with the Azure Storage container name.")]
public string? Path { get; set; }
}