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> <PlatformTarget>AnyCPU</PlatformTarget>
<Platforms>AnyCPU;x86</Platforms> <Platforms>AnyCPU;x86</Platforms>
<ApplicationIcon>Bloxstrap.ico</ApplicationIcon> <ApplicationIcon>Bloxstrap.ico</ApplicationIcon>
<Version>1.6.0</Version> <Version>1.6.1</Version>
<FileVersion>1.6.0.0</FileVersion> <FileVersion>1.6.1.0</FileVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@ -126,6 +126,7 @@ namespace Bloxstrap
} }
#if !DEBUG #if !DEBUG
if (!IsUninstall)
Updater.Check().Wait(); Updater.Check().Wait();
#endif #endif