@@ -20,7 +20,7 @@ private MSBuildArgs(
2020 string [ ] ? getItem ,
2121 string [ ] ? getTargetResult ,
2222 string [ ] ? getResultOutputFile ,
23- VerbosityOptions ? verbosity ,
23+ Verbosity ? verbosity ,
2424 string [ ] ? otherMSBuildArgs )
2525 {
2626 GlobalProperties = properties ;
@@ -59,7 +59,7 @@ private MSBuildArgs(
5959
6060 public string [ ] ? GetResultOutputFile { get ; }
6161
62- public VerbosityOptions ? Verbosity { get ; }
62+ public Verbosity ? Verbosity { get ; }
6363
6464 /// <summary>
6565 /// All other arguments that aren't already explicitly modeled by this structure.
@@ -97,7 +97,7 @@ public static MSBuildArgs AnalyzeMSBuildArguments(IEnumerable<string> forwardedA
9797 var getTargetResult = TryGetValue < string [ ] ? > ( "--getTargetResult" ) ;
9898 var getResultOutputFile = TryGetValue < string [ ] ? > ( "--getResultOutputFile" ) ;
9999 var verbosity = parseResult . GetResult ( "--verbosity" ) is OptionResult verbosityResult
100- ? verbosityResult . GetValueOrDefault < VerbosityOptions ? > ( )
100+ ? verbosityResult . GetValueOrDefault < Verbosity ? > ( )
101101 : null ;
102102 var otherMSBuildArgs = parseResult . UnmatchedTokens . ToArray ( ) ;
103103 return new MSBuildArgs (
@@ -127,7 +127,7 @@ public static MSBuildArgs FromOtherArgs(params ReadOnlySpan<string> args)
127127 {
128128 return new MSBuildArgs ( null , null , null , null , null , null , null , null , args . ToArray ( ) ) ;
129129 }
130- public static MSBuildArgs FromVerbosity ( VerbosityOptions verbosity )
130+ public static MSBuildArgs FromVerbosity ( Verbosity verbosity )
131131 {
132132 return new MSBuildArgs ( null , null , null , null , null , null , null , verbosity , null ) ;
133133 }
@@ -294,7 +294,7 @@ public MSBuildArgs CloneWithAdditionalTargets(params ReadOnlySpan<string> additi
294294 OtherMSBuildArgs . ToArray ( ) ) ;
295295 }
296296
297- public MSBuildArgs CloneWithVerbosity ( VerbosityOptions newVerbosity )
297+ public MSBuildArgs CloneWithVerbosity ( Verbosity newVerbosity )
298298 {
299299 return new MSBuildArgs (
300300 GlobalProperties ,
0 commit comments