flamencist / flamencist/Core.System.Configuration.Install
Service is being created with executable path pointing to DLL instead of EXE
- Vorherrschende Sprache
- C#
- Sterne
- 26
- Forks
- 12
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
We have a service installation code which works just fine with .NET Frameworks 4.8 Console application based on `ServiceBase`:
```C#
ManagedInstallerClass.InstallHelper(new string[] { Assembly.GetExecutingAssembly().Location });
```
```C#
using System.ComponentModel;
using System.Configuration.Install;
using System.ServiceProcess;
namespace TestServiceInstall
{
[RunInstaller(true)]
public class TestServiceInstaller : Installer
{
public TestServiceInstaller()
{
ServiceProcessInstaller processInstaller = new ServiceProcessInstaller();
ServiceInstaller serviceInstaller = new ServiceInstaller();
// set the privileges
processInstaller.Account = ServiceAccount.LocalSystem;
serviceInstaller.DisplayName = GlobalVar.SERVICE_NAME;
serviceInstaller.StartType = ServiceStartMode.Automatic;
serviceInstaller.DelayedAutoStart = true;
serviceInstaller.ServicesDependedOn = new string[] { "Tcpip" };
// must be the same as what was set in Program's constructor
serviceInstaller.ServiceName = GlobalVar.SERVICE_NAME;
// installer code here
this.AfterInstall += new InstallEventHandler(ServiceInstaller_AfterInstall);
this.Installers.Add(processInstaller);
this.Installers.Add(serviceInstaller);
}
void ServiceInstaller_AfterInstall(object sender, InstallEventArgs e)
{
ServiceController sc = new ServiceController(GlobalVar.SERVICE_NAME);
sc.Start();
}
}
}
```
We tried to migrate to .NET 6.0 and use this library to install the service in a same way we used to, but what happens is service binary path changed from EXE file to DLL file and we can't figure out how to point it to the EXE file.
We've tried changing `Assembly.GetExecutingAssembly().Location` to `Environment.ProcessPath` but it gives us the following error:
```
System.BadImageFormatException: Bad IL format. The format of the file '%EXE path here%' is invalid..
```
So the question is how can we use this library to install a windows service pointing to EXE file instead of DLL?
Beitragsleitfaden
Für dieses Repository ist kein Beitragsleitfaden indexiert
Rechercherichtung
Beginne mit ManagedInstallerClass.InstallHelper und der im Issue gezeigten Einrichtung von ServiceInstaller. Reproduziere anschließend die .NET 6-Installation unter Verwendung von Assembly.GetExecutingAssembly().Location und Environment.ProcessPath. Verfolge nach, wie die Bibliothek den Pfad zur Dienstbinärdatei ableitet, und überprüfe die Fehlerbehebung, indem du die Installation erfolgreich durchführst und den Dienst so konfigurierst, dass er die vorgesehene ausführbare Datei startet.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- csharp
- Bereich
- operating-systems, tooling
- Issue-Typ
- Bug
- Schwierigkeit
- 4/5
- Geschätzter Aufwand
- 3-5 Tage
- Aktivitätsstatus
- Veraltet
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 25/100