.NET 2005 Deployment

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

Guest

I am using .NET 2005 setup project in order to diploy my project,
in addition to that I am writing an updater in order to update dlls I
install with the setup. My question is how do I update the dlls? becuase when
i find that dll need to be updated I am replacing it, but the program still
recognize it with its old version.
My problem is probebly that i need to register the dll when I replace it and
I can't find a way to do that.
I would appreciate your help.
 
Hello,

You don't need to register DLLs created with .NET framework, this was needed
with previous COM technology.

The problem may be related with your 'updater'.

Are you sure it REALLY replaces the older versions ? do you have the
versions in only ONE place on the pc you're testing ?

If you do not change any parameters of the methods / classes you're using
there must be no problem.

I hope it helps,
 
Back
Top