Re: How to stop incrementing the DLL version number? by Tom
Tom
Fri May 09 12:41:54 CDT 2008
Beats me, John. This is all it's ever taken for me.
Good luck,
Tom
"John" <me@nospam.com> wrote in message
news:MPG.228e1d94e0b38672989688@newsgroups.comcast.net...
> Tom,
>
> Thanks for your reply. It appears that assembly.info file is already set
> that way, i.e. <Assembly: AssemblyVersion("1.0.0.0")>. If I look at the
> properties of the DLL both the Assembly Version and File Version are set
> to "1.0.0.0". Is there something else going on?
>
> John
>
> In article <ubqa8$esIHA.1240@TK2MSFTNGP02.phx.gbl>,
> tdacon@community.nospam says...
>> In your assembly.info file, there's a line that might look something like
>> this:
>>
>> <Assembly: AssemblyVersion("1.0.0.*")>
>>
>> The asterisk gives the builder permission to increment the version number
>> on
>> each build. To fix the version number, specify it without an asterisk,
>> such
>> as:
>>
>> <Assembly: AssemblyVersion("1.0.0.0")>
>>
>> Tom Dacon
>> Dacon Software Consulting
>>
>>
>> "John" <me@nospam.com> wrote in message
>> news:MPG.228e15348a7d806d989687@newsgroups.comcast.net...
>> >I have written a VB.NET DLL that is called by a third party program. If
>> > I make any changes in the DLL and then try to replace my DLL file the
>> > third party program will abort, saying that the DLL version number does
>> > not match to the DLL that it was linked against. How can I recompile my
>> > DLL without incrementing the version number? I don't see where this
>> > "version number" is stored in the project. The version number, under
>> > the
>> > "Assembly Information..." button, is not being incremented. I therefore
>> > assume that the DDL version number is stored somewhere else.
>> >
>> > John
>>
>>
>>