From f928b33235b1efc03ec78ff648c06607bd24a59f Mon Sep 17 00:00:00 2001 From: Riccardo De Agostini Date: Thu, 9 Nov 2023 23:54:51 +0100 Subject: [PATCH] Use AssemblyTitle instead of Title as default for AppFullName --- CHANGELOG.md | 1 + .../Modules/AlternatePack/Module.Core.InnoSetup.targets | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 030093e..489560e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changes to existing features - The change in version 1.0.106-preview, whereas the `Title` property was used as a default for `AssemblyTitle`, has been reversed. It turns out that the order in which MSBuild loads Buildvana.Sdk in relation to Microsoft.NET.Sdk makes the change ineffective. +- The default value for property `AppFullName`, used as a constant passed to InnoSetup, is now `$(AssemblyTitle)` instead of `$(Title)`. ### Bugs fixed in this release diff --git a/src/Buildvana.Sdk/Modules/AlternatePack/Module.Core.InnoSetup.targets b/src/Buildvana.Sdk/Modules/AlternatePack/Module.Core.InnoSetup.targets index 2325828..ef93ae5 100644 --- a/src/Buildvana.Sdk/Modules/AlternatePack/Module.Core.InnoSetup.targets +++ b/src/Buildvana.Sdk/Modules/AlternatePack/Module.Core.InnoSetup.targets @@ -79,7 +79,7 @@ $(Company) $(Company) $(AssemblyName) - $(Title) + $(AssemblyTitle) $(Copyright) $(Description) $(VersionPrefix)