Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Installer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
],
Expand Down
1 change: 1 addition & 0 deletions Tests.App/Services/SettingsManagerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using Coder.Desktop.App.Services;

namespace Coder.Desktop.Tests.App.Services;

[TestFixture]
public sealed class SettingsManagerTests
{
Expand Down
Loading