We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce88d1d commit 7f937b0Copy full SHA for 7f937b0
1 file changed
docs/migrating/clickonce.mdx
@@ -26,7 +26,7 @@ We will need to start by publishing your first Velopack release.
26
.WithAfterInstallFastCallback((appVersion) =>
27
{
28
var uninstallInfo = UninstallInfo.Find("Application Name");
29
- if (uninstallInfo == null)
+ if (uninstallInfo != null)
30
31
var uninstaller = new Uninstaller();
32
uninstaller.Uninstall(uninstallInfo);
0 commit comments