Skip to content

Commit

Permalink
Added background loading of package
Browse files Browse the repository at this point in the history
  • Loading branch information
madskristensen committed Aug 8, 2016
1 parent a14174b commit e90ffb1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/VSPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@

namespace BrowserReloadOnSave
{
[PackageRegistration(UseManagedResourcesOnly = true)]
[PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)]
[InstalledProductRegistration("#110", "#112", Vsix.Version, IconResourceID = 400)]
[ProvideMenuResource("Menus.ctmenu", 1)]
[ProvideAutoLoad(UIContextGuids80.SolutionExists)]
[ProvideAutoLoad(UIContextGuids80.SolutionHasSingleProject, PackageAutoLoadFlags.BackgroundLoad)]
[ProvideAutoLoad(UIContextGuids80.SolutionHasMultipleProjects, PackageAutoLoadFlags.BackgroundLoad)]
[ProvideOptionPage(typeof(Options), "Web", Vsix.Name, 101, 102, true, new string[0], ProvidesLocalizedCategoryName = false)]
[Guid(PackageGuids.guidBrowserReloadPackageString)]
public sealed class VSPackage : Package
Expand Down

0 comments on commit e90ffb1

Please sign in to comment.