#pragma warning disable
namespace Microsoft.VisualStudio.LanguageServices
{
using Microsoft.VisualStudio.Extensibility.Commands;
using Microsoft.VisualStudio.Extensibility;
public class CSharpExtensionCommandSet : CommandSetFactory
{
public CSharpExtensionCommandSet(System.IServiceProvider serviceProvider) : base(serviceProvider) { }
public override async System.Threading.Tasks.Task InitializeCommandsAsync(CommandSet commandSet)
{
await commandSet.RegisterCommandAsync(typeof(Microsoft.VisualStudio.LanguageServices.CSharp.Interactive.OpenInteractiveWindowCommand));
await commandSet.RegisterCommandAsync(typeof(Microsoft.VisualStudio.LanguageServices.CSharp.Interactive.ResetInteractiveWindowFromProjectCommand));
await commandSet.RegisterCommandAsync(typeof(Microsoft.VisualStudio.LanguageServices.CSharp.OpenSemanticSearchWindowCommand));
await base.InitializeCommandsAsync(commandSet);
}
}
}
|