1

I made a simple application including VLCPlugin in .NET 2012 including framework 4.

I need to install the application in non-frame work installed machines also. Now when I build the application and try to install on a machine the following error showing.

My question is how to export the entire application including frameworks ? So that clients can install and works the application.

Anyone please help Thanks in advance

enter image description here

4

2 回答 2

4

您必须使用某种类型的安装程序。对于 Visual Studio 2012,您可以使用ClickOnce发布应用程序并将 .NET 4.0 标记为先决条件。对于 Visual Studio 的早期版本,您可以使用安装项目来创建基于 MSI 的安装;安装项目(如 ClickOnce 向导)应自动检测对 .NET 4.0 运行时的依赖性。您还可以使用InstallShield或其他市售安装程序创建包。唯一的其他选择是告诉您的用户从 Microsoft 下载 .NET 安装包的独立版本或Web版本。

于 2013-06-06T05:40:18.887 回答
1

为了分发商业软件,我们使用 WIX - http://wix.sourceforge.net/。这是免费的,您可以完全自定义安装过程,当然还可以检测和安装 .Net 框架。它有一个 Visual Studio 插件,可以很好地与 VS2012 配合使用。

于 2013-06-06T05:58:33.240 回答