English 中文(简体)
在没有网络框架的机器下安装世界森林基金会的申请
原标题:Installing WPF application on machine without .NET Framework 4

我正在利用“2010年视觉演播室”制作一个安装板套,安装WPF应用程序。 我可以看到,我可以补充一点。 NET Framework 4.0, as a pre-requisite, but how do 我请他自动操作而无需人工干预?

我是否必须设立一个小型方案(目标框架1.1,因为我假定大多数机器有1.1)来检测。 NET 4.0框架已经存在,如果没有静态安装,或者我能够接手安装。

我还必须安装OLEDB 12个司机,因为Im与2007年访问数据库连接,因此,我还必须在我提出申请之前管理这个安装机。

我不想把安装放在下载和安装框架上,而是想把框架重新分配给设置。

希望得到任何帮助。

增 编

最佳回答
问题回答

你们需要包括: NET在你的设置计划中可以重新分配的可执行性。 ,第条——其谈到Wdows App, VS 2008amp;NET 3.5,但同样的事情也应适用于你。

In FW 4.0 you can have you program running under a "Client Profile" that is a light version of the framework that takes around 30MB and can be part of the installation. This works only if your software is light and doesn t use libraries that are outside of the "Client Profile". If your program can t be compiled using a "Client Profile" and you need the whole framework there is no way of adding the whole framework to your installation and you will need to supply a link for download or supply the full FW installation with your program.

有2个设施。 a 安装灯,实际从管理系统下载包裹,全安装,约300元。 两者均可从管理系统下载。





相关问题
Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How do I compare two decimals to 10 decimal places?

I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....

Exception practices when creating a SynchronizationContext?

I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...

Show running instance in single instance application

I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...

热门标签