version numbers

P

Phill. W

Josh said:
is it possible to put a version/build number into the main dll for a web
site?

Specify an AssemblyVersion attribute in the AssemblyInfo.?? file, as in

<Assembly: AssemblyVersion("1.0.0.0")>

I don't know of any way to automate the inclusion of build numbers, but
I wouldn't be surprised if there's one out there somewhere :)

HTH,
Phill W.
 
R

R.Balaji

Yes. You can put version/build number for any dll.

Just change the AssemblyVersion attribute in the AssemblyInfo.cs file and
compile.

Regards,
R.Balaji
 
H

Hans Kesting

Phill. W said:
Specify an AssemblyVersion attribute in the AssemblyInfo.?? file, as in

<Assembly: AssemblyVersion("1.0.0.0")>

I don't know of any way to automate the inclusion of build numbers, but
I wouldn't be surprised if there's one out there somewhere :)

HTH,
Phill W.

You can use <Assembly: AssemblyVersion("1.0.*")> (vb syntax)
or [assembly: AssemblyVersion("1.0.*")] (c# syntax)
to have version and buildnumbers assigned automatically.

Hans Kesting
 
S

Shiva

Hi,

You can specify the version info in the assemblyinfo.cs (or .vb) file
created as part of your project in VS.NET.

is it possible to put a version/build number into the main dll for a web
site?
 

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

Members online

No members online now.

Forum statistics

Threads
474,431
Messages
2,571,679
Members
48,796
Latest member
Greg L.

Latest Threads

Top