Hi,

In the AssemblyInfo.cs file I change the AssemblyVersion["1.0.0"];
attribute from the default "1.0.*" blah

I notice that its FORCING 4 digit notation, so if I use "1.0.0" I get
"1.0.0.0" in that property. Are we FORCED to have 4 digits for our
versioning or can this be overrided?

Thanks

Re: AssemblyVersionAttribute by Jan

Jan
Thu Jan 22 04:30:49 CST 2004

I don't think you can override this, check out the docs:
http://tinyurl.com/295jl
The version number has four parts, as follows:
<major version>.<minor version>.<build number>.<revision>

--
Greetz

Jan Tielens
________________________________
Read my weblog: http://weblogs.asp.net/jan


<discussion@discussion.microsoft.com> wrote in message
news:#Bgua9M4DHA.632@TK2MSFTNGP12.phx.gbl...
> Hi,
>
> In the AssemblyInfo.cs file I change the AssemblyVersion["1.0.0"];
> attribute from the default "1.0.*" blah
>
> I notice that its FORCING 4 digit notation, so if I use "1.0.0" I get
> "1.0.0.0" in that property. Are we FORCED to have 4 digits for our
> versioning or can this be overrided?
>
> Thanks
>
>



Re: AssemblyVersionAttribute by n!

n!
Thu Jan 22 04:41:41 CST 2004

> I notice that its FORCING 4 digit notation, so if I use "1.0.0" I get
> "1.0.0.0" in that property. Are we FORCED to have 4 digits for our
> versioning or can this be overrided?

The version number always has four parts, with the format:

<major version>.<minor version>.<build number>.<revision>

There is a more complete overview in the documentation for
AssemblyVersionAttribute itself (http://tinyurl.com/295jl).

n!



Re: AssemblyVersionAttribute by discussion

discussion
Thu Jan 22 06:09:11 CST 2004

Is this a requirement in the ECMA?


"n!" <nfactorial@nomailplease.com> wrote in message
news:Oq2NOQN4DHA.2440@TK2MSFTNGP09.phx.gbl...
> > I notice that its FORCING 4 digit notation, so if I use "1.0.0" I get
> > "1.0.0.0" in that property. Are we FORCED to have 4 digits for our
> > versioning or can this be overrided?
>
> The version number always has four parts, with the format:
>
> <major version>.<minor version>.<build number>.<revision>
>
> There is a more complete overview in the documentation for
> AssemblyVersionAttribute itself (http://tinyurl.com/295jl).
>
> n!
>
>



Re: AssemblyVersionAttribute by Jon

Jon
Thu Jan 22 06:10:58 CST 2004

<discussion@discussion.microsoft.com> wrote:
> Is this a requirement in the ECMA?

Yes. See section 6.1.2.4 of partition 2 of the spec.

--
Jon Skeet - <skeet@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Re: AssemblyVersionAttribute by n!

n!
Thu Jan 22 06:17:19 CST 2004

> Is this a requirement in the ECMA?

"CLI Partition IV - Library" notes:

AssemblyVersion:
Specifies the version of the assembly in the form 1.0.x.y, where x is a
build number and y is a revision number.

n!