Skip to content

Commit b9ab4b7

Browse files
committed
fix the build?
1 parent e912bdd commit b9ab4b7

File tree

1 file changed

+2
-2
lines changed
  • src/LanguageServer/Microsoft.CodeAnalysis.LanguageServer

1 file changed

+2
-2
lines changed

src/LanguageServer/Microsoft.CodeAnalysis.LanguageServer/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ static async Task RunAsync(ServerConfiguration serverConfiguration, Cancellation
171171
}
172172
}
173173

174-
static RootCommand CreateCommandLineParser()
174+
static CommandLineConfiguration CreateCommandLineParser()
175175
{
176176
var debugOption = new Option<bool>("--debug")
177177
{
@@ -300,7 +300,7 @@ static RootCommand CreateCommandLineParser()
300300
return RunAsync(serverConfiguration, cancellationToken);
301301
});
302302

303-
var config = new CliConfiguration(rootCommand)
303+
var config = new CommandLineConfiguration(rootCommand)
304304
{
305305
// By default, System.CommandLine will catch all exceptions, log them to the console, and return a non-zero exit code.
306306
// Unfortunately this makes .NET's crash dump collection environment variables (e.g. 'DOTNET_DbgEnableMiniDump')

0 commit comments

Comments
 (0)