diff --git a/src/action_runner/action_runner.rc b/src/action_runner/action_runner.rc index 7f3543c45a..438b8e998a 100644 --- a/src/action_runner/action_runner.rc +++ b/src/action_runner/action_runner.rc @@ -1,5 +1,4 @@ -// Microsoft Visual C++ generated resource script. -// +#include #include "resource.h" #include "../common/version.h" @@ -10,34 +9,34 @@ BEGIN END 1 VERSIONINFO - FILEVERSION FILE_VERSION - PRODUCTVERSION PRODUCT_VERSION - FILEFLAGSMASK 0x3fL +FILEVERSION FILE_VERSION +PRODUCTVERSION PRODUCT_VERSION +FILEFLAGSMASK VS_FFI_FILEFLAGSMASK #ifdef _DEBUG - FILEFLAGS 0x1L +FILEFLAGS VS_FF_DEBUG #else - FILEFLAGS 0x0L +FILEFLAGS 0x0L #endif - FILEOS 0x40004L - FILETYPE 0x1L - FILESUBTYPE 0x0L +FILEOS VOS_NT_WINDOWS32 +FILETYPE VFT_DLL +FILESUBTYPE VFT2_UNKNOWN BEGIN BLOCK "StringFileInfo" BEGIN - BLOCK "040904b0" + BLOCK "040904b0" // US English (0x0409), Unicode (0x04B0) charset BEGIN VALUE "CompanyName", COMPANY_NAME - VALUE "FileDescription", "PowerToys Action Runner" + VALUE "FileDescription", FILE_DESCRIPTION VALUE "FileVersion", FILE_VERSION_STRING - VALUE "InternalName", "PowerToys Action Runner" + VALUE "InternalName", INTERNAL_NAME VALUE "LegalCopyright", COPYRIGHT_NOTE - VALUE "OriginalFilename", "action_runner.exe" - VALUE "ProductName", "PowerToys" + VALUE "OriginalFilename", ORIGINAL_FILENAME + VALUE "ProductName", PRODUCT_NAME VALUE "ProductVersion", PRODUCT_VERSION_STRING END END BLOCK "VarFileInfo" BEGIN - VALUE "Translation", 0x409, 1200 + VALUE "Translation", 0x409, 1200 // US English (0x0409), Unicode (1200) charset END END diff --git a/src/action_runner/resource.h b/src/action_runner/resource.h index 1f0f0f671d..969beedae6 100644 --- a/src/action_runner/resource.h +++ b/src/action_runner/resource.h @@ -1,3 +1,16 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by action_runner.rc + +////////////////////////////// +// Non-localizable + +#define FILE_DESCRIPTION "PowerToys ActionRunner" +#define INTERNAL_NAME "action_runner" +#define ORIGINAL_FILENAME "action_runner.exe" + +// Non-localizable +////////////////////////////// + #define IDS_DOTNET_CORE_DOWNLOAD_FAILURE 101 #define IDS_DOTNET_CORE_DOWNLOAD_FAILURE_TITLE 102 - diff --git a/src/common/ManagedTelemetry/Telemetry/Telemetry.csproj b/src/common/ManagedTelemetry/Telemetry/Telemetry.csproj index cba3960f11..14514112ba 100644 --- a/src/common/ManagedTelemetry/Telemetry/Telemetry.csproj +++ b/src/common/ManagedTelemetry/Telemetry/Telemetry.csproj @@ -6,6 +6,14 @@ x64 netstandard2.0 $(Version).0 + Microsoft Corporation + PowerToys + PowerToys Telemetry + Copyright (C) 2020 Microsoft Corporation + https://github.com/microsoft/PowerToys + Github + PowerToys + en-US diff --git a/src/common/UnitTests-CommonLib/UnitTests-CommonLib.rc b/src/common/UnitTests-CommonLib/UnitTests-CommonLib.rc new file mode 100644 index 0000000000..a1e74e496e --- /dev/null +++ b/src/common/UnitTests-CommonLib/UnitTests-CommonLib.rc @@ -0,0 +1,36 @@ +#include +#include "resource.h" +#include "../version.h" + +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 diff --git a/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj b/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj index 0e38544606..b75ae80cd2 100644 --- a/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj +++ b/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj @@ -111,6 +111,7 @@ + @@ -120,6 +121,9 @@ + + + diff --git a/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj.filters b/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj.filters index d130140a5e..55b4d4e7e5 100644 --- a/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj.filters +++ b/src/common/UnitTests-CommonLib/UnitTests-CommonLib.vcxproj.filters @@ -32,8 +32,16 @@ Header Files + + Header Files + + + + Resource Files + + \ No newline at end of file diff --git a/src/common/UnitTests-CommonLib/resource.h b/src/common/UnitTests-CommonLib/resource.h new file mode 100644 index 0000000000..961637ab6b --- /dev/null +++ b/src/common/UnitTests-CommonLib/resource.h @@ -0,0 +1,13 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by UnitTests-CommonLib.rc + +////////////////////////////// +// Non-localizable + +#define FILE_DESCRIPTION "PowerToys UnitTests-CommonLib" +#define INTERNAL_NAME "UnitTests-CommonLib" +#define ORIGINAL_FILENAME "UnitTests-CommonLib.dll" + +// Non-localizable +////////////////////////////// diff --git a/src/common/interop/Resource.h b/src/common/interop/Resource.h index d5ac7c42aa..74d328832c 100644 --- a/src/common/interop/Resource.h +++ b/src/common/interop/Resource.h @@ -1,3 +1,13 @@ //{{NO_DEPENDENCIES}} // Microsoft Visual C++ generated include file. -// Used by app.rc +// Used by interop.rc + +////////////////////////////// +// Non-localizable + +#define FILE_DESCRIPTION "PowerToys Interop" +#define INTERNAL_NAME "PowerToysInterop" +#define ORIGINAL_FILENAME "PowerToysInterop.dll" + +// Non-localizable +////////////////////////////// diff --git a/src/common/interop/app.ico b/src/common/interop/app.ico deleted file mode 100644 index 789d7ccbb5..0000000000 Binary files a/src/common/interop/app.ico and /dev/null differ diff --git a/src/common/interop/app.rc b/src/common/interop/app.rc deleted file mode 100644 index eab43064f1..0000000000 --- a/src/common/interop/app.rc +++ /dev/null @@ -1,61 +0,0 @@ -ÿþ// Microsoft Visual C++ generated resource script. -// -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (United States) resources - - -///////////////////////////////////////////////////////////////////////////// -// -// Icon -// -// Icon placed first or with lowest ID value becomes application icon -LANGUAGE 9, 1 -1 ICON "app.ico" - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" - "\0" -END - -2 TEXTINCLUDE -BEGIN - "#include ""afxres.h""\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "\0" -END - -#endif // APSTUDIO_INVOKED - -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED - - \ No newline at end of file diff --git a/src/common/interop/interop.rc b/src/common/interop/interop.rc new file mode 100644 index 0000000000..9cd6d02314 --- /dev/null +++ b/src/common/interop/interop.rc @@ -0,0 +1,37 @@ +ÿþ#include <windows.h> +#include "resource.h" +#include "../version.h" + +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 + \ No newline at end of file diff --git a/src/common/interop/interop.vcxproj b/src/common/interop/interop.vcxproj index 7f91f9cca9..cb4ee17d7f 100644 --- a/src/common/interop/interop.vcxproj +++ b/src/common/interop/interop.vcxproj @@ -128,7 +128,7 @@ - + @@ -140,10 +140,7 @@ - - - - + diff --git a/src/common/interop/interop.vcxproj.filters b/src/common/interop/interop.vcxproj.filters index 7b47f410dc..5ea6de842e 100644 --- a/src/common/interop/interop.vcxproj.filters +++ b/src/common/interop/interop.vcxproj.filters @@ -18,9 +18,6 @@ Header Files - - Header Files - Header Files @@ -30,6 +27,9 @@ Header Files + + Header Files + @@ -49,13 +49,8 @@ - + Resource Files - - - Resource Files - - \ No newline at end of file diff --git a/src/common/notifications/notifications_dll.rc b/src/common/notifications/notifications_dll.rc index 55004d8bdc..a1e74e496e 100644 --- a/src/common/notifications/notifications_dll.rc +++ b/src/common/notifications/notifications_dll.rc @@ -1,35 +1,36 @@ +#include #include "resource.h" -#include "../../../common/version.h" +#include "../version.h" 1 VERSIONINFO - FILEVERSION FILE_VERSION - PRODUCTVERSION PRODUCT_VERSION - FILEFLAGSMASK VS_FFI_FILEFLAGSMASK +FILEVERSION FILE_VERSION +PRODUCTVERSION PRODUCT_VERSION +FILEFLAGSMASK VS_FFI_FILEFLAGSMASK #ifdef _DEBUG - FILEFLAGS VS_FF_DEBUG +FILEFLAGS VS_FF_DEBUG #else - FILEFLAGS 0x0L +FILEFLAGS 0x0L #endif - FILEOS VOS_NT_WINDOWS32 - FILETYPE VFT_DLL - FILESUBTYPE VFT2_UNKNOWN +FILEOS VOS_NT_WINDOWS32 +FILETYPE VFT_DLL +FILESUBTYPE VFT2_UNKNOWN BEGIN BLOCK "StringFileInfo" BEGIN - BLOCK "040904b0" // English (0x0409), Unicode (0x04B0) charset + BLOCK "040904b0" // US English (0x0409), Unicode (0x04B0) charset BEGIN VALUE "CompanyName", COMPANY_NAME - VALUE "FileDescription", "PowerToys Notifications" + VALUE "FileDescription", FILE_DESCRIPTION VALUE "FileVersion", FILE_VERSION_STRING - VALUE "InternalName", "PowerToys Notifications" + VALUE "InternalName", INTERNAL_NAME VALUE "LegalCopyright", COPYRIGHT_NOTE - VALUE "OriginalFilename", "powertoys_notifications.dll" - VALUE "ProductName", "PowerToys Notifications" + VALUE "OriginalFilename", ORIGINAL_FILENAME + VALUE "ProductName", PRODUCT_NAME VALUE "ProductVersion", PRODUCT_VERSION_STRING END END BLOCK "VarFileInfo" BEGIN - VALUE "Translation", 0x409, 1200 + VALUE "Translation", 0x409, 1200 // US English (0x0409), Unicode (1200) charset END END diff --git a/src/common/notifications/resource.h b/src/common/notifications/resource.h index 776a87ce35..2ec9d3ca91 100644 --- a/src/common/notifications/resource.h +++ b/src/common/notifications/resource.h @@ -1 +1,13 @@ -#include +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by notifications_dll.rc + +////////////////////////////// +// Non-localizable + +#define FILE_DESCRIPTION "PowerToys Notifications" +#define INTERNAL_NAME "Notifications" +#define ORIGINAL_FILENAME "Notifications.dll" + +// Non-localizable +////////////////////////////// diff --git a/src/common/os-detection/os-detection.rc b/src/common/os-detection/os-detection.rc new file mode 100644 index 0000000000..a1e74e496e --- /dev/null +++ b/src/common/os-detection/os-detection.rc @@ -0,0 +1,36 @@ +#include +#include "resource.h" +#include "../version.h" + +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 diff --git a/src/common/os-detection/os-detection.vcxproj b/src/common/os-detection/os-detection.vcxproj index f7016ba6d8..52b8ac8063 100644 --- a/src/common/os-detection/os-detection.vcxproj +++ b/src/common/os-detection/os-detection.vcxproj @@ -91,6 +91,7 @@ + @@ -99,6 +100,9 @@ Create + + + diff --git a/src/common/os-detection/os-detection.vcxproj.filters b/src/common/os-detection/os-detection.vcxproj.filters index 49a7e32acc..3aff110a4c 100644 --- a/src/common/os-detection/os-detection.vcxproj.filters +++ b/src/common/os-detection/os-detection.vcxproj.filters @@ -24,6 +24,9 @@ Header Files + + Header Files + @@ -36,4 +39,9 @@ Source Files + + + Resource Files + + \ No newline at end of file diff --git a/src/common/os-detection/resource.h b/src/common/os-detection/resource.h new file mode 100644 index 0000000000..8c2ec17421 --- /dev/null +++ b/src/common/os-detection/resource.h @@ -0,0 +1,13 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by os-detection.rc + +////////////////////////////// +// Non-localizable + +#define FILE_DESCRIPTION "PowerToys OS Detection" +#define INTERNAL_NAME "os-detection" +#define ORIGINAL_FILENAME "os-detection.dll" + +// Non-localizable +////////////////////////////// diff --git a/src/common/version.h b/src/common/version.h index 8417e53194..7bf595ad9c 100644 --- a/src/common/version.h +++ b/src/common/version.h @@ -11,9 +11,10 @@ "." STRINGIZE(VERSION_MINOR) "." STRINGIZE(VERSION_REVISION) ".0" #define PRODUCT_VERSION FILE_VERSION #define PRODUCT_VERSION_STRING FILE_VERSION_STRING -#define COMPANY_NAME "Microsoft Corporation" -#define COPYRIGHT_NOTE "Copyright (C) 2019 Microsoft Corporation" +#define COMPANY_NAME "Microsoft Corporation" +#define COPYRIGHT_NOTE "Copyright (C) 2020 Microsoft Corporation" +#define PRODUCT_NAME "PowerToys" enum class version_architecture { diff --git a/src/runner/resource.h b/src/runner/resource.h index bd66019edb..3e0d6c7d41 100644 --- a/src/runner/resource.h +++ b/src/runner/resource.h @@ -1,3 +1,17 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by runner.rc + +////////////////////////////// +// Non-localizable + +#define FILE_DESCRIPTION "PowerToys Runner" +#define INTERNAL_NAME "PowerToys" +#define ORIGINAL_FILENAME "PowerToys.exe" + +// Non-localizable +////////////////////////////// + #define APPICON 101 #define ID_TRAY_MENU 102 diff --git a/src/runner/runner.rc b/src/runner/runner.rc index 99aad3ad70..7d66d0cde4 100644 --- a/src/runner/runner.rc +++ b/src/runner/runner.rc @@ -1,5 +1,4 @@ -ÿþ// Microsoft Visual C++ generated resource script. -// +ÿþ#include <windows.h> #include "resource.h" #include "../common/version.h" @@ -13,7 +12,6 @@ IDS_AUTOUPDATE_SUCCESS "PowerToys was successfully updated!" END - APPICON ICON "svgs\icon.ico" ID_TRAY_MENU MENU @@ -28,34 +26,35 @@ END 1 VERSIONINFO - FILEVERSION FILE_VERSION - PRODUCTVERSION PRODUCT_VERSION - FILEFLAGSMASK 0x3fL +FILEVERSION FILE_VERSION +PRODUCTVERSION PRODUCT_VERSION +FILEFLAGSMASK VS_FFI_FILEFLAGSMASK #ifdef _DEBUG - FILEFLAGS 0x1L +FILEFLAGS VS_FF_DEBUG #else - FILEFLAGS 0x0L +FILEFLAGS 0x0L #endif - FILEOS 0x40004L - FILETYPE 0x1L - FILESUBTYPE 0x0L +FILEOS VOS_NT_WINDOWS32 +FILETYPE VFT_DLL +FILESUBTYPE VFT2_UNKNOWN BEGIN BLOCK "StringFileInfo" BEGIN - BLOCK "040904b0" + BLOCK "040904b0" // US English (0x0409), Unicode (0x04B0) charset BEGIN VALUE "CompanyName", COMPANY_NAME - VALUE "FileDescription", "PowerToys Runner" + VALUE "FileDescription", FILE_DESCRIPTION VALUE "FileVersion", FILE_VERSION_STRING - VALUE "InternalName", "PowerToys Runner" + VALUE "InternalName", INTERNAL_NAME VALUE "LegalCopyright", COPYRIGHT_NOTE - VALUE "OriginalFilename", "PowerToys.exe" - VALUE "ProductName", "PowerToys" + VALUE "OriginalFilename", ORIGINAL_FILENAME + VALUE "ProductName", PRODUCT_NAME VALUE "ProductVersion", PRODUCT_VERSION_STRING END END BLOCK "VarFileInfo" BEGIN - VALUE "Translation", 0x409, 1200 + VALUE "Translation", 0x409, 1200 // US English (0x0409), Unicode (1200) charset END -END \ No newline at end of file +END + \ No newline at end of file diff --git a/src/runner/runner.vcxproj.filters b/src/runner/runner.vcxproj.filters index 9b2b29e304..8f757da205 100644 --- a/src/runner/runner.vcxproj.filters +++ b/src/runner/runner.vcxproj.filters @@ -54,7 +54,6 @@ Utils - Events @@ -97,6 +96,9 @@ Utils + + Header Files + @@ -108,9 +110,12 @@ {d409b25e-c0f1-4913-bb32-da4a21339c76} - - - + + {74d0b535-16ee-46cc-9adf-dc4668bbcfda} + + + {18a4e642-9246-4494-b916-8505aed19914} + @@ -160,4 +165,9 @@ + + + Resource Files + + \ No newline at end of file diff --git a/src/settings/resource.h b/src/settings/resource.h index d363fa0d56..07fb62f6b4 100644 --- a/src/settings/resource.h +++ b/src/settings/resource.h @@ -1 +1,15 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by settings.rc + +////////////////////////////// +// Non-localizable + +#define FILE_DESCRIPTION "PowerToys Settings" +#define INTERNAL_NAME "PowerToysSettings" +#define ORIGINAL_FILENAME "PowerToysSettings.exe" + +// Non-localizable +////////////////////////////// + #define APPICON 101 diff --git a/src/settings/settings.rc b/src/settings/settings.rc index 1967b2a16d..4740f67902 100644 --- a/src/settings/settings.rc +++ b/src/settings/settings.rc @@ -1,37 +1,39 @@ -ÿþ#include "resource.h" +ÿþ#include <windows.h> +#include "resource.h" #include "../common/version.h" APPICON ICON "..\\runner\\svgs\\icon.ico" 1 VERSIONINFO - FILEVERSION FILE_VERSION - PRODUCTVERSION PRODUCT_VERSION - FILEFLAGSMASK 0x3fL +FILEVERSION FILE_VERSION +PRODUCTVERSION PRODUCT_VERSION +FILEFLAGSMASK VS_FFI_FILEFLAGSMASK #ifdef _DEBUG - FILEFLAGS 0x1L +FILEFLAGS VS_FF_DEBUG #else - FILEFLAGS 0x0L +FILEFLAGS 0x0L #endif - FILEOS 0x40004L - FILETYPE 0x1L - FILESUBTYPE 0x0L +FILEOS VOS_NT_WINDOWS32 +FILETYPE VFT_DLL +FILESUBTYPE VFT2_UNKNOWN BEGIN BLOCK "StringFileInfo" BEGIN - BLOCK "040904b0" + BLOCK "040904b0" // US English (0x0409), Unicode (0x04B0) charset BEGIN VALUE "CompanyName", COMPANY_NAME - VALUE "FileDescription", "PowerToysSettings" + VALUE "FileDescription", FILE_DESCRIPTION VALUE "FileVersion", FILE_VERSION_STRING - VALUE "InternalName", "PowerToysSettings" + VALUE "InternalName", INTERNAL_NAME VALUE "LegalCopyright", COPYRIGHT_NOTE - VALUE "OriginalFilename", "PowerToysSettings.exe" - VALUE "ProductName", "PowerToysSettings" + VALUE "OriginalFilename", ORIGINAL_FILENAME + VALUE "ProductName", PRODUCT_NAME VALUE "ProductVersion", PRODUCT_VERSION_STRING END END BLOCK "VarFileInfo" BEGIN - VALUE "Translation", 0x409, 1200 + VALUE "Translation", 0x409, 1200 // US English (0x0409), Unicode (1200) charset END -END \ No newline at end of file +END + \ No newline at end of file diff --git a/src/tests/win-app-driver/win-app-driver.csproj b/src/tests/win-app-driver/win-app-driver.csproj index ef828dbe2c..5c90d59324 100644 --- a/src/tests/win-app-driver/win-app-driver.csproj +++ b/src/tests/win-app-driver/win-app-driver.csproj @@ -6,8 +6,10 @@ win-app-driver + PowerToys WinAppDriver Microsoft Corp. Copyright (C) 2020 Microsoft Corp. + PowerToys @@ -23,14 +25,15 @@ - + - + +