STF
STF

Reputation: 1513

Change .exe file version (from C++ project)

I have a C++ project and I want to change the EXE file version by code.

How can I do it?

(I found some ways to do it in other languages, but not C++.)

Upvotes: 8

Views: 7578

Answers (1)

zhm
zhm

Reputation: 3641

  1. Add a version resource file to your project

In Solution Explorer, right click at your project -> Add -> Resource -> Version

  1. Change value of FILEVERSION key to the value you want

Upvotes: 10

Related Questions