You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support creating binlogs for the language server's design time builds
This allows you to configure a directory where we will write binlogs
for any design time builds. This is only needed when debugging project
system issues, but when you need this, you really need this.
Copy file name to clipboardexpand all lines: src/Features/LanguageServer/Microsoft.CodeAnalysis.LanguageServer/HostWorkspace/LanguageServerProjectSystem.cs
/// The suffix to use for the binary log name; incremented each time we have a new build. Should be incremented with <see cref="Interlocked.Increment(ref int)"/>.
41
+
/// </summary>
42
+
privateint_binaryLogNumericSuffix;
43
+
44
+
/// <summary>
45
+
/// A GUID put into all binary log file names, so that way one session doesn't accidentally overwrite the logs from a prior session.
Copy file name to clipboardexpand all lines: src/Features/LanguageServer/Protocol/Handler/Configuration/DidChangeConfigurationNotificationHandler_OptionList.cs
Copy file name to clipboardexpand all lines: src/Features/LanguageServer/ProtocolUnitTests/Configuration/DidChangeConfigurationNotificationHandlerTest.cs
+6-1
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,8 @@ public void VerifyLspClientOptionNames()
0 commit comments