Skip to content

Commit

Permalink
Fixed an issue that was causing ClearAppDirectory to not work. This f…
Browse files Browse the repository at this point in the history
…ixes #623.
  • Loading branch information
ravibpatel committed Jun 10, 2023
1 parent 743dbe4 commit b872af7
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions AutoUpdater.NET/AutoUpdater.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<Company>RBSoft</Company>
<Product>AutoUpdater.NET</Product>
<Copyright>Copyright © 2012-2023 RBSoft</Copyright>
<Version>1.8.1.0</Version>
<AssemblyVersion>1.8.1.0</AssemblyVersion>
<FileVersion>1.8.1.0</FileVersion>
<Version>1.8.3.0</Version>
<AssemblyVersion>1.8.3.0</AssemblyVersion>
<FileVersion>1.8.3.0</FileVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>AutoUpdater.NET.snk</AssemblyOriginatorKeyFile>
<NeutralLanguage>en</NeutralLanguage>
Expand Down Expand Up @@ -51,6 +51,6 @@
<PackageReference Include="Resource.Embedder" Version="1.2.8" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1774.30"/>
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1823.32"/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion AutoUpdater.NET/DownloadUpdateDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ private void WebClientOnDownloadFileCompleted(object sender, AsyncCompletedEvent

if (AutoUpdater.ClearAppDirectory)
{
arguments.Add(" --clear");
arguments.Add("--clear");
}

string[] args = Environment.GetCommandLineArgs();
Expand Down
10 changes: 5 additions & 5 deletions AutoUpdater.NET/build/Autoupdater.NET.Official.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http:https://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Autoupdater.NET.Official</id>
<version>1.8.2.0</version>
<version>1.8.3.0</version>
<title>AutoUpdater.NET</title>
<authors>rbsoft</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand All @@ -17,16 +17,16 @@
<tags>autoupdate updater c# vb wpf winforms</tags>
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="Microsoft.Web.WebView2" version="1.0.1774.30" exclude="Build,Analyzers"/>
<dependency id="Microsoft.Web.WebView2" version="1.0.1823.32" exclude="Build,Analyzers"/>
</group>
<group targetFramework=".NETCoreApp3.1">
<dependency id="Microsoft.Web.WebView2" version="1.0.1774.30" exclude="Build,Analyzers"/>
<dependency id="Microsoft.Web.WebView2" version="1.0.1823.32" exclude="Build,Analyzers"/>
</group>
<group targetFramework="net5.0-windows7.0">
<dependency id="Microsoft.Web.WebView2" version="1.0.1774.30" exclude="Build,Analyzers"/>
<dependency id="Microsoft.Web.WebView2" version="1.0.1823.32" exclude="Build,Analyzers"/>
</group>
<group targetFramework="net6.0-windows7.0">
<dependency id="Microsoft.Web.WebView2" version="1.0.1774.30" exclude="Build,Analyzers"/>
<dependency id="Microsoft.Web.WebView2" version="1.0.1823.32" exclude="Build,Analyzers"/>
</group>
</dependencies>
<frameworkReferences>
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 1.8.2.{build}
version: 1.8.3.{build}
environment:
my_version: 1.8.2
my_version: 1.8.3
my_secret:
secure: vbPRaZLQYpGPr4BrZZ4p6TofpSZMud+FKtlpqjgO8aA=
skip_branch_with_pr: true
Expand Down

0 comments on commit b872af7

Please sign in to comment.