mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-21 07:17:56 +08:00
6ac508fb93
* dotnet sc * MD preview - C# app - working self-contained * Gcode preview - C# app * DevFiles preview - C# app * Fix passing path with spaces as cmd arg and monacocpp proj file * Pdf preview - C# app * Svg preview - C# app * Fix comment * Gcode thumbnail - C# app TODO: - installer - why IThumbnailProvider and IIntializeWithFile doesn't work? * Pdf thumbnail - C# app TODO: - installer - why IThumbnailProvider and IIntializeWithFile doesn't work? * Pdf thumbnail - C# app TODO: - installer - why IThumbnailProvider and IIntializeWithFile doesn't work? * Fix GcodeThumbnailProviderCpp.vcxproj * Svg thumbnail - C# app TODO: - installer - why IThumbnailProvider and IIntializeWithFile doesn't work? * Fix Svg tests * Thumbnail providers - installer * Self-contained Hosts and FileLocksmith * Fix hardcoded <RuntimeIdentifier> * Remove unneeded files * Try to fix Nuget in PR CI * Prefix new dlls with PowerToys. Sign new dlls and exes * Add new .exe files to ProcessList * ci: debug by listing all env vars * ci: try setting variable in the right ci file * Bring back hardcoded RuntimeIdentifier * ci: Add comment and remove debug action * Remove unneeded lib * [WIP] Platform conditional dotnet files & hardlinks * Cleanup * Update expect.txt * Test fix - ARM installer * Fix uninstall bug * Update docs * Fix failing test * Add dll details * Minor cleanup * Improve resizing * Add some logs * Test fix - release build * Remove InvokeOnControlThread * Test fix: logger initialization * Fix arm64 installer Co-authored-by: Jaime Bernardo <jaime@janeasystems.com> Co-authored-by: Dustin L. Howett <dustin@howett.net>
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
#include <windows.h>
|
|
#include "resource.h"
|
|
#include "../../../common/version/version.h"
|
|
|
|
#define APSTUDIO_READONLY_SYMBOLS
|
|
#include "winres.h"
|
|
#undef APSTUDIO_READONLY_SYMBOLS
|
|
|
|
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
|