Skip to content

Commit b554bf5

Browse files
committed
Registry key to AppMutagenController
1 parent 5aa8f82 commit b554bf5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: App/App.xaml.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ public partial class App : Application
2222
private bool _handleWindowClosed = true;
2323

2424
#if !DEBUG
25-
private const string MutagenControllerConfigSection = "MutagenController";
25+
private const string MutagenControllerConfigSection = "AppMutagenController";
2626
#else
27-
private const string MutagenControllerConfigSection = "DebugMutagenController";
27+
private const string MutagenControllerConfigSection = "DebugAppMutagenController";
2828
#endif
2929

3030
public App()

Diff for: App/Services/MutagenController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public interface ISyncSessionController
4646
}
4747

4848
// These values are the config option names used in the registry. Any option
49-
// here can be configured with `(Debug)?MutagenController:OptionName` in the registry.
49+
// here can be configured with `(Debug)?AppMutagenController:OptionName` in the registry.
5050
//
5151
// They should not be changed without backwards compatibility considerations.
5252
// If changed here, they should also be changed in the installer.

Diff for: Installer/Program.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ private static int BuildMsiPackage(MsiOptions opts)
262262
@"[INSTALLFOLDER]coder-desktop-service.log"),
263263
new RegValue(RegistryHive, RegistryKey, "Manager:TunnelBinarySignatureSigner", "Coder Technologies Inc."),
264264
new RegValue(RegistryHive, RegistryKey, "Manager:TunnelBinaryAllowVersionMismatch", "false"),
265-
// Add registry values that are consumed by the MutagenController. See App/Services/MutagenController.cs
266-
new RegValue(RegistryHive, RegistryKey, "MutagenController:MutagenExecutablePath",
265+
// Add registry values that are consumed by the App MutagenController. See App/Services/MutagenController.cs
266+
new RegValue(RegistryHive, RegistryKey, "AppMutagenController:MutagenExecutablePath",
267267
@"[INSTALLFOLDER]mutagen.exe")
268268
);
269269

0 commit comments

Comments
 (0)