Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经编写了一个批处理执行框架,并且我希望(在某些情况下)从可能有多个版本的 GAC 加载程序集,但我只想加载最新版本。 这甚至可能吗?
TIA
Assembly.LoadWithPartialName(string)会做你想做的事。
Assembly.LoadWithPartialName(string)
您应该能够将发布者策略与 BindingRedirect 一起使用。看到这个答案。
Linq to Gac可以查询 GAC。一旦你知道你想要什么,你就可以在运行时加载程序集。