mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-21 07:17:56 +08:00
212ea2de30
- remove common lib - split settings, remove common-md - move ipc interop/kb_layout to interop - rename core -> settings, settings -> old_settings - os-detect header-only; interop -> PowerToysInterop - split notifications, move single-use headers where they're used - winstore lib - rename com utils - rename Updating and Telemetry projects - rename core -> settings-ui and remove examples folder - rename settings-ui folder + consisent common/version include
50 lines
2.6 KiB
Plaintext
50 lines
2.6 KiB
Plaintext
#include <windows.h>
|
|
#include "resource.h"
|
|
#include "../common/version/version.h"
|
|
|
|
APPICON ICON "svgs\icon.ico"
|
|
|
|
ID_TRAY_MENU MENU
|
|
BEGIN
|
|
POPUP "POPUP"
|
|
BEGIN
|
|
MENUITEM "Settings", ID_SETTINGS_MENU_COMMAND
|
|
//MENUITEM "About", ID_ABOUT_MENU_COMMAND
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "Exit", ID_EXIT_MENU_COMMAND
|
|
END
|
|
END
|
|
|
|
1 VERSIONINFO
|
|
FILEVERSION FILE_VERSION
|
|
PRODUCTVERSION PRODUCT_VERSION
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
#ifdef _DEBUG
|
|
FILEFLAGS VS_FF_DEBUG
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS VOS_NT_WINDOWS32
|
|
FILETYPE VFT_DLL
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904b0" // US English (0x0409), Unicode (0x04B0) charset
|
|
BEGIN
|
|
VALUE "CompanyName", COMPANY_NAME
|
|
VALUE "FileDescription", FILE_DESCRIPTION
|
|
VALUE "FileVersion", FILE_VERSION_STRING
|
|
VALUE "InternalName", INTERNAL_NAME
|
|
VALUE "LegalCopyright", COPYRIGHT_NOTE
|
|
VALUE "OriginalFilename", ORIGINAL_FILENAME
|
|
VALUE "ProductName", PRODUCT_NAME
|
|
VALUE "ProductVersion", PRODUCT_VERSION_STRING
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200 // US English (0x0409), Unicode (1200) charset
|
|
END
|
|
END
|