Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/Tools/ExternalAccess/Razor/Features/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
// See the LICENSE file in the project root for more information.

using Microsoft.CodeAnalysis.LanguageServer;
using Microsoft.CodeAnalysis.LanguageServer.Handler;
using Microsoft.CodeAnalysis.LanguageServer.Handler.CodeActions;
using Microsoft.CodeAnalysis.LanguageServer.Handler.Completion;

namespace Microsoft.CodeAnalysis.ExternalAccess.Razor;
Expand All @@ -12,4 +14,10 @@ internal static class Constants
public const string RazorLanguageName = LanguageInfoProvider.RazorLanguageName;

public const string CompleteComplexEditCommand = CompletionResultFactory.CompleteComplexEditCommand;

public const string RunFixAllCodeActionCommandName = CodeActionsHandler.RunFixAllCodeActionCommandName;
public const string RunNestedCodeActionCommandName = CodeActionsHandler.RunNestedCodeActionCommandName;
public const string NestedCodeActionsPropertyName = nameof(CodeActionResolveData.NestedCodeActions);
public const string CodeActionPathPropertyName = nameof(CodeActionResolveData.CodeActionPath);
public const string FixAllFlavorsPropertyName = nameof(CodeActionResolveData.FixAllFlavors);
}
Loading