From d17d347decba14af90127f8be87fe3347cd7ffff Mon Sep 17 00:00:00 2001 From: parnic Date: Sun, 6 Sep 2015 01:30:15 -0500 Subject: [PATCH] Intellisense complained about this use of an attribute Apparently the overload of the InstalledProductRegistration attribute constructor I was using has been deprecated, so I converted it to an appropriate one. --- OpenFileInSolutionPackage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenFileInSolutionPackage.cs b/OpenFileInSolutionPackage.cs index 2d696a6..031ec9a 100644 --- a/OpenFileInSolutionPackage.cs +++ b/OpenFileInSolutionPackage.cs @@ -43,7 +43,7 @@ public ProjectItemWrapper(ProjectItem inItem) [PackageRegistration(UseManagedResourcesOnly = true)] // This attribute is used to register the information needed to show this package // in the Help/About dialog of Visual Studio. - [InstalledProductRegistration(true, "#110", "#112", "1.5", IconResourceID = 400)] + [InstalledProductRegistration("OpenFileInSolution", "Displays a dialog to quick-open any file in the solution", "ID")] [Guid(GuidList.guidOpenFileInSolutionPkgString)] [ProvideMenuResource("Menus.ctmenu", 1)] public sealed class OpenFileInSolutionPackage : Package