Building binary with a version number and meta data

P

puzzlecracker

Guys,

I'm building a c# app, and want to include a standard version and
other relavant info, like a build data. Hence a user can do ./app.exe -
r or click on help via gui and will have the info available.

What is the standard pattern for that? I imagine that some of that
should be read from the file.

Thanks
 
P

Pavel Minaev

I'm building a c# app, and want to include a standard version and
other relavant info, like a build data. Hence a user can do ./app.exe -
r  or click on help via gui and will have the info available.

What is the standard pattern for that? I imagine that some of that
should be read from the file.

Have a look at AssemblyVersionAttribute, Application.ProductName, and
Application.ProductVersion in MSDN.
 

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