How to create Control panel entry for Squirrel.Windows Application? Isn't it something very trivial which such a popular tool supports out of box.
I tried using CreateUninstallerRegistryEntry
but no change.
using (var mgr = new UpdateManager(updateUrl))
{
// Note, in most of these scenarios, the app exits after this method
// completes!
SquirrelAwareApp.HandleEvents(
onInitialInstall: v =>
{
mgr.**CreateUninstallerRegistryEntry**();
mgr.CreateShortcutForThisExe();
},
onAppUpdate: v => mgr.CreateShortcutForThisExe(),
onAppUninstall: v =>
{
mgr.RemoveShortcutForThisExe();
mgr.RemoveUninstallerRegistryEntry();
},
onFirstRun: () => ShowTheWelcomeWizard = true);
}
I did my best possible research. Am I missing something?