Skip to content

Commit

Permalink
fix(win): use appInfo description as primary entry for FileDescription
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaietta committed Mar 12, 2024
1 parent 95f5873 commit 09f20df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/spotty-foxes-count.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-builder-lib": patch
---

fix(win): use appInfo description as primary entry for FileDescription
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/winPackager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ export class WinPackager extends PlatformPackager<WindowsConfiguration> {
file,
"--set-version-string",
"FileDescription",
appInfo.productName,
appInfo.description || appInfo.productName,
"--set-version-string",
"ProductName",
appInfo.productName,
Expand Down

0 comments on commit 09f20df

Please sign in to comment.