versioning with vs.net

A

Andrew

hi you all,
i need support for manage versioning in vs.net ....
in vb6 in the project properties i set the version app.major.minor
and then i make exe , ocx , with this printed ... simple ...
in .net and specially for asp.net project , how can i manage version ?
i have the "configuration properties" menu of the project with 2 default
configuration , (debug , relaese ) ... must i add my new configuration ?
release 1.0 , release 1.1 , and so on ... which is the best way ?
what'is the result ? each file is marked with this value ? ....
some tips ? ....
tnx & sorry for my english ...
andrew
 
S

Shankar

Hi -

Use the AssemblyInfo.cs file to specify your version with the
attribute

[assembly:AssemblyVersion(1.0.0.0)]

and specify * and the end (1.0.0.*) for incrementing automatically.

Shankar
hi you all,
i need support for manage versioning in vs.net ....
in vb6 in the project properties i set the version app.major.minor
and then i make exe , ocx , with this printed ... simple ...
in .net and specially for asp.net project , how can i manage
version ?
i have the "configuration properties" menu of the project with 2 default

configuration , (debug , relaese ) ... must i add my new
configuration ?
release 1.0 , release 1.1 , and so on ... which is the best way ?
what'is the result ? each file is marked with this value ? ....
some tips ? ....
 

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