Bonjours, j'ai un problème lié à la configuration lors de l'installation d'un service windows. Je n'ai pas accès à la configuration de mon App.config et je désirais pouvoir définir le nom de mon service à l'aide de ma configuration.
// Provide the ProjectInstaller class which allows
// the service to be installed by the Installutil.exe tool
[RunInstaller(true)]
public class ProjectInstaller : Installer
{
private ServiceProcessInstaller process;
private ServiceInstaller service;
public ProjectInstaller()
{
process = new ServiceProcessInstaller();
process.Account = ServiceAccount.LocalSystem;
service = new ServiceInstaller();
service.ServiceName = ConfigurationManager.AppSettings["WatchDogName"];
Installers.Add(process);
Installers.Add(service);
}
}
S'il y a quelqu'un qui a une idée comment résoudre mon problème, je serais très heureux qu'il m'en fasse part. Merci !
Partager