AssemblyInfo.cpp

  • Thread starter Thread starter mphanke
  • Start date Start date
M

mphanke

Hi,

is there a possibility to set part of the strings contained in
AssemblyInfo.cpp to a default value which is the same for all project?

Like

[assembly:AssemblyCompanyAttribute("")];
[assembly:AssemblyCopyrightAttribute("")];
[assembly:AssemblyTrademarkAttribute("")];


they are all the same in all our projects.


Best Regards,

Martin
 
Martin,
is there a possibility to set part of the strings contained in
AssemblyInfo.cpp to a default value which is the same for all project?

Like

[assembly:AssemblyCompanyAttribute("")];
[assembly:AssemblyCopyrightAttribute("")];
[assembly:AssemblyTrademarkAttribute("")];


they are all the same in all our projects.

What we do is keep those in a single file that is compiled into every
project.... seems to work just fine.
 
Back
Top