Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In a C# application, where does Windows grab the name of process when it appears in the Task Manager?

Tags:

c#

.net

windows

When you open the Task Manager in Windows, you see process names.

For any given c# application, how do you set that name?

like image 513
Sergio Tapia Avatar asked Dec 29 '22 04:12

Sergio Tapia


1 Answers

The application name is the title of the form being displayed.

The process name is the name of the executable.

The process description is controlled via the AssemblyTitle attribute typically found in AssemblyInfo.cs:

[assembly: AssemblyTitle("Your process description here")].
like image 141
George Johnston Avatar answered Dec 31 '22 17:12

George Johnston