I couldn’t find any answers on the net…
In Visual Studio 2010 C++ Express, how do I set the executable data such as exe version, build, icon, etc?
Also, does the Visual studio compiler adds private data to the executable such as IP or mac address?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You did not say whether you are using managed or unmanaged C++.
For unmanaged C++ (e.g., MFC), you need to create a
version.rcfile. You may want to use a resource editor to help you with the .rc file.For managed C++ (i.e., a CLR (.NET) C++ project), edit or create the
AssemblyInfo.cppfile.Here is a sample
AssemblyInfo.cppto start with:No. Where did you hear that?