1

I really doubt it but I figure it never hurts to ask... what I want to do is create a game matchmaking site that is capable of launching the actual games from within the web app. If not I guess I can create a client/server desktop app or something instead...

ekolis
  • 6,270
  • 12
  • 50
  • 101

1 Answers1

2

No, the PWA sandbox prohibits it.

You could try building an Electron app that runs your Blazor WASM - https://github.com/aspnet/AspLabs/tree/master/src/ComponentsElectron

Or you could give the following link a try. It does something similar, but doesn't bundle the browser in order to reduce size - https://github.com/steveSandersonMS/BlazorDesktop

Steve Sanderson wrote a pretty informative blog on it https://blog.stevensanderson.com/2019/11/01/exploring-lighter-alternatives-to-electron-for-hosting-a-blazor-desktop-app/

Peter Morris
  • 20,174
  • 9
  • 81
  • 146