mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-12 02:09:24 +08:00
1e1429177b
* [PastePlain] Introduce Paste as Plain Text module * fix build * add telemetry * update settings UI * spell * Add navigation items to Settings and OOBE * Add PastePlain to the Quick Access flyout * try to fix PastePlain not being enabled from runner/settings * load dll properly * installer files * Add PastePlain project name * Use win32 APIs in the module interface instead * Fix spellcheck * Fix build errors * Add success, error and invoke telemetry * Add Settings Telemetry * Add GPO definitions * Fix analyzer errors * Use static_cast instead of reinterpret_cast * Add images to Settings * Add note about replacing clipboard contents * Fix learn more text * Add link to readme * Remove unneeded C# app * Fix installer * Fix spellchecker --------- Co-authored-by: Jaime Bernardo <jaime@janeasystems.com>
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<Include>
|
|
<!-- Names of folders and projects -->
|
|
<?define FancyZonesProjectName="FancyZones"?>
|
|
<?define ImageResizerProjectName="ImageResizer"?>
|
|
<?define KeyboardManagerProjectName="KeyboardManager"?>
|
|
<?define PowerAccentProjectName="PowerAccent"?>
|
|
<?define PowerRenameProjectName="PowerRename"?>
|
|
<?define FileLocksmithProjectName="FileLocksmith"?>
|
|
<?define ColorPickerProjectName="ColorPicker"?>
|
|
<?define PowerOCRProjectName="PowerOCR"?>
|
|
<?define VideoConferenceProjectName="VideoConference"?>
|
|
<?define AwakeProjectName="Awake"?>
|
|
<?define MouseUtilsProjectName="MouseUtils"?>
|
|
<?define AlwaysOnTopProjectName="AlwaysOnTop"?>
|
|
<?define MeasureToolProjectName="MeasureTool"?>
|
|
<?define HostsProjectName="Hosts"?>
|
|
<?define PastePlainProjectName="PastePlain"?>
|
|
|
|
<?define RepoDir="$(var.ProjectDir)..\..\" ?>
|
|
<?if $(var.Platform) = x64?>
|
|
<?define PlatformLK="x64" ?>
|
|
<?define BinDir="$(var.RepoDir)x64\$(var.Configuration)\" ?>
|
|
<?else?>
|
|
<?define PlatformLK="arm64" ?>
|
|
<?define BinDir="$(var.RepoDir)ARM64\$(var.Configuration)\" ?>
|
|
<?endif?>
|
|
<?define BinX32Dir="$(var.RepoDir)x86\$(var.Configuration)\" ?>
|
|
</Include>
|