diff --git a/Installer/Program.cs b/Installer/Program.cs index 98ed6fa..468886b 100644 --- a/Installer/Program.cs +++ b/Installer/Program.cs @@ -227,10 +227,10 @@ private static int BuildMsiPackage(MsiOptions opts) RestartServiceDelayInSeconds = 30, ResetPeriodInDays = 1, PreShutdownDelay = 1000 * 60 * 3, // default - // This matches Tailscale's service dependencies. + // This matches Tailscale's service dependencies, with one omission: iphlpsvc. We do not + // use any of the IPv6 transition technologies provided by that service. DependsOn = [ - new ServiceDependency("iphlpsvc"), // IP Helper new ServiceDependency("netprofm"), // Network List Service new ServiceDependency("WinHttpAutoProxySvc"), // WinHTTP Web Proxy Auto-Discovery Service ], diff --git a/Tests.App/Services/SettingsManagerTest.cs b/Tests.App/Services/SettingsManagerTest.cs index 44f5c06..6b0d4df 100644 --- a/Tests.App/Services/SettingsManagerTest.cs +++ b/Tests.App/Services/SettingsManagerTest.cs @@ -2,6 +2,7 @@ using Coder.Desktop.App.Services; namespace Coder.Desktop.Tests.App.Services; + [TestFixture] public sealed class SettingsManagerTests {