Updating a DLL in the GAC

前端 未结 4 1396
醉酒成梦
醉酒成梦 2021-01-21 20:52

I have an API DLL that several third party applications reference.

Some of these applications want things two ways in terms of updates. 1) I want the latest stuff 2) D

4条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-21 21:11

    References can include version information or reference whatever version is available. This is determined by the author of the application that references your DLL. Of course, you can ship your updated DLL as having the same version as in the GAC, but the whole point of versioning stuff is to let all parties handle updates correctly. So you might need to refine your task.

提交回复
热议问题