Windows应用程序的部署
我是 C# 新手,我开发了一个使用 SQL Server 数据库的 Windows 应用程序 (c#)。我想将我的应用程序分发到客户端计算机,但我不知道如何执行此操作。我在谷歌上搜索试图找到解决方案,但我什么也找不到。
打包应用程序以便在客户端计算机上安装的正确方法是什么?
I am new to C#, and I've developed a windows application (c#) that uses a SQL Server database. I want to distribute my application to a client machine, but I'm not sure how to do this. I've searched on Google to try and find a solution, but nothing I wasn't able to find anything.
What's the correct way to package my application for installation on the client machine?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想要部署 WinForms 应用程序,一个简单的方法是使用 ClickOnce 部署。您可以向客户端计算机提供 ClickOnce 部署应用程序,并使用它来分发更新。
以下链接解释了ClickOnce
If you want to deploy an WinForms application an easy way to do this is to use ClickOnce deployment. You can offer the ClickOnce deployment app to the client computers and also use it to distribute updates.
The following link explains ClickOnce
您可以考虑使用安装项目,为最终用户提供在安装时配置应用程序的选项。
http://msdn.microsoft.com/en-us/library/wx3b589t.aspx
You might consider using a setup project, giving the end user the option to configure the app at installation time.
http://msdn.microsoft.com/en-us/library/wx3b589t.aspx
asp.net 用于 Web 开发。您可能应该研究一下 WPF:
http://windowsclient.net/wpf/
asp.net is for web development. You should probably look into WPF:
http://windowsclient.net/wpf/