28 lines
1.2 KiB
C#
28 lines
1.2 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Runtime.InteropServices;
|
|
using Microsoft.VisualStudio.Shell;
|
|
|
|
namespace Microsoft.VisualStudio.SecretManager.TestExtension
|
|
{
|
|
[PackageRegistration(UseManagedResourcesOnly = true)]
|
|
[InstalledProductRegistration("#110", "#112", "1.0", IconResourceID = 400)] // Info on this package for Help/About
|
|
[ProvideMenuResource("Menus.ctmenu", 1)]
|
|
[ProvideToolWindow(typeof(SecretManagerTestWindow))]
|
|
[Guid(SecretManagerTestPackage.PackageGuidString)]
|
|
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "pkgdef, VS and vsixmanifest are valid VS terms")]
|
|
public sealed class SecretManagerTestPackage : Package
|
|
{
|
|
public const string PackageGuidString = "7b771e3e-f599-4fde-95a9-e35019e705f7";
|
|
|
|
protected override void Initialize()
|
|
{
|
|
SecretManagerTestCommand.Initialize(this);
|
|
base.Initialize();
|
|
}
|
|
}
|
|
}
|