Don't check for updates on uninstall

This commit is contained in:
pizzaboxer 2023-01-02 11:27:54 +00:00
parent a82040a471
commit 2b21720894
2 changed files with 4 additions and 3 deletions

View File

@ -10,8 +10,8 @@
<PlatformTarget>AnyCPU</PlatformTarget>
<Platforms>AnyCPU;x86</Platforms>
<ApplicationIcon>Bloxstrap.ico</ApplicationIcon>
<Version>1.6.0</Version>
<FileVersion>1.6.0.0</FileVersion>
<Version>1.6.1</Version>
<FileVersion>1.6.1.0</FileVersion>
</PropertyGroup>
<ItemGroup>

View File

@ -126,7 +126,8 @@ namespace Bloxstrap
}
#if !DEBUG
Updater.Check().Wait();
if (!IsUninstall)
Updater.Check().Wait();
#endif
string commandLine = "";