-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
1 parent
47b1d1c
commit d012eef
Showing
3 changed files
with
51 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...res/LanguageServer/Protocol/Features/Options/LanguageServerProjectSystemOptionsStorage.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
using Microsoft.CodeAnalysis.Options; | ||
|
||
namespace Microsoft.CodeAnalysis.LanguageServer.HostWorkspace | ||
{ | ||
internal static class LanguageServerProjectSystemOptionsStorage | ||
{ | ||
private static readonly OptionGroup s_optionGroup = new(name: "project_loading", description: ""); | ||
|
||
/// <summary> | ||
/// A folder to log binlogs to when running design-time builds. | ||
/// </summary> | ||
public static readonly Option2<string?> BinaryLogPath = new Option2<string?>("dotnet_binary_log_path", defaultValue: null, s_optionGroup); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters