如何部署VS2008 express桌面项目?

时间:2023-01-06 08:17:48

i was wondering how could i deploy/make it into an installer for an app which is created using vs 2008 express. i know that the setup and deployment feature is only available via the full version of visual studio right?

我想知道如何部署/使其成为使用vs 2008 express创建的应用程序的安装程序。我知道设置和部署功能只能通过完整版的visual studio才能使用吗?

So are there any add ons or perhaps additional free/or non-free if it has to come to that which i can use to do this?

那么有没有添加或者可能是额外的免费/或非免费的,如果它必须达到我可以用来做这个?

or is the best tool for the job is the old visual studio installer from the vs 6.0 days? :)

或者是这个工作的最佳工具是vs 6.0天的旧视觉工作室安装程序? :)

thanks

Updates: After some googling, i found this link on using click once to deploy vs 2008 express with tutorials in them, i'll check it out, but of course more & better recommendation is always welcomed :)

更新:经过一些谷歌搜索,我发现这个链接使用点击一次部署vs 2008快递与其中的教程,我会检查出来,但当然更多和更好的建议总是欢迎:)

2 个解决方案

#1


WiX is excellent. Here is a good MSDN article on it too.

WiX非常棒。这是一篇很好的MSDN文章。

#2


I would definitely recommend ClickOnce. It's how I distribute Comicster (my own hobby project written using C# Express). It handles updates to your app, too, which is very nice.

我肯定会推荐ClickOnce。这是我分发Comicster(我自己的使用C#Express编写的爱好项目)的方式。它也处理你的应用程序的更新,这是非常好的。

If you can't deploy to a web site, ClickOnce also supports deploying to a folder for file-based installs (eg CD or network share).

如果无法部署到网站,ClickOnce还支持部署到文件夹以进行基于文件的安装(例如CD或网络共享)。

#1


WiX is excellent. Here is a good MSDN article on it too.

WiX非常棒。这是一篇很好的MSDN文章。

#2


I would definitely recommend ClickOnce. It's how I distribute Comicster (my own hobby project written using C# Express). It handles updates to your app, too, which is very nice.

我肯定会推荐ClickOnce。这是我分发Comicster(我自己的使用C#Express编写的爱好项目)的方式。它也处理你的应用程序的更新,这是非常好的。

If you can't deploy to a web site, ClickOnce also supports deploying to a folder for file-based installs (eg CD or network share).

如果无法部署到网站,ClickOnce还支持部署到文件夹以进行基于文件的安装(例如CD或网络共享)。