Reusing an asssembly in many projects
I've a custom .NET assembly that is used in many projects. Currently whenever I build that custom assembly I'm replacing all the projects that refers this assembly with the new binary. Other than GAC is there any better way to avoid this overhead in .NET开发者_Go百科?
Why not just include the single project in each of your solutions? Then when you rebuild the solution, you'll end up using the latest code.
Alternatively, if you want to build against the binary, have a single location relative to all your solutions which always has the latest version, and just build against that.
精彩评论