version numbers

  • Thread starter Thread starter Josh
  • Start date Start date
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?
 
Back
Top