Removing Assembly file version dependency in .NET Project or Backward compatibility of "dll's with older versions

1.6k Views Asked by At

I am stuck with assembly compatibility problems with my project.

1) I have a .NET project, where i specify a assembly version . "Major part.Minor part.Build part.Revision part". 2) For the next build, assembly version is incremented. 3) There are many files (dll) which doesn't have any changes but their assembly version is updated. 4) The newer "dll" files are not compatible with older versions of same dll files.

I tried to get more information to solve this online.

1) There is a concept of publisher policy , where i can specify the older version number. 2) Manifest file to be added in the project for all the classes and provide the range of possible version which can be used if current version is not available.

I am not sure, if i am doing right. What is the difference between publisher policy approach and manifest file approach.

Is it possible to do the backward compatible for "dll's".

0

There are 0 best solutions below