In a C # application, where does Windows capture the process name when it appears in the task manager?

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

For any given C # application, how do you set this name?

+4
source share
2 answers

For any given C # application, how do you set this name?

If you are using Visual Studio, go to the project properties and set the assembly name on the Application tab.

+3
source

Application name is the name of the displayed form.

The process name is the name of the executable file.

The process description is controlled using the AssemblyTitle attribute, which is usually located in AssemblyInfo.cs:

[assembly: AssemblyTitle("Your process description here")]. 
+7
source

Source: https://habr.com/ru/post/1299555/


All Articles