File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed
src/Cli/dotnet/Extensions Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -175,19 +175,6 @@ public static bool BothArchAndOsOptionsSpecified(this ParseResult parseResult) =
175
175
parseResult . HasOption ( CommonOptions . LongFormArchitectureOption ) ) &&
176
176
parseResult . HasOption ( CommonOptions . OperatingSystemOption ) ;
177
177
178
- internal static string ? GetCommandLineRuntimeIdentifier ( this ParseResult parseResult )
179
- {
180
- return parseResult . HasOption ( CommonOptions . RuntimeOptionName ) ?
181
- parseResult . GetValue < string > ( CommonOptions . RuntimeOptionName ) :
182
- parseResult . HasOption ( CommonOptions . OperatingSystemOption ) ||
183
- parseResult . HasOption ( CommonOptions . ArchitectureOption ) ||
184
- parseResult . HasOption ( CommonOptions . LongFormArchitectureOption ) ?
185
- CommonOptions . ResolveRidShorthandOptionsToRuntimeIdentifier (
186
- parseResult . GetValue ( CommonOptions . OperatingSystemOption ) ,
187
- CommonOptions . ArchOptionValue ( parseResult ) ) :
188
- null ;
189
- }
190
-
191
178
public static bool UsingRunCommandShorthandProjectOption ( this ParseResult parseResult )
192
179
{
193
180
if ( parseResult . HasOption ( RunCommandParser . PropertyOption ) && parseResult . GetValue ( RunCommandParser . PropertyOption ) ! . Any ( ) )
You can’t perform that action at this time.
0 commit comments