Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
279 views
in Technique[技术] by (71.8m points)

Change console title if it is opened from other process in .NET Core C#

I open a new dotnet process which points to a dll.

For example, I have app called A and B.

The A launch a new process of B with Process.Start(...)

ProcessStartInfo pi = new ProcessStartInfo();
pi.UseShellExecute = false;
pi.CreateNoWindow = true;
pi.FileName = "dotnet";
pi.Arguments = "pathTo.dll";

and in B which is a dotnet core console

static Main(string[] args) 
{
    Console.Title = "Custom title";
}

The problem is that in Task Manager, I see like .NET Host instead of Custom title:

enter image description here

How to solve it ?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

62 comments

56.6k users

...