Similar to how <iframe>, <embed>, <object> etc are used to embed external videos, plugins etc into websites, is it possible to directly embed an application into Blazor? Presumably a .NET application would be easier.
Something like
<div>
<application path="/dist/file/myApplication.exe"></application>
</div>
Looking at the capabilities of Web Assembly, I'm certain the general concept is achievable. I just wonder if there's a way to do it easily in Blazor.
Upate for clarification:
My original question wording was perhaps too simplistic. I don't necessarily mean that literally <application path="myApplication.exe"></application> would do the trick. What I'm really thinking about is the concept of a user-friendly way to embed a non-Javascript application into a website, via WASM. I mentioned Blazor because it seems to be the current best contender for offering an easier way to do this.
Here's what inspired this question: https://webassembly.org/demo/Tanks/
I figured that since a Unity game has been successfully ported to run in Web Assembly on the browser, it might be possible to do similar with any application (within reason).
Perhaps not now, but in a not-too-distant future.