nGen EXE + DLL通过安装和部署项目

时间:2012-01-17 11:53:14

标签: winforms c#-4.0 setup-deployment ngen

我有这个代码, nGen我的主要应用程序EXE:

using System;
using System.Collections;
using System.ComponentModel;
using System.Configuration.Install;
using System.Data;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;

namespace FileOnline.DesktopClient.Setup.Support {
    [RunInstaller(true)]
    public partial class CustomNGen : Installer {

        public override void Install(IDictionary stateSaver) {
            base.Install(stateSaver);
            ExecuteNGen("install", true);
        }

        public override void Uninstall(IDictionary savedState) {
            base.Uninstall(savedState);
            //CleanUpShortcuts();
            ExecuteNGen("uninstall", false);
        }

        private void ExecuteNGen(string cmd, bool validate) {
            var ngenStr = Path.Combine(RuntimeEnvironment.GetRuntimeDirectory(), "ngen");
            var assemblyPath = Context.Parameters["assemblypath"];

            using (var process = new Process {
                StartInfo = {
                    FileName = ngenStr,
                    Arguments = string.Format(@"{0} ""{1}""", cmd, assemblyPath),
                    CreateNoWindow = true,
                    UseShellExecute = false
                }
            }) {
                process.Start();
                process.WaitForExit();

                if (validate && process.ExitCode != 0)
                    throw new Exception(String.Format("Ngen exit code: {0}", process.ExitCode));
            }
        }

    }

}

我需要的是,不仅EXE是nGen'd,而且所有引用的DLL(我的整个解决方案)也得到了nGen'd

说我的EXE项目被调用:

FileOnline.DesktopClient

这取决于这些:

FileOnline.DesktopClient.BaseControls
FileOnline.DesktopClient.BaseForms
FileOnline.DesktopClient.Utilities
FileOnline.DesktopClient.Dialogboxes
FileOnline.DesktopClient.HelpingExtension
FileOnline.DesktopClient.*More stuff*

如何通过解决方案中唯一的部署项目来解决这些问题?

感谢。

1 个答案:

答案 0 :(得分:3)

它是自动的,ngen.exe通过Assembly.GetReferencedAssemblies()找到这些程序集。您只需要使用Assembly.Load / From()来处理自己加载的程序集。如果在.exe.config文件中有异常绑定规则,请查看/ execonfig选项,ngen.exe也需要知道这些规则,以便找到正确的程序集。

替代方法是herehere

相关问题