Skip to content

Commit 898bcb0

Browse files
committed
Include stub for macos start menu installer
1 parent aabf1a3 commit 898bcb0

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
using YMouseButtonControl.Core.Services.StartMenuInstaller;
2+
3+
namespace YMouseButtonControl.MacOS.Services;
4+
5+
public class StartMenuInstaller : IStartMenuInstallerService
6+
{
7+
public bool InstallStatus()
8+
{
9+
throw new System.NotImplementedException();
10+
}
11+
12+
public void Install()
13+
{
14+
throw new System.NotImplementedException();
15+
}
16+
17+
public void Uninstall()
18+
{
19+
throw new System.NotImplementedException();
20+
}
21+
}

YMouseButtonControl/DependencyInjection/ServicesBootstrapper.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ private static void RegisterMacOsServices(IServiceCollection services)
8282
{
8383
services
8484
.AddScoped<IStartupInstallerService, MacOS.Services.StartupInstallerService>()
85+
.AddScoped<IStartMenuInstallerService, MacOS.Services.StartMenuInstaller>()
8586
.AddScoped<IProcessMonitorService, MacOS.Services.ProcessMonitorService>()
8687
.AddScoped<ICurrentWindowService, MacOS.Services.CurrentWindowService>()
8788
.AddScoped<IBackgroundTasksRunner, MacOS.Services.BackgroundTasksRunner>();

0 commit comments

Comments
 (0)