英文:
In a .net blazor maui app does the user need to update from the app store if only blazor is updated?
问题
我正在调查是否使用.NET Maui Blazor混合技术来更新公司的某些移动应用是一个好的选择。
理想情况下,我们希望能够在用户不必从iOS/Android应用商店更新应用的情况下推送更新。
我的问题是:一旦我测试并发布了我的应用程序,如果我只更新我的应用程序的BLAZOR部分,是否需要用户更新应用程序?
附带问题是,Maui/hybrid应用程序的Blazor部分是服务器端Blazor还是WebAssembly类型?
如果我只需要推送更新而不需要用户做任何操作,那将是很棒的。
英文:
I'm investigating whether a .net Maui Blazor hybrid is a good fit to update some mobile apps at my company.
Ideally we would love to be able to push updates without the user having to update the app from the ios/android app store.
My question is: once I get my app tested and published, if I ONLY update the BLAZOR part of my app will this require the user to update the app?
Side question, is the Blazor part of a Maui/hybrid app server-side blazor or the webassebmly type?
It would be great if I could just push updates without the user having to do anything.
答案1
得分: 2
-
Maui Blazor 兼容 WebAssembly Blazor(服务器端 API 没有本地 Web 服务器)。它是一种“Blazor 混合 Web 应用程序”。
-
它是包含在应用程序捆绑包中的自包含内容;您的 Razor 页面成为其中的一部分。因此,任何更新都需要更新应用程序本身。
英文:
-
Maui Blazor is compatible with webassembly blazor (there is no local web server for server-side apis). It is a type of "Blazor Hybrid Web App".
-
It is self-contained in the app bundle; your razor pages become part of that. Therefore, any update requires the app itself to be updated.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论