gmamaladze / globalmousekeyhook

This library allows you to tap keyboard and mouse, detect and record their activity even when an application is inactive and runs in background.
MIT License
1.05k stars 257 forks source link

Examples adapted to .net core3.1 (Fixes #132) #133

Closed chrkon closed 1 year ago

chrkon commented 3 years ago

Fixes #132 Change in ConsoleHook and ConsoleHook.rx Projects: The ConsoleHook projects have thrown an Invalid Operation exception on Console.ReadKey when they were started in the IDE (Debugger). This behaviour is solved by starting the 'dotnet' app with the 'consoleHook.dll' as parameter instead of directly calling the project.

Change in FormsExample project: The TextBox control in .net core Forms have a different behaviour on handling the '\n' code. To get a readable output in the log view, an Environment.NewLine was added after each log entry.