At runtime, from a .Net application, how do I set the description field displayed in the task manager?

I have a shared executable that contains a single plugin that is selected according to the command line arguments. There is a "Description" column in the task manager that is empty for my process. Since there are multiple instances of my host process, I cannot determine which process is in the task manager. How to update the value of the description field at runtime so that I can determine which plugin is loaded into which process?

+5
source share
1 answer

This is the value of the title of the meeting (not the description).

    [assembly: AssemblyTitle("My Title")]

But as far as I can tell, it is read-only.

+8

All Articles