version numbers

  • Thread starter Thread starter Josh
  • Start date Start date
J

Josh

is it possible to put a version/build number into the main dll for a web
site?
 
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.
 
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
 
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
 
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

Back
Top