是否有与 Java Web Start 相当的 .NET 版本?
是否有与 Java Web Start 相当的 .NET 版本?
我想要从网络上一键轻量安装一组 .NET 程序集和资源。 希望该链接能够继续让用户获得最新版本的更新,类似于 Java Web Start 的做法。
就其价值而言,该应用程序是用 F# 编写的。
Is there a .NET equivalent of Java Web Start?
I want a one-click, from the web, lightweight install for a group of .NET assemblies and resources. Hopefully, the link would continue to keep the user updated with the latest version, similar to what Java Web Start does.
The application is written in F#, for what it's worth.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为您正在谈论 ClickOnce 部署
http://msdn .microsoft.com/en-us/library/t71a733d(VS.80).aspx
I think you're talking about ClickOnce Deployment
http://msdn.microsoft.com/en-us/library/t71a733d(VS.80).aspx
Microsoft 的 ClickOnce
Microsoft's ClickOnce
啊哈,您可以使用 .NET 框架(而不是 Visual Studio)附带的 msbuild.exe 来发布 .NET 应用程序。 您可以使用免费工具从命令行完成这一切。
有关使用 msbuild 从命令行进行发布的文档位于:http ://msdn.microsoft.com/en-us/library/ms165431(VS.80).aspx
创建正确的 ClickOnce 清单和证书的说明如下:
http://msdn.microsoft.com/en-us /library/xc3tc5xx(VS.80).aspx
Aha, you can publish a .NET application using the msbuild.exe that ships with the .NET framework (not with Visual Studio). You can do it all from the command line with the free tools.
Documentation on publishing from the command line with msbuild is here: http://msdn.microsoft.com/en-us/library/ms165431(VS.80).aspx
Instructions for creating the proper ClickOnce manifest and certificates is here:
http://msdn.microsoft.com/en-us/library/xc3tc5xx(VS.80).aspx