Skip to content

Commit 215fc36

Browse files
authored
fix(win): Revert "fix(win): use appInfo description as primary entry for FileDescription" (#8601)
Reverts #8125 The PR caused a regression where task manager shows the app description instead of the app name for the running process Fixes: #8599
1 parent f941f18 commit 215fc36

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.changeset/stupid-buses-compete.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"app-builder-lib": patch
3+
---
4+
5+
Revert "fix(win): use appInfo description as primary entry for FileDescription" to resolve https://github.com/electron-userland/electron-builder/issues/8599

packages/app-builder-lib/src/winPackager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ export class WinPackager extends PlatformPackager<WindowsConfiguration> {
165165
file,
166166
"--set-version-string",
167167
"FileDescription",
168-
appInfo.description || appInfo.productName,
168+
appInfo.productName,
169169
"--set-version-string",
170170
"ProductName",
171171
appInfo.productName,

0 commit comments

Comments
 (0)