开发者

Integration of Telerik.web.UI dll

开发者 https://www.devze.com 2023-04-01 22:08 出处:网络
Can Somebody tell me how can i put reference new versiontelerik.web.ui dll without 开发者_如何学运维with removing the old reference of telerik.web.ui .

Can Somebody tell me how can i put reference new version telerik.web.ui dll without 开发者_如何学运维with removing the old reference of telerik.web.ui .

Because don't want to migration old controls to new controls


I guess this is not a common way of doing things, cause what would be the need of updating the Telerik.web.UI if you don't want to use the new controls ?!

Anyway you should be able to achieve it, by doing the following:

  • Add the reference to both the dlls in your client application solution.
  • Then in the Solution Explorer under the reference node select either the old or new version class library.
  • In the property window change Aliases field from global to your custom value like "oldVer" if you are updating the old version.
  • Make similar change after selecting the other reference node class library as well.
  • Then access code using the following snippet style

    Console.WriteLine(oldVer::MyLibrary.MyClass.method());
    Console.WriteLine(newVer::MyLibrary.MyClass.method());
    

Good luck then ;)

0

精彩评论

暂无评论...
验证码 换一张
取 消