PowerToys/src
ryanbodrug-microsoft 0f3b154699 Fix for the following:
Warning CA1001 Type 'MainWindow' owns disposable field(s) '_firstDeleteTimer' but is not disposable PowerLauncher C:\Repos\PowerToys\src\modules\launcher\PowerLauncher\MainWindow.xaml.cs

    Warning CA1816 Change App.Dispose() to call GC.SuppressFinalize(object). This will prevent derived types that introduce a finalizer from needing to re-implement 'IDisposable' to call it. PowerLauncher C:\Repos\PowerToys\src\modules\launcher\PowerLauncher\App.xaml.cs
2020-06-23 17:51:17 -07:00
..
action_runner Added info to projects inside root, tests and common folders (#4413) 2020-06-23 16:53:16 +03:00
codeAnalysis Settingsv2 fix warnings (#2076) 2020-04-10 15:22:07 -07:00
common Added step to dispose the keyboard hook object (#4449) 2020-06-23 17:19:36 -07:00
core Added step to dispose the keyboard hook object (#4449) 2020-06-23 17:19:36 -07:00
modules Fix for the following: 2020-06-23 17:51:17 -07:00
runner Added info to projects inside root, tests and common folders (#4413) 2020-06-23 16:53:16 +03:00
settings Added info to projects inside root, tests and common folders (#4413) 2020-06-23 16:53:16 +03:00
settings-web Bump websocket-extensions from 0.1.3 to 0.1.4 in /src/settings-web (#4108) 2020-06-10 19:36:53 +02:00
tests/win-app-driver Added info to projects inside root, tests and common folders (#4413) 2020-06-23 16:53:16 +03:00
.clang-format Formatting chores (#1441) 2020-03-05 13:07:06 +03:00
.editorconfig moving the editor config out the the root folder (#4289) 2020-06-16 08:59:38 -07:00
Directory.Build.props Move from sdk-provided cppwinrt-1.x to cppwinrt-2.x nuget package (#2246) 2020-04-29 22:02:18 +02:00
README.md Spelling: ... (#3398) 2020-05-26 17:02:36 +02:00

PowerToys Source Code

Code organization

The PowerToys are split into DLLs for each PowerToy module (modules folder), and an executable (runner folder) that loads and manages those DLLs.

The settings window is a separate executable, contained in settings folder. It utilizes a WebView to display an HTML-based settings window (contained in settings-web folder).

The common contains code for a static library with helper functions, used by both the runner and the PowerToys modules.