Shared Assembly Deployment and version management
Web Development
1
Posts
1
Posters
0
Views
1
Watching
-
Shared DLL assembly that will be used by 100's of web apps. What is the best way to deploy this shared assembly, considering the shared assembly version is not fixed... it is still in ongoing development and may need to be updated once per month with new functionality. GAC? this would mean regression testing the dependent apps(100's) for each new version. /bin folder? this would mean multiple versions of the shared assembly in use at any 1 time. Any other methods? What deployment method is best? thanks.