using System.CommandLine;
namespace ReleaseBuilder;
///
/// Options and arguments shared between commands
///
public static class SharedOptions
{
///
/// The password to the key file to use for signing release manifests
///
public static readonly Option passwordOption = new Option(
name: "--password",
description: "The password to use for the keyfile",
getDefaultValue: () => string.Empty
);
}