version number in a windows service

S

Stephen Corey

I've got a windows service I created with VC++.NET. It was compiled with
a version number in the assemblyinfo.cpp. When I look at the properties
for the EXE, I don't see the version number (or even the version tab).

Ideas?
 
R

Ronald Laeremans [MSFT]

Stephen said:
I've got a windows service I created with VC++.NET. It was compiled with
a version number in the assemblyinfo.cpp. When I look at the properties
for the EXE, I don't see the version number (or even the version tab).

Ideas?

Hi Stephen,

You need to add a real version resource (with the resource editor). The
assembly version (which you set using the attributes in
assemblyinfo.cpp) and the file version are not the same.

Ronald Laeremans
Visual C++ team
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top