mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
20 lines
558 B
C#
20 lines
558 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Microsoft.VisualStudio.Imaging;
|
|
using Microsoft.VisualStudio.Shell;
|
|
|
|
namespace Cosmos.VS.Windows.ToolWindows
|
|
{
|
|
[Guid(ToolWindowGuid)]
|
|
internal class AssemblyToolWindow : ToolWindowPane2
|
|
{
|
|
public const string ToolWindowGuid = "f019fb29-c2c2-4d27-9abf-739533c939be";
|
|
|
|
public AssemblyToolWindow()
|
|
{
|
|
BitmapImageMoniker = KnownMonikers.DisassemblyWindow;
|
|
Caption = "Cosmos Assembly";
|
|
Content = new AssemblyUC();
|
|
}
|
|
}
|
|
}
|