Referencing different versions of the same assembly

前端 未结 5 1408
忘了有多久
忘了有多久 2020-12-08 19:45

If A references assembly B 1.1 and C, and C references B 1.2, how do you avoid assembly conflicts?

I nievely assumed C\'s references would be encapsulated away and w

5条回答
  •  不思量自难忘°
    2020-12-08 20:06

    I've achieved the same results using the GAC in the past, but you should question your reasons for having to reference more than one version and try to avoid it if possible. If you must do it, a binding redirect may help in your case.

    Also, have you read this yet?

提交回复
热议问题