The assembly info is specified in the project file. See:
https://learn.microsoft.com/en-us/dotnet/standard/assembly/set-attributes-project-file
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I'm building an application in .NET 8 and I can't find the option to set the exe file description, the one displayed in Task Manager as the application name. I was able to do it in .NET Framework, but now it just displays the exe file name (assembly name).
I can't even find the option in the .csproj file.
The assembly info is specified in the project file. See:
https://learn.microsoft.com/en-us/dotnet/standard/assembly/set-attributes-project-file
This looks be a bug in VS (see discussion)
TLDR:
Add an additional XML tag into the project file (which has the irritating name 'title'):
<AssemblyTitle>Your description</AssemblyTitle>