From 1e713869df6b8760b5a00f29dabd38b5f796a126 Mon Sep 17 00:00:00 2001 From: Dave Smits Date: Sat, 22 Nov 2025 18:54:11 +0100 Subject: [PATCH] nullable --- MSStore.CLI/Commands/PublishCommand.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MSStore.CLI/Commands/PublishCommand.cs b/MSStore.CLI/Commands/PublishCommand.cs index 88c7dec..42dff98 100644 --- a/MSStore.CLI/Commands/PublishCommand.cs +++ b/MSStore.CLI/Commands/PublishCommand.cs @@ -22,7 +22,7 @@ namespace MSStore.CLI.Commands internal class PublishCommand : Command { internal static readonly Option FlightIdOption; - internal static readonly Option PackageRolloutPercentageOption; + internal static readonly Option PackageRolloutPercentageOption; private static readonly Option InputDirectoryOption; private static readonly Option AppIdOption; private static readonly Option NoCommitOption; @@ -33,7 +33,7 @@ static PublishCommand() { Description = "Specifies the Flight Id where the package will be published." }; - PackageRolloutPercentageOption = new Option("--packageRolloutPercentage", "-prp") + PackageRolloutPercentageOption = new Option("--packageRolloutPercentage", "-prp") { Description = "Specifies the rollout percentage of the package. The value must be between 0 and 100.", CustomParser = result =>