Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/edf289ec51c1b3a286952dc9cc892d0f3647c739/CassiniDev/Misc/ServiceInstaller.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/CassiniDev/Misc/ServiceInstaller.cs

38 lines
880 B

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Configuration.Install;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Configuration;
namespace CassiniDev
{
[RunInstaller(true)]
public sealed class MyServiceInstallerProcess : ServiceProcessInstaller
{
public MyServiceInstallerProcess()
{
this.Account = ServiceAccount.NetworkService;
}
}
[RunInstaller(true)]
public sealed class MyServiceInstaller : ServiceInstaller
{
public MyServiceInstaller()
{
this.Description = "CassiniDev";
this.DisplayName = "CassiniDev";
this.ServiceName = "CassiniDev";
this.StartType = System.ServiceProcess.ServiceStartMode.Automatic;
}
}
}