Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit ad76052

Browse files
committed
Changing the order of the help text for dotnet publish so that it matches the order from dotnet build as well.
1 parent 760bdf8 commit ad76052

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dotnet/commands/dotnet-publish/PublishCommandParser.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ public static Command Publish() =>
1515
LocalizableStrings.AppDescription,
1616
Accept.ZeroOrMoreArguments(),
1717
CommonOptions.HelpOption(),
18-
CommonOptions.FrameworkOption(),
19-
CommonOptions.RuntimeOption(),
2018
Create.Option(
2119
"-o|--output",
2220
LocalizableStrings.OutputOptionDescription,
2321
Accept.ExactlyOneArgument()
2422
.With(name: LocalizableStrings.OutputOption)
2523
.ForwardAsSingle(o => $"/p:PublishDir={o.Arguments.Single()}")),
24+
CommonOptions.FrameworkOption(),
25+
CommonOptions.RuntimeOption(),
2626
CommonOptions.ConfigurationOption(),
2727
CommonOptions.VersionSuffixOption(),
2828
Create.Option(

0 commit comments

Comments
 (0)