Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MSStore.CLI/Commands/PublishCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace MSStore.CLI.Commands
internal class PublishCommand : Command
{
internal static readonly Option<string> FlightIdOption;
internal static readonly Option<float> PackageRolloutPercentageOption;
internal static readonly Option<float?> PackageRolloutPercentageOption;
private static readonly Option<DirectoryInfo?> InputDirectoryOption;
private static readonly Option<string> AppIdOption;
private static readonly Option<bool> NoCommitOption;
Expand All @@ -33,7 +33,7 @@ static PublishCommand()
{
Description = "Specifies the Flight Id where the package will be published."
};
PackageRolloutPercentageOption = new Option<float>("--packageRolloutPercentage", "-prp")
PackageRolloutPercentageOption = new Option<float?>("--packageRolloutPercentage", "-prp")
{
Description = "Specifies the rollout percentage of the package. The value must be between 0 and 100.",
CustomParser = result =>
Expand Down