Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorSteffen Kieß <kiess@ki4.de>2020-06-24 20:58:37 +0300
committerGitHub <noreply@github.com>2020-06-24 20:58:37 +0300
commit82d2277a085690465fc77a5e45e9c53dc9ed35ea (patch)
treef168a76b5412952694f3d5470248c7dbc7d96827 /mcs
parent7a0425e81ffe0e77a4ba22ff45e691934ecc49a1 (diff)
[mcs] Fix help text for default value of -sdk: option (#20011)
The `mcs` help text says that it will use the value `4.5` by default for the option `-sdk:`, but it actually uses `4.x`. Fix the help text.
Diffstat (limited to 'mcs')
-rw-r--r--mcs/mcs/settings.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/mcs/settings.cs b/mcs/mcs/settings.cs
index 976c9b68128..050c7efa40d 100644
--- a/mcs/mcs/settings.cs
+++ b/mcs/mcs/settings.cs
@@ -1661,7 +1661,7 @@ namespace Mono.CSharp {
" -reference:A1[,An] Imports metadata from the specified assembly (short: -r)\n" +
" -reference:ALIAS=A Imports metadata using specified extern alias (short: -r)\n" +
" -sdk:VERSION Specifies SDK version of referenced assemblies\n" +
- " VERSION can be one of: 2, 4, 4.5 (default) or a custom value\n" +
+ " VERSION can be one of: 2, 4, 4.5, 4.x (default) or a custom value\n" +
" -target:KIND Specifies the format of the output assembly (short: -t)\n" +
" KIND can be one of: exe, winexe, library, module\n" +
" -unsafe[+|-] Allows to compile code which uses unsafe keyword\n" +