Chapter II Welcome to Visual Studio
1,assemblyinfo file
Contains the properties of an assembly, adding metadata to the application
[assembly:<attribute> (<setting>)]
AssemblyInfo Common Properties
Property |
Describe |
Assemblytitle |
Assembly title |
Assemblydescription |
Assembly description |
Assemblycompany |
Assembly Company Name |
Assemblyproduct |
Assembly Product Name |
Assemblycopyright |
The copyright string for the assembly |
AssemblyVersion |
The version string of the assembly |
Assemblyfileversion |
Version number of the Win32 file version resource |
Version number format:
Major.Minor.Build.Revision
Major: Major Version number
Minor: Minor version number
Build: Build number (built-in version number) that distinguishes several different compilations of the same assembly from the same minor version number
Revision: Revision number for bug fixes or other occasional updates
If the version number is set to "1.0.*" this form, the build number and revision number are automatically inserted by the compiler each time the assembly is generated. In this case, the automatically generated build number is the number of days since January 1, 2000 (local time). The automatically generated revision number is the number of seconds that have passed since the previous midnight (local time) divided by 2.
Windows Forms Programming Combat Learning: Chapter II Welcome to Visual Studio