diff --git a/source/Octopus.Cli/Commands/Deployment/DeploymentCommandBase.cs b/source/Octopus.Cli/Commands/Deployment/DeploymentCommandBase.cs index 31e5e591af..09a3b6fe23 100644 --- a/source/Octopus.Cli/Commands/Deployment/DeploymentCommandBase.cs +++ b/source/Octopus.Cli/Commands/Deployment/DeploymentCommandBase.cs @@ -56,8 +56,8 @@ protected DeploymentCommandBase( options.Add("v|variable=", "[Optional] Values for any prompted variables in the format Label:Value. For JSON values, embedded quotation marks should be escaped with a backslash. Specify this argument multiple times to add multiple variables.", ParseVariable); options.Add("deployAt=", "[Optional] Time at which deployment should start (scheduled deployment), specified as any valid DateTimeOffset format, and assuming the time zone is the current local time zone.", v => DeployAt = v); options.Add("noDeployAfter=", "[Optional] Time at which scheduled deployment should expire, specified as any valid DateTimeOffset format, and assuming the time zone is the current local time zone.", v => NoDeployAfter = v); - options.Add("tenant=", "Create a deployment for the tenant with this name or ID; specify this argument multiple times to add multiple tenants or use `*` wildcard to deploy to all tenants who are ready for this release (according to lifecycle).", t => Tenants.Add(t)); - options.Add("tenantTag=", "Create a deployment for tenants matching this tag; specify this argument multiple times to build a query/filter with multiple tags, just like you can in the user interface.", tt => TenantTags.Add(tt)); + options.Add("tenant=", "[Optional] Create a deployment for the tenant with this name or ID; specify this argument multiple times to add multiple tenants or use `*` wildcard to deploy to all tenants who are ready for this release (according to lifecycle).", t => Tenants.Add(t)); + options.Add("tenantTag=", "[Optional] Create a deployment for tenants matching this tag; specify this argument multiple times to build a query/filter with multiple tags, just like you can in the user interface.", tt => TenantTags.Add(tt)); } diff --git a/source/Octopus.Cli/Octopus.Cli.csproj b/source/Octopus.Cli/Octopus.Cli.csproj index 4af0b35ab6..d16fbad0e2 100644 --- a/source/Octopus.Cli/Octopus.Cli.csproj +++ b/source/Octopus.Cli/Octopus.Cli.csproj @@ -5,6 +5,10 @@ netstandard2.0 Octopus Deploy Octopus Deploy Pty Ltd + Apache-2.0 + icon.png + git + https://github.com/OctopusDeploy/OctopusCli Octopus Deploy is an automated release management tool for modern developers and DevOps teams. This package contains the .NET CLI library for interacting with the HTTP API in Octopus. @@ -40,5 +44,7 @@ NETFRAMEWORK - + + + diff --git a/source/Octopus.Cli/icon.png b/source/Octopus.Cli/icon.png new file mode 100644 index 0000000000..e3fc9adcad Binary files /dev/null and b/source/Octopus.Cli/icon.png differ diff --git a/source/Octopus.DotNet.Cli/Octopus.DotNet.Cli.csproj b/source/Octopus.DotNet.Cli/Octopus.DotNet.Cli.csproj index 5024e420d3..04b94c8028 100644 --- a/source/Octopus.DotNet.Cli/Octopus.DotNet.Cli.csproj +++ b/source/Octopus.DotNet.Cli/Octopus.DotNet.Cli.csproj @@ -2,8 +2,8 @@ Exe - netcoreapp2.1;netcoreapp2.2;netcoreapp3.0;netcoreapp3.1 @@ -12,14 +12,14 @@ Octopus.DotNet.Cli Octopus Deploy Octopus Deploy Pty Ltd - http://i.octopusdeploy.com/resources/Avatar3-32x32.png + icon.png http://octopusdeploy.com/ - http://octopusdeploy.com/pricing + Apache-2.0 git https://github.com/OctopusDeploy/OctopusCli Octopus Deploy is an automated release management tool for modern developers and DevOps teams. - This package contains the client library for the HTTP API in Octopus. + This package contains the dotnet tool version of the CLI library for interacting with the HTTP API in Octopus. DotnetCliTool true @@ -35,5 +35,8 @@ + + + diff --git a/source/Octopus.DotNet.Cli/icon.png b/source/Octopus.DotNet.Cli/icon.png new file mode 100644 index 0000000000..e3fc9adcad Binary files /dev/null and b/source/Octopus.DotNet.Cli/icon.png differ