Skip to content

Commit 913ba44

Browse files
committed
fix
1 parent 48c9cf9 commit 913ba44

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.nls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"configuration.dotnet.server.extensionPaths": "Override for path to language server --extension arguments",
3636
"configuration.dotnet.server.crashDumpPath": "Sets a folder path where crash dumps are written to if the language server crashes. Must be writeable by the user.",
3737
"configuration.dotnet.server.suppressLspErrorToasts": "Suppresses error toasts from showing up if the server encounters a recoverable error.",
38-
"configuration.dotnet.server.useServerGC": "Configure the language server to use .NET server garbage collection. Server garbage collection generally provides better performance when there is ample memory available.",
38+
"configuration.dotnet.server.useServerGC": "Configure the language server to use .NET server garbage collection. Server garbage collection generally provides better performance at the expensive of higher memory consumption.",
3939
"configuration.dotnet.enableXamlTools": "Enables XAML tools when using C# Dev Kit",
4040
"configuration.dotnet.enableXamlToolsPreview": "[Experimental] Enables XAML tools when using C# Dev Kit",
4141
"configuration.dotnet.projects.enableAutomaticRestore": "Enables automatic NuGet restore if the extension detects assets are missing.",

src/lsptoolshost/roslynLanguageServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ export class RoslynLanguageServer {
623623
// The server by default uses serverGC, if the user opts out we need to set the environment variable to disable it.
624624
env.DOTNET_gcServer = '0';
625625
if (isTraceLogLevel) {
626-
_channel.appendLine("ServerGC disabled");
626+
_channel.appendLine('ServerGC disabled');
627627
}
628628
}
629629

0 commit comments

Comments
 (0)