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 ;)
精彩评论