Ravi Patel
Ravi Patel
There is no video available but it is very simple. Just create an XML file as shown [here](https://github.com/ravibpatel/AutoUpdater.NET#xml-file) and upload it on your server. Now in your application provide its...
No, You have to use 2 separate XML files for x64 and x86 version.
No, there is no callback present for this but you can fork the project and implement your logic in DownloadUpdateDialog.cs.
Did you try turning on error reporting to true, as shown [here](https://github.com/ravibpatel/AutoUpdater.NET#enable-error-reporting)?
I don't have any experience with VSTO add in, but you can try to [debug the app](https://github.com/ravibpatel/AutoUpdater.NET#steps-to-build-it-for-further-development) by adding it in your solution. You can also try debugging WebView2 itself....
Can you try adding the following line at the start of that function body? ```csharp if (!e.IsSuccess) { MessageBox.Show(e.InitializationException.Message); return; } ```
Can you try changing InitializeBrowserControl method signature with the following? ```csharp private async void InitializeBrowserControl() { if (string.IsNullOrEmpty(_args.ChangelogURL)) { var reduceHeight = labelReleaseNotes.Height + webBrowser.Height; labelReleaseNotes.Hide(); webBrowser.Hide(); webView2.Hide(); Height -=...
Yes, It should work fine with other implementations. I will add it to main code tomorrow. Thanks for testing it out.
I pushed changes to the repo. You can try out the latest DLL from [here](https://ci.appveyor.com/api/buildjobs/c6m1flxd5owgmd9y/artifacts/AutoUpdater.NET-1.7.5.zip) by manually referencing it. If everything works fine, then I will push the NuGet release.
I pushed release to NuGet. Thanks for the help.