diff --git a/src/LanguageServer/Protocol/Handler/Configuration/DidChangeConfigurationNotificationHandler_OptionList.cs b/src/LanguageServer/Protocol/Handler/Configuration/DidChangeConfigurationNotificationHandler_OptionList.cs index 12e5a6472c8cf..a6402a1305666 100644 --- a/src/LanguageServer/Protocol/Handler/Configuration/DidChangeConfigurationNotificationHandler_OptionList.cs +++ b/src/LanguageServer/Protocol/Handler/Configuration/DidChangeConfigurationNotificationHandler_OptionList.cs @@ -56,6 +56,7 @@ internal partial class DidChangeConfigurationNotificationHandler LspOptionsStorage.LspEnableTestsCodeLens, LanguageServerProjectSystemOptionsStorage.BinaryLogPath, LanguageServerProjectSystemOptionsStorage.EnableAutomaticRestore, + MetadataAsSourceOptionsStorage.NavigateToSourceLinkAndEmbeddedSources, ]; } } diff --git a/src/LanguageServer/ProtocolUnitTests/Configuration/DidChangeConfigurationNotificationHandlerTest.cs b/src/LanguageServer/ProtocolUnitTests/Configuration/DidChangeConfigurationNotificationHandlerTest.cs index 0c8a0376beaec..d8c3e3e15ff66 100644 --- a/src/LanguageServer/ProtocolUnitTests/Configuration/DidChangeConfigurationNotificationHandlerTest.cs +++ b/src/LanguageServer/ProtocolUnitTests/Configuration/DidChangeConfigurationNotificationHandlerTest.cs @@ -145,7 +145,8 @@ public void VerifyLspClientOptionNames() "code_lens.dotnet_enable_references_code_lens", "code_lens.dotnet_enable_tests_code_lens", "projects.dotnet_binary_log_path", - "projects.dotnet_enable_automatic_restore" + "projects.dotnet_enable_automatic_restore", + "navigation.dotnet_navigate_to_source_link_and_embedded_sources" }; AssertEx.SetEqual(expectedNames, actualNames);