So here is the problem. I am writing some builds of StyleCop plugins for use in the company I work for. Therefore, these assemblies should reference Microsoft.StyleCop.CSharp.dll, for example, which is strongly named.
The problem is that if I create this and pass it on to the developers in my group, they must have the same version of StyleCop DLL (currently 4.3.3.0) or not load.
What is the best way to make my extra rules more independent? Should I just install version 4.3.3.0 of these subordinate DLLs of StyleCop files in the GAC? Can the assembly (compared to the application) use the policy file?
Oh, and one of the main problems is that I would like to work with ANY version of StyleCop installed by the client (or at least 4.3.3.0 or later), if possible.
Thank you very much in advance.
source share