Skip to content

Commit

Permalink
Now handling any exception thrown while checking for WebView2. This r…
Browse files Browse the repository at this point in the history
…esolves #605.
  • Loading branch information
ravibpatel committed Feb 24, 2023
1 parent ab843aa commit f746142
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 deletions AutoUpdater.NET/AutoUpdater.NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
<AssemblyTitle>AutoUpdater.NET</AssemblyTitle>
<Company>RBSoft</Company>
<Product>AutoUpdater.NET</Product>
<Copyright>Copyright © 2012-2022 RBSoft</Copyright>
<Version>1.7.6.0</Version>
<AssemblyVersion>1.7.6.0</AssemblyVersion>
<FileVersion>1.7.6.0</FileVersion>
<Copyright>Copyright © 2012-2023 RBSoft</Copyright>
<Version>1.7.7.0</Version>
<AssemblyVersion>1.7.7.0</AssemblyVersion>
<FileVersion>1.7.7.0</FileVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>AutoUpdater.NET.snk</AssemblyOriginatorKeyFile>
<NeutralLanguage>en</NeutralLanguage>
<PackageId>Autoupdater.NET.Official</PackageId>
<IncludeSymbols>true</IncludeSymbols>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageVersion>1.7.6.0</PackageVersion>
<PackageVersion>1.7.7.0</PackageVersion>
<Title>AutoUpdater.NET</Title>
<Authors>rbsoft</Authors>
<Description>AutoUpdater.NET is a class library that allows .NET developers to easily add auto update functionality to their WinForms or WPF application projects.</Description>
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.1418.22" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1587.40" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion AutoUpdater.NET/UpdateForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ private async void InitializeBrowserControl()
webView2RuntimeFound = true;
}
}
catch (WebView2RuntimeNotFoundException)
catch (Exception)
{
// ignored
}
Expand Down
12 changes: 6 additions & 6 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.7.6.0</version>
<version>1.7.7.0</version>
<title>AutoUpdater.NET</title>
<authors>rbsoft</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand All @@ -11,20 +11,20 @@
<projectUrl>https://github.com/ravibpatel/AutoUpdater.NET</projectUrl>
<description>AutoUpdater.NET is a class library that allows .NET developers to easily add auto update functionality to their WinForms or WPF application projects.</description>
<releaseNotes>https://github.com/ravibpatel/AutoUpdater.NET/releases</releaseNotes>
<copyright>Copyright © 2012-2022 RBSoft</copyright>
<copyright>Copyright © 2012-2023 RBSoft</copyright>
<tags>autoupdate updater c# vb wpf winforms</tags>
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="Microsoft.Web.WebView2" version="1.0.1418.22" exclude="Build,Analyzers" />
<dependency id="Microsoft.Web.WebView2" version="1.0.1587.40" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETCoreApp3.1">
<dependency id="Microsoft.Web.WebView2" version="1.0.1418.22" exclude="Build,Analyzers" />
<dependency id="Microsoft.Web.WebView2" version="1.0.1587.40" exclude="Build,Analyzers" />
</group>
<group targetFramework="net5.0-windows7.0">
<dependency id="Microsoft.Web.WebView2" version="1.0.1418.22" exclude="Build,Analyzers" />
<dependency id="Microsoft.Web.WebView2" version="1.0.1587.40" exclude="Build,Analyzers" />
</group>
<group targetFramework="net6.0-windows7.0">
<dependency id="Microsoft.Web.WebView2" version="1.0.1418.22" exclude="Build,Analyzers" />
<dependency id="Microsoft.Web.WebView2" version="1.0.1587.40" exclude="Build,Analyzers" />
</group>
</dependencies>
<frameworkReferences>
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2012-2022 RBSoft
Copyright (c) 2012-2023 RBSoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion ZipExtractor/ZipExtractor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<AssemblyTitle>ZipExtractor</AssemblyTitle>
<Company>RBSoft</Company>
<Product>ZipExtractor</Product>
<Copyright>Copyright © 2012-2022 RBSoft</Copyright>
<Copyright>Copyright © 2012-2023 RBSoft</Copyright>
<Version>1.3.2.0</Version>
<AssemblyVersion>1.3.2.0</AssemblyVersion>
<FileVersion>1.3.2.0</FileVersion>
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.7.6.{build}
version: 1.7.7.{build}
environment:
my_version: 1.7.6
my_version: 1.7.7
my_secret:
secure: vbPRaZLQYpGPr4BrZZ4p6TofpSZMud+FKtlpqjgO8aA=
skip_branch_with_pr: true
Expand Down

0 comments on commit f746142

Please sign in to comment.