Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'd like to have my executable's process be called ABC. How I can do this? I tried defining my project name as ABC, but then I'll have an ABC.vshost.

See Question&Answers more detail:os

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

1 Answer

You can set this in the project's properties page. Setting the assembly name on the application tab will set the name of the resulting compiled assembly (ie. ABC.exe).

The .vshost.exe is the Visual Studio debugging process, used by Visual Studio when you debug. You can turn that off (Visual Studio does not need it to debug) by unchecking the "enable the visual studio hosting process" checkbox on the debug tab of the the project properties.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...