In Microsoft Visual Studio Ultimate there is something like that in the builder, namely, the option "Version Info" and "Application", so that you can change the standard version of the application and change the icon?
1 answer
The values of the application version and its icon are set in the project resource files. For example, for a sample project in the project folder there will be a file sample.rc (sample.rc2). And the values of FILEVER
, PRODUCTVER
, etc., which determine the version of the application, will be written there. The application icon is easier to install in Resource View (View -> Other Window -> Resource View).
|