|
// 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.
#nullable disable
using System;
using System.ComponentModel.Design;
using System.Runtime.InteropServices;
using Microsoft.VisualStudio.LanguageServices.Interactive;
using Microsoft.VisualStudio.Shell;
using LanguageServiceGuids = Microsoft.VisualStudio.LanguageServices.Guids;
namespace Microsoft.VisualStudio.LanguageServices.CSharp.Interactive
{
[Guid(LanguageServiceGuids.CSharpReplPackageIdString)]
internal sealed partial class CSharpVsInteractiveWindowPackage : VsInteractiveWindowPackage<CSharpVsInteractiveWindowProvider>
{
private const string IdString = "CA8CC5C7-0231-406A-95CD-AA5ED6AC0190";
internal static readonly Guid Id = new(IdString);
protected override Guid ToolWindowId
{
get { return Id; }
}
protected override Guid LanguageServiceGuid
{
get { return LanguageServiceGuids.CSharpLanguageServiceId; }
}
protected override void InitializeMenuCommands(OleMenuCommandService menuCommandService)
{
var openInteractiveCommand = new MenuCommand(
(sender, args) => this.InteractiveWindowProvider.Open(instanceId: 0, focus: true),
new CommandID(ID.InteractiveCommands.CSharpInteractiveCommandSetId, ID.InteractiveCommands.InteractiveToolWindow));
menuCommandService.AddCommand(openInteractiveCommand);
}
}
}
|