ClickOnce 与查询参数等效
我有一个使用 ClickOnce 部署的 .NET 6 WPF 应用程序。部署和更新工作正常,但是,ApplicationDeployment
类在 .NET 6 中不再可用,这意味着我无法读取启动 URL 中给出的查询字符串。
是否有使用 .NET 6 的替代方案或解决方法,仍然可以使用 URL 启动并且可以接受查询参数?
I have a .NET 6 WPF application deployed with ClickOnce. Deployment and update works fine, however, the ApplicationDeployment
class is not available anymore in .NET 6, which means I can't read the query string given in the startup URL.
Is there an alternative or a workaround, working with .NET 6, that can still be launched with a URL and that can accept query parameters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第 1 步:
将VS2022更新到最新版本。
步骤 2:
项目右键=>发布=>发布选项卡 =>显示全部=>设置选项卡 =>选项=>允许 URL 参数...
步骤 3:
将此文件代码复制到您的应用。
步骤 4:
编写如下代码:
Step-1:
Update the VS2022 to the lastest version.
Step-2:
Project RightClick => Publish => Publish-Tab => Show All => Setting-tab => Options => Allow Url-Paramaters....
Step-3:
Copy this file code to you app.
Step-4:
Write Fllowing code: