PowerToys/src
Divyansh Srivastava 24ba7f08cf
Add debugging section in preview pane (#6717)
* Added info on directly registering dll

* Update README.md

* Update README.md

* Update to regasm x64

* Add information related to assembly signing in readme preview pane handler

* Bold warning for taking registry route for installation
2020-09-29 14:36:28 -07:00
..
action_runner [Launcher] Use a keyboard hook in the runner to invoke the Launcher (#6660) 2020-09-21 12:44:16 +02:00
codeAnalysis chore: move codeAnalysis folder to src (#5311) 2020-07-30 11:59:24 +03:00
common [Launcher] Use a keyboard hook in the runner to invoke the Launcher (#6660) 2020-09-21 12:44:16 +02:00
core Changed default theme in settings to be consistent with that of shortcut guide (#6832) 2020-09-28 12:44:18 -07:00
modules Add debugging section in preview pane (#6717) 2020-09-29 14:36:28 -07:00
runner [Launcher] Use a keyboard hook in the runner to invoke the Launcher (#6660) 2020-09-21 12:44:16 +02:00
settings Fix typo in URL (#6630) 2020-09-15 12:38:34 +02:00
settings-web Bump http-proxy from 1.17.0 to 1.18.1 in /src/settings-web (#6455) 2020-09-09 16:14:58 +02:00
tests/win-app-driver Upgrade nuget packages (#6641) 2020-09-16 12:24:21 -07:00
.clang-format Formatting chores (#1441) 2020-03-05 13:07:06 +03:00
.editorconfig Removing warnings relative to passing in unlocalized string literals. Most of these pertain to debug messages and aren't user facing. We may want to revisit localizing these later. 2020-06-23 17:51:17 -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
Version.props Now working on 0.23.1 (#6881) 2020-09-29 12:05: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.