File tree Expand file tree Collapse file tree
YMouseButtonControl.MacOS/Services
YMouseButtonControl/DependencyInjection Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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 > ( ) ;
You can’t perform that action at this time.
0 commit comments