DLL recompilation problem

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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!
 
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
 
Yes, you're right!!
Thanks

Daniel Moth said:
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
 
Back
Top