You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -41,28 +41,5 @@ public class ClrInstanceOperationsOptions
41
41
Default=null,
42
42
HelpText="Specify a version of nanoCRL to install.")]
43
43
publicstringTargetVersion{get;set;}
44
-
45
-
[Option(
46
-
"clrinstancepath",
47
-
Required=false,
48
-
Default=null,
49
-
HelpText="Path to the directory where a local version of nanoFramework.nanoCLR.dll is located.")]
50
-
publicstringLocalInstance{get;set;}
51
-
52
-
/// <summary>
53
-
/// Allowed values:
54
-
/// q[uiet]
55
-
/// m[inimal]
56
-
/// n[ormal]
57
-
/// d[etailed]
58
-
/// diag[nostic]
59
-
/// </summary>
60
-
[Option(
61
-
'v',
62
-
"verbosity",
63
-
Required=false,
64
-
Default="n",
65
-
HelpText="Sets the verbosity level of the command. Allowed values are q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic]. Not supported in every command; see specific command page to determine if this option is available.")]
// Licensed to the .NET Foundation under one or more agreements.
2
+
// The .NET Foundation licenses this file to you under the MIT license.
3
+
4
+
usingSystem;
5
+
usingCommandLine;
6
+
7
+
namespacenanoFramework.nanoCLR.CLI
8
+
{
9
+
publicclassCommonOptions
10
+
{
11
+
[Option(
12
+
"clrpath",
13
+
Required=false,
14
+
Default=null,
15
+
HelpText="Path to the directory from which to load a specific version of nanoFramework.nanoCLR.dll.")]
16
+
publicstringPathToCLRInstance{get;set;}
17
+
18
+
[Obsolete("This option is deprecated and will be removed in a future version. Use --clrpath instead.")]
19
+
[Option(
20
+
"localinstance",
21
+
Required=false,
22
+
Default=null,
23
+
Hidden=true,
24
+
HelpText="Path to a local instance of the nanoCLR.")]
25
+
publicstringLocalInstance
26
+
{
27
+
set
28
+
{
29
+
PathToCLRInstance=value;
30
+
}
31
+
}
32
+
33
+
34
+
/// <summary>
35
+
/// Allowed values:
36
+
/// q[uiet]
37
+
/// m[inimal]
38
+
/// n[ormal]
39
+
/// d[etailed]
40
+
/// diag[nostic]
41
+
/// </summary>
42
+
[Option(
43
+
'v',
44
+
"verbosity",
45
+
Required=false,
46
+
Default="n",
47
+
HelpText="Sets the verbosity level of the command. Allowed values are q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic]. Not supported in every command; see specific command page to determine if this option is available.")]
@@ -106,29 +106,5 @@ public class ExecuteCommandLineOptions
106
106
Default=false,
107
107
HelpText="Option to force heap compaction after each GC run.")]
108
108
publicboolPerformHeapCompaction{get;set;}
109
-
110
-
[Option(
111
-
"localinstance",
112
-
Required=false,
113
-
Default=null,
114
-
Hidden=true,
115
-
HelpText="Path to a local instance of the nanoCLR.")]
116
-
publicstringLocalInstance{get;set;}
117
-
118
-
/// <summary>
119
-
/// Allowed values:
120
-
/// q[uiet]
121
-
/// m[inimal]
122
-
/// n[ormal]
123
-
/// d[etailed]
124
-
/// diag[nostic]
125
-
/// </summary>
126
-
[Option(
127
-
'v',
128
-
"verbosity",
129
-
Required=false,
130
-
Default="n",
131
-
HelpText="Sets the verbosity level of the command. Allowed values are q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic]. Not supported in every command; see specific command page to determine if this option is available.")]
0 commit comments