Reputation: 1424
I manage a library project that exposes a range of interfaces and library classes. Our user base is expanding and we want to adopt a more frequent release cycle. How do I avoid forcing my users needing to recompile every time I release?
Upvotes: 1
Views: 89
Reputation: 8427
If your interfaces are changing in each release, then there is no way to avoid your users from recompiling the code. But by using some practices, you may lessen this re-compilation process:
Upvotes: 0
Reputation: 273179
Deploy to the GAC, manage your publisher redirect policies.
Assemblies in the GAC (can) have their own release cycles.
Upvotes: 2