У меня есть этот код, который должен 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*
Как я могу получить их через единственный проект развертывания в решении?
Спасибо.