How to change an executable's properties? (Windows)

前端 未结 6 1892
执念已碎
执念已碎 2020-12-08 10:45

When I create a .exe, I can right click it and go to properties->details. Then I get a list like:

File Description | 
Type             | Applic         


        
6条回答
  •  春和景丽
    2020-12-08 11:14

    For .NET, google for "setting assembly attributes" for information on what attributes are available. You then use the attributes like so ...

    using System.Reflection;  // Needed to get to the attributes.
    
    [assembly:AssemblyTitle("My File Description")]
    [etc.]
    

提交回复
热议问题