How to use AssemblyInfo.cpp

  • Thread starter Thread starter PawelM
  • Start date Start date
P

PawelM

Guest
What is the AssemblyInfo.cpp file for? I though it was to set information about the exe file like Author, Company etc..




[assembly:AssemblyTitleAttribute("MyApp")];
[assembly:AssemblyDescriptionAttribute("")];
[assembly:AssemblyConfigurationAttribute("")];
[assembly:AssemblyCompanyAttribute("")];
[assembly:AssemblyProductAttribute("App")];
[assembly:AssemblyCopyrightAttribute("Copyright (c) 2009")];
[assembly:AssemblyTrademarkAttribute("")];
[assembly:AssemblyCultureAttribute("")];









but I've changed these values in strings and recompiled project. But in .exe file Properties thre is no information which i typed in AssemblyInfo.cpp. I know how to change them using resource file but what is AssemblyInfo.cpp for then? How to edit this file to get results?

Continue reading...
 
Back
Top