Your dll, like all assemblies, has a version number consisting of 4 parts:
Major.Minor.Build.Revision. This is defined in your AssemblyInfo file (at a
guess you have left the default of 1.0.*)
If you need to recompile it without recompiling its clients (e.g. your exe),
you may only change the revision part.
Cheers
Daniel
--
http://www.danielmoth.com/Blog/
"Goncalo" <(E-Mail Removed)> wrote in message
news:18A52AB9-4E61-4551-898B-(E-Mail Removed)...
> Hi,
> I have one project in VB.Net that references one dll also made in VB.Net
> The problem is when I recompile the dll, I must also recompile the project
> executable or else when I execute the application it gives me an
> exception.
>
> Any help would be appreciated,
> thanks!
>