Skip to content

Commit

Permalink
Intellisense complained about this use of an attribute
Browse files Browse the repository at this point in the history
Apparently the overload of the InstalledProductRegistration attribute constructor I was using has been deprecated, so I converted it to an appropriate one.
  • Loading branch information
parnic committed Sep 6, 2015
1 parent b36374d commit d17d347
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenFileInSolutionPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d17d347

Please sign in to comment.