Skip to content

Commit

Permalink
Use AssemblyTitle instead of Title as default for AppFullName
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeago committed Nov 9, 2023
1 parent b90b993 commit f928b33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<CompanyShortName Condition="'$(CompanyShortName)' == ''">$(Company)</CompanyShortName>
<CompanyFullName Condition="'$(CompanyFullName)' == ''">$(Company)</CompanyFullName>
<AppShortName Condition="'$(AppShortName)' == ''">$(AssemblyName)</AppShortName>
<AppFullName Condition="'$(AppFullName)' == ''">$(Title)</AppFullName>
<AppFullName Condition="'$(AppFullName)' == ''">$(AssemblyTitle)</AppFullName>
<AppCopyright Condition="'$(AppCopyright)' == ''">$(Copyright)</AppCopyright>
<AppDescription Condition="'$(AppDescription)' == ''">$(Description)</AppDescription>
<AppVersion Condition="'$(AppVersion)' == ''">$(VersionPrefix)</AppVersion>
Expand Down

0 comments on commit f928b33

Please sign in to comment.