我有这个代码应该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*
我怎样才能通过解决方案中唯一的部署项目来生成这些?
谢谢。