-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Fix --project
and --solution
descriptions for dotnet test
MTP to use "test" instead of "run" and extract shared localization strings
#51052
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: release/10.0.1xx
Are you sure you want to change the base?
Changes from 5 commits
b68d460
4c9c63e
7d82904
9587df9
605166a
99e653e
d8074b5
cecdc27
9b2267f
504b6d2
3cc26fb
8b5c495
435f66c
d9189db
6ca6dfb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,14 +9,14 @@ internal static class MicrosoftTestingPlatformOptions | |
{ | ||
public static readonly Option<string> ProjectOption = new("--project") | ||
{ | ||
Description = CliCommandStrings.CmdProjectDescription, | ||
Description = CliCommandStrings.TestCmdProjectDescription, | ||
|
||
HelpName = CliCommandStrings.CmdProjectPathName, | ||
Arity = ArgumentArity.ExactlyOne | ||
}; | ||
|
||
public static readonly Option<string> SolutionOption = new("--solution") | ||
{ | ||
Description = CliCommandStrings.CmdSolutionDescription, | ||
Description = CliCommandStrings.TestCmdSolutionDescription, | ||
HelpName = CliCommandStrings.CmdSolutionPathName, | ||
Arity = ArgumentArity.ExactlyOne | ||
}; | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@copilot This resource is unused now? It can be deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed in commit cecdc27. Deleted both
CmdProjectDescription
andCommandOptionProjectDescription
resources as they are no longer used after switching to the parameterizedCmdProjectDescriptionFormat
.