Riley Nielsen

Results 33 comments of Riley Nielsen

This is still an issue looking at the dev branch: https://github.com/MudBlazor/Templates/blob/dev/src/.template.base/server/Pages/Error.cshtml

> Can confirm that this happens with the `.exe` despite having Java 16. The `.jar` file works fine though. Same here. Latest version of both the jdk and jre are...

I tried calling dispose on the webview2 object but received this error: ``` System.NotSupportedException: 'Specified method is not supported.' ``` when called using ```csharp if (disposing) { blazorWebView1.WebView.Dispose(); } base.Dispose(disposing);...

Ok, I removed the WebView2 component from the project, commented out all of the services for Blazor, and published + copied to the machine I'm running this on. The app...

> Can you try adding a WebView2 without using Blazor? I have tested this and the webview2 processes shut down correctly along with the Cert Manager process. So this would...

Additionally, I am unable to reproduce this in a blazor webview app in WPF.

@MackinnonBuck So far the issue remains using the latest .NET 6 SDK. I am preparing a minimal repo now.

Here you go: ![image](https://user-images.githubusercontent.com/26885142/192000881-4a619db7-f2f6-4d56-b328-0346140d569d.png) For comparison, here is the output from my attempted minimal repo, where i was not able to reproduce the issue: ![image](https://user-images.githubusercontent.com/26885142/192002242-f5bc8d86-702c-41dc-bcdb-2cd8a00faa2d.png) The app with the issue...

@Eilon No luck so far, I commented out my component so that nothing loads but the basic structure of the app (zero API calls or anything special) and the process...

I take it back, I think I found the issue: I commented out my entire component and the issue was resolved. Here is my minimal App.razor: ```csharp @**@ ``` The...