From ad76052cb4ff46bfd20d7be2225fb977c2713d39 Mon Sep 17 00:00:00 2001 From: Livar Cunha Date: Mon, 8 May 2017 15:30:31 -0700 Subject: [PATCH] Changing the order of the help text for dotnet publish so that it matches the order from dotnet build as well. --- src/dotnet/commands/dotnet-publish/PublishCommandParser.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dotnet/commands/dotnet-publish/PublishCommandParser.cs b/src/dotnet/commands/dotnet-publish/PublishCommandParser.cs index aa2b9bc2e..600d4c459 100644 --- a/src/dotnet/commands/dotnet-publish/PublishCommandParser.cs +++ b/src/dotnet/commands/dotnet-publish/PublishCommandParser.cs @@ -15,14 +15,14 @@ namespace Microsoft.DotNet.Cli LocalizableStrings.AppDescription, Accept.ZeroOrMoreArguments(), CommonOptions.HelpOption(), - CommonOptions.FrameworkOption(), - CommonOptions.RuntimeOption(), Create.Option( "-o|--output", LocalizableStrings.OutputOptionDescription, Accept.ExactlyOneArgument() .With(name: LocalizableStrings.OutputOption) .ForwardAsSingle(o => $"/p:PublishDir={o.Arguments.Single()}")), + CommonOptions.FrameworkOption(), + CommonOptions.RuntimeOption(), CommonOptions.ConfigurationOption(), CommonOptions.VersionSuffixOption(), Create.Option(