Referencing this question: System.Reflection.Assembly.LoadFile Locks File
System.IO.File.ReadAllBytes(path) wont work since it's not a standalone lib, it has many dependencies.
This solution ( http://www.eggheadcafe.com/software/aspnet/35494668/shadow-copies-how.aspx ) won't work either, since I'm writing a Visual Studio addin, and I have no access to a Main method.
The second answer here ( Can I make the default AppDomain use shadow copies of certain assemblies? ) won't work either, since the problem described in comment, I need to be able to repeatedly reload the given assembly and always see the most fresh version, yet I still must be able to rebuild the assembly without quiting the Visual Studio instance which runs my addin.
What are my options?